Sales Force Automation Preferences

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

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)

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

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

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