Setting the class column in item sub list as mandatory from Company preferences through script

User may set the Class Field to mandatory by ticking the Make Classes Mandatory field on Setup > Accounting > Accounting Preferences > General tab. This can also be done via SuiteScript. var accountingPref = config.load({‌type: config.Type.ACCOUNTING_PREFERENCES}); accountingPref.setValue({‌fieldId: ‘CLASSMANDATORY’,value: true}); accountingPref.save();

Overriding Company Date Format

The administrator can specify the date format by specifying it in the general preferences. The abbreviated date format appears on reports, forms, and data-entry pages. This page is available at Setup > Company > Preferences > General Preferences But individual user can override the date format specific to the account by specifying the same in the… Continue reading Overriding Company Date Format