SCENARIO: Client wants to know the transactions that are not submitted for approval so that they can reach to employees to submit for approval SOLUTION: Create a Saved Transaction Serach: Once the transaction search page opens: In Criteria provide following details In Results provide following details: Provide a name for the report and click on… Continue reading Report to know transactions with Standard Approval not submitted for Approval
Category: NS Customization
All articles / code related to Netsuite customization
How to solve error “you provided invalid field type: INLINEHTML” while adding inline HTML field in suitelet sublist.
Many times, we want to add a custom field to our SuiteLet Sublist that is able to accept dynamic values. For eg: a URL, Text, or RichText. For this, I trying to create a custom field in the suitelet sublist with the type FieldType.INLINEHTML for storing dynamic URL, got an error saying that “you provided… Continue reading How to solve error “you provided invalid field type: INLINEHTML” while adding inline HTML field in suitelet sublist.
Resolve Sublist Line Item not Committing via Client Script
Issue User is not able to commit a line item via SuiteScript 2.0 Client Script. Solution The reason why the line item is not committing on the script is because the forceSyncSourcing parameter is retains its default value as false. The forceSyncSourcing parameter indicates whether to perform field sourcing synchronously. If set to true, sources dependent field information for… Continue reading Resolve Sublist Line Item not Committing via Client Script
Maximizing Efficiency: Unveiling the Synergy of NetSuite’s Advanced Billing and Advanced Shipping Features
In the fast-paced world of commerce, where customer expectations are high and operational efficiency is paramount, businesses turn to advanced ERP solutions for a competitive edge. NetSuite offers a dynamic duo of features – Advanced Billing and Advanced Shipping – that, when used in tandem, revolutionize order processing. In this article, we’ll explore how these… Continue reading Maximizing Efficiency: Unveiling the Synergy of NetSuite’s Advanced Billing and Advanced Shipping Features
Unable to see Custom record type field in Field type of email template
To add Custom Record Type to the list of Field Types in Email Templates follow those steps: 1) Go to Customization>List, Records & Fields>Record types 2) Click your Custom Record Type 3) Mark the checkbox Enable Mail Merge 4) Save the record 5) Log out from the account and log back in Now if you… Continue reading Unable to see Custom record type field in Field type of email template
ADD REQUESTER NAME ON GL LINE PROPOSAL
Proposal Summary This proposal summarizes the functionality of adding name of the requestor in the Gl line against the account 14704 which is default employee advance account. Requirement The client would like to get the Name of the requestor in the Gl line against the account 14704 which is default employee advance… Continue reading ADD REQUESTER NAME ON GL LINE PROPOSAL
Transform Record Action
Use the Transform Record action to transform the data on a transaction record into another transaction record type. You can create workflows that processes transaction by transforming them into the next record type in a transaction record life cycle. For example, you can create a workflow to process sales orders and create invoices based on the… Continue reading Transform Record Action
How to solve error “you provided invalid field type: INLINEHTML” while adding inline HTML field in suitelet sublist.
Many times, we want to add a custom field to our SuiteLet Sublist that is able to accept dynamic values. For eg: a URL, Text, or RichText. For this, I trying to create a custom field in the suitelet sublist with the type FieldType.INLINEHTML for storing dynamic URL, got an error saying that “you provided… Continue reading How to solve error “you provided invalid field type: INLINEHTML” while adding inline HTML field in suitelet sublist.
Republish a published dashboard
To re-publish an already published dashboard and override the customizations done by users with the original published dashboard setup. Follow the steps below to do this: Edit the Published Dashboard record to re-publish. Mark the Override Existing User’s Settings checkbox for each Role(s) in the Apply To Roles sublist to restore the original dashboard setup.… Continue reading Republish a published dashboard
Customer Aging Report Using Saved Search
var invoiceSearchObj = search.create({ type: “invoice”, filters: [ [“type”,”anyof”,”CustInvc”], “AND”, [“mainline”,”is”,”T”], “AND”, [“amountremaining”,”greaterthan”,”0.00″] ], columns: [ search.createColumn({ name: “entity”, summary: “GROUP”, … Continue reading Customer Aging Report Using Saved Search