Tuesday, March 5, 2019

Set the Class column on Item sublist to Mandatory via Script

There are instances where the users would like to set some of the Item Sublist columns to mandatory to make sure that these important information are set on the record. One of these fields may be that of the Class field.

Class field may be set to mandatory by checking the Make Classes Mandatory field on Setup > Accounting > Accounting Preferences > General tab.

This said action may be done via script and below is a sample code:

  var accountingPref = nlapiLoadConfiguration( 'accountingpreferences');
  accountingPref.setFieldValue('CLASSMANDATORY','T');
  nlapiSubmitConfiguration(accountingPref);


The scenario is similar if the field that they would like to set to mandatory is that of the Department or the Location.



DISCLAIMER: The sample code described herein is provided on an "as is" basis, without warranty of any kind, to the fullest extent permitted by law. Oracle + NetSuite Inc. does not warrant or guarantee the individual success developers may have in implementing the sample code on their development platforms or in using their own Web server configurations.


Oracle + NetSuite Inc. does not warrant, guarantee or make any representations regarding the use, results of use, accuracy, timeliness or completeness of any data or information relating to the sample code. Oracle + NetSuite Inc. disclaims all warranties, express or implied, and in particular, disclaims all warranties of merchantability, fitness for a particular purpose, and warranties related to the code, or any service or software related thereto.


Oracle + NetSuite Inc. shall not be liable for any direct, indirect or consequential damages or costs of any type arising out of any action taken by you or others related to the sample code.

No comments:

Post a Comment