My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Comments
-
When you log into NetSuite, click on Help on the top-right of the screen. In the Help pop-up, click on the User Guide tab. Scroll down and you will find section for Developer Guides. Download the SuiteScript Developer and Reference Guide and you should be good to go. Cheers!
-
Since you mentioned in the original post that you would like to build on something rather than create from scratch, I had offered an existing solution I had created. But seems you think otherwise. All the best.
-
Hi, I have created a module like this for the employees to login. It checks the employee's login information against that present in NetSuite from a non-NetSuite page. It can be very easily adapted to the customers as well. Email me on my MSN or Skype me if you would be interested in exploring the same. Regards, Mandar
-
If you deal only in one currency, you can easily use mass updates. 1. Categorize items based on sales categories 2. Setup Price Level for each customer category 3. Mass update combination of one product category and customer category at a time But, if you deal in multiple currencies there is no way you can calculate prices…
-
Major drawback with multi-currency: Costs / Pricing We buy in USD/Euro, so the purchase prices on item cards are in currency of preferred vendor. Now, if I want to see purchase prices for all items from a vendor, I do not have a list/report/webservice/script. The reason being, NetSuite will always return the value in GBP…
-
I am getting what I was looking for. First find all customFields using getCustomizationId and then do a get for that id. [CODE] $gr = new GetRequest(); $gr->baseRef = new RecordRef(); $gr->baseRef->internalId = "CUSTENTITY1"; $gr->baseRef->type = "entityCustomField"; $fieldInfo = $service->get($gr); [/CODE] Thanks, Mandar
-
post removed.
-
I tried a workaround by populating a contact record and getting custom fields. But again the problem is if the custom field is empty, it does not return any customFieldList with the response. How to get all custom fields in response for contact irrespective of they are filled or empty. Is there are setup for this? The…
-
Hi Lorne, Thank you a ton. You rightly pointed that I was missing includeInactives. Kind Regards, Mandar
-
I have one more problem now. I am getting the list of custom fields, their internal id and name. So I can use this list for populating the dropdown for search options. But when I search a contact record, I need the 'field type' and an operator based on the field type. How do I find the field type of the custom field…
-
You have added the web reference, but did you include that in the module / class you are creating? If you include it, you will not have to use NetSuite.NetSuiteService, but can directly access NetSuiteService as it is unique.