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.

Custom List Edit Possibility

We can edit the values inside a Custom list using script. But to create a new custom list is not possible. Script:var parentOption = record.load({type: ‘customlist’,id: optionDetaildarr[0][“optionInternalID”],isDynamic: false,}); var numLines = parentOption.getLineCount({sublistId: ‘customvalue’}); parentOption.setSublistValue({sublistId: “customvalue”,fieldId: “value”,value: optionalListValue,line: numLines});parentOption.setSublistValue({sublistId: “customvalue”,fieldId: “abbreviation”,value: optionalListValue,line: numLines});var id = parentOption.save();

Custom List Search Possibility

We can search a custom list in netsuite and get the values from the custom list using saved search. For that: NavigateCustomization> Lists> Click on the “List” link on the respective lists that to be searched> search. Script:var customlist92SearchObj = search.create({type: listID,filters:[[“name”, “is”, option]],columns:[search.createColumn({name: “name”,sort: search.Sort.ASC,label: “Name”}),search.createColumn({ name: “internalid”, label: “Internal ID” })]});

Pickrr Integration Functional Document

Proposal summary An integration to place an order in Pickrr when the status of Item fulfillment is changed to “Shipped” for a particular vendor in netsuite. Requirement API integration for integrating Netsuite to Pickrr for order creation. Our Solution We will be creating a script that will check whether the status of item fulfillment is… Continue reading Pickrr Integration Functional Document

Sales order form Update, Netsuite Magento Integration Functional Document.

Proposal summary A process to update sales order memo field and sales order status change. Requirement If Magento Status = ‘Closed’ & RMA has been created in NS Then update Sales Order > Memo field = “Full – ” + RMA ID Else then update Sales Order > Memo field = “Partial – ” +… Continue reading Sales order form Update, Netsuite Magento Integration Functional Document.

Matrix Item Creation, Netsuite – Magento Integration Functional Document

Proposal summaryA process to create and update Matrix items through API calls from Magento to Netsuite.RequirementTo create and update matrix parent items as well as child items as per the request. The API call will be for either creating parent items or adding subitems under the parent items. Our SolutionAs per the understanding, the JSON… Continue reading Matrix Item Creation, Netsuite – Magento Integration Functional Document