Skip to content Skip to sidebar Skip to footer

NetSuite - How To Get Subsidiary Preferences

I am using SuiteScript to fetch Subsidiary information. Using nlapiLookupField method I am able to see the basic fields. But I want some information on Subsidiary-Preferences tab.

Solution 1:

These fields are not even listed in SuiteScript Records Browser.

One way to read them is by loading the record eg:

   var rec = nlapiLoadRecord('subsidiary', 11);
   rec.getFieldValue('CHECKTYPE');

Solution 2:

Open the record inside the NetSuite UI. Append '&xml=T' to the end of the url for the record.

Take a look at the underlying XML data - that should be everything you see in the UI, and you will see the field names, sublists, etc.


Post a Comment for "NetSuite - How To Get Subsidiary Preferences"