Solution: From the Script file system notes we can understand whether the file data changed or not. Also note that, it is not possible to get the information from Script record system notes. Steps to do the Process : Step 1 : From the script record copy the file nameStep 2: Go to Documents-> Files->… Continue reading Is there any way to check whether the script is updated or changed in Netsuite, Since a particular date ?
Author: Arnold Xavi
Resolve Error: “Invalid Next Approver Reference Key” on Bill Record
Scenario: A user has an Approval Workflow that will set the Next Approver on the Bill record. The user to be set as the Next Approver can be found on the Subsidiary record under a custom field. That custom field has a value of Employee list.For example: The employee set on the subsidiary is ‘Jane… Continue reading Resolve Error: “Invalid Next Approver Reference Key” on Bill Record
Resolve Error: “Please Specify an Email Address to Send to” When Creating Transactions Even if To Be E-Mailed Is Not Shown and Not Mandatory
Scenario User receives error: “Please specify an email address to send to”, when creating transactions even if To Be E-mailed is not shown and not mandatory. Navigate to Lists > Relationships > Customers Click View by particular Customer Email: Email is not defined, the field is blank Click on plus icon to create a new transactionExample: Click Invoice Fill in the form and mandatory details Click Communication tab Click Messages subtab To… Continue reading Resolve Error: “Please Specify an Email Address to Send to” When Creating Transactions Even if To Be E-Mailed Is Not Shown and Not Mandatory
In script how to check ,whether a field value contains a particular word or not ?
In order to check whether a field value contains a particular word or not ,We can use indexOf method. For example : In Script check whether Tracking Number field value contains “PRO#” value or not ? Solution: var trackingNumber = ifRec.getValue({ fieldId: ‘tracking_number’ }); var index = trackingNumber.indexOf(“PRO#”); if(index != -1){ alert(“PRO# found”); } else { alert(“PRO# not found!”); }
Negative quantity value on the item line level history
When we change quantity value from 2 to 0 in item line level history it will shown that value changes from -2 to 0. When we change quantity value from 1 to 2 in item line level history it will shown that value changes from -1 to -2. When we change quantity value from 0… Continue reading Negative quantity value on the item line level history
How to Enable Payment Card Tokenization
With the Payment Instruments feature, you can tokenize payment cards, and then use payment card tokens for payment processing. To enable payment card tokenization, you must create an instance of the Tokenized Payment Card payment method type, and enable payment card tokenization on the payment processing profile. To create an instance of the Tokenized Payment… Continue reading How to Enable Payment Card Tokenization
How to add button in Saved Search Column
In the saved Search result field add Formula(Text ) and in the formula session add the below html in custom label session and “Notes”. ‘<html><head> <style> .printbutton { background-image: linear-gradient(#fafafa, #e5e5e5); border: 1px solid #b2b2b2; border-radius: 3px; color: #333333; margin-bottom: 8px; padding: 3px 9px 4px 9px; vertical-align: middle; text-align: center; text-decoration: none; display: inline-block; font-size:… Continue reading How to add button in Saved Search Column
Why Unexpected error is occurred when email is send to a employee using Suite script
Unexpected error is mainly occurred due to two reasons. Email field in employee record was empty In email.send session, the value in body has null or empty
Is there any method to list the High Priority Scripts in Netsuite and how to adjust the script priority as needed ?
The priority field in script are dealing with 2 type of scripts Map/reduce script Scheduled Script We cannot get the priority field in script deployment saved searches. Only way for listing the data is go to script deployment page, Apply filter “Type” as scheduled and click on priority then it will sort by script deployment… Continue reading Is there any method to list the High Priority Scripts in Netsuite and how to adjust the script priority as needed ?
How the Package weight value in Package sublist for a Item fulfilment is Calculated ?
For a Item fulfilment upon changing the ship status from Picked to (Packed or shipped ) Netsuite is automatically adding Package value to the package sublist. It is a standard functionality. The package weight value is from Item Record > Purchasing/Inventory (Sales/Pricing in some forms) > Item Weight multiplied by the Quantity on Item Fulfilment… Continue reading How the Package weight value in Package sublist for a Item fulfilment is Calculated ?