Solution:
Tag: NetSuite customization
Get the existing reward from Clutch (Customer Data Marketing Platform)
Adding Freezing Header for Sales Orders
Scenario: Sales Orders have item sublist Table, which lists items in each SO. If the number of items becomes too large, we need to scroll the table down, which will also scrolls the table header too. Make this table header freeze and make other details scrollable. Solution: It needs a User Event script. In it’s… Continue reading Adding Freezing Header for Sales Orders
Order to Cash process Automation.
We have automated an Order to cash process in Netsuite. The Process is as follows: 1)Created Sales orders in Netsuite Via CSV import(Inventory lot number for items are set in CSV file by client)2)On sales order creation an Item Fulfillment is generated via script2)On IF generation invoice/cash sale is generated via script Git link: https://github.com/Jobinandjismi/Second_Source_Rx/tree/swapna-JJ0151
Email notification on vendor payment
Download PDFs by using “Download PDF button” in Transaction forms
Automate statement 10 days before the invoices are due
No call is send to client script which is installed from bundle.
There was an issue with the calling of the client script from a suitelet that had been installed from a bundle. The issue was resolved by changing the “@NModuleScope SameAccount” to “@NModuleScope Public”. And also checking the website feature under the web presence tab in enable features.
Any changes made inside the record can be reflected (Bolded) in PDF template.
1. Create a custom field inside the record.2. write the script to find the changes made inside the record.3. Store that changes inside the custom field.4. Similarly create the code given below in the style part of the PDF template.<#if record.custbody_jj_store_value?length != 0>${record.custbody_jj_store_value}{font-weight: bold;}</#if>// custbody_jj_store_value is the custom field created inside the record.5. Call it… Continue reading Any changes made inside the record can be reflected (Bolded) in PDF template.
CREATE A CUSTOM FIELD THAT USES CALCULATED DATA FROM A SAVED SEARCH
Sample: Determine the total quantity of all items on a sales order Step 1: Create Saved Transaction Search For our Results, we only need to include the field that we are calculating on. In this example, it’s the Quantity field. Once we choose the field, we will use SUM as our Summary Type. Set a… Continue reading CREATE A CUSTOM FIELD THAT USES CALCULATED DATA FROM A SAVED SEARCH