Scenario: In the Match Bank data page, we have the option of select all for the NetSuite bank transactions. However, the same is not available for the bank statement lines on the left side and we need to manually select each box. Solution: In the match bank data page, right click and select ‘Inspect’.… Continue reading Select all bank statement lines [left side] in match bank data page
Tag: console
Accessing the Extensibility API via SC in the Console
To call the extensibility API, begin by accessing the SC object, which is globally available in SuiteCommerce. Through SC, you can access various components and utilities provided by NetSuite’s extensibility framework. This object enables you to interact with the SCA environment and test your extensions directly from the browser console. For example, calling a component… Continue reading Accessing the Extensibility API via SC in the Console
How to Use SuiteScript in Browser Console
To test code in the console, we first navigate to a record that supports SuiteScripting. A Sales Order, for example, is a great option to test the console. We also need to enter into edit mode, since this is where Client Scripts primarily find their home. If you try to import SuiteScript modules in view mode,… Continue reading How to Use SuiteScript in Browser Console
Un expected Error:
Some times an Un expected console error may occur in client script when we try to use console.log() method in the pageInit . In order to remove this types of errors avoid using the console.log(). Instead of this we can use log.debug() in pageInit