The Sales Preferences page lets sales administrators set customer status preferences that specify how your company should use the Sales Force Automation feature. NetSuite applies your settings to everyone with access to your NetSuite account. General SFA Preferences You can set the following customer status preferences on the General subtab at Setup > Sales > Preferences… Continue reading Sales Force Automation Preferences
Author: Gopinath Matcharaja
email.sendCampaignEvent(options)
Sends a single “on-demand” campaign email to a specified recipient and return a campaign response ID to track the email. This is used for lead nurturing campaigns (drip marketing email). Email (campaignemail) sublists are not supported. The campaign must use a Lead Nurturing (campaigndrip) sublist. Note This API normally uses a bulk email server to send… Continue reading email.sendCampaignEvent(options)
Assigning Items to a Hierarchy Node
After you have created a merchandise hierarchy version with the required levels and nodes, you can assign items to leaf nodes in the hierarchy version. You can assign the following item types to nodes in a merchandise hierarchy: Inventory Items Non-Inventory Items Assembly Items Service Items Kit Items Item Groups Other Charge Items There are… Continue reading Assigning Items to a Hierarchy Node
Limitations and Best Practices of the Effective Date Pricing SuiteApp
The following limitations and best practices apply to Effective Date Pricing: On a single run, Effective Date Pricing can process up to: 10,000 customers per customer group. Additional customers are not validated and processed. After this limit is exceeded, the status may still show as In Progress, even though there are unprocessed customers. 1,000 items… Continue reading Limitations and Best Practices of the Effective Date Pricing SuiteApp
Creating Price Update Records
This topic explains how to create and test price update records. The following topics are included: Creating an Item Price Update Record Creating an Item Category Price Update Record Creating a Customer Price Update Record Creating a Customer Group Price Update Record Test the Effective Date Pricing Solution Creating an Item Price Update Record This… Continue reading Creating Price Update Records
Print Transactions with Customer Part Numbers
Setup Requirements for Customer Part Number Before you set up customer part numbers, review the following sections: Prerequisites for Customer Part Number Install the Supply Chain Management SuiteApp Enabling Customer Part Number Roles and Permissions for Customer Part Number Prerequisites for Customer Part Number Before you install the Supply Chain Management SuiteApp, you must enable… Continue reading Print Transactions with Customer Part Numbers
Adding a Print Button to Custom Mobile Pages
When you enable the Mobile Printing capability and create a custom mobile process, you can customize its pages to add the print button. You can assign the button label and specify its position on the mobile page. You can choose the page on which to display a print button based on the data required for… Continue reading Adding a Print Button to Custom Mobile Pages
Printing from Print Bill of Lading Page
After searching the item fulfillments, select the item fulfillments for which you will print the bill of lading. To print the bill of lading: Go to Transactions > Sales > Bill of Lading. Search item fulfillments. Read To search item fulfillments on Print Bill of Lading page:. In the Print Options section, choose the applicable settings: In the… Continue reading Printing from Print Bill of Lading Page
Setting Up Printing Settings on Print Reports
On a print report type, you can assign a default print template and map it to its source record. You can also set the default printer and number of copies for the label or document you want to print using the template. If you have multiple print templates or printers, you can specify when you… Continue reading Setting Up Printing Settings on Print Reports
How to handle negative values in pdf template
To ensure that the value in your FreeMarker template always displays as a positive number, you can use the abs (absolute) function provided by FreeMarker. Here’s how you can modify your code: <td colspan=”1″ align=”center”>${(item.quantity – item.quantityavailable)?abs}</td> Explanation: ${item.quantity – item.quantityavailable} calculates the difference. ?abs is a built-in FreeMarker function that converts a number to… Continue reading How to handle negative values in pdf template