Sample Suitelet – User interface Form

/** * @NApiVersion 2.1 * @NScriptType Suitelet */ /** * Simple form with Name field – Say hello */ define([‘N/ui/serverWidget’], /** * @param{serverWidget} serverWidget */ (serverWidget) => { /** * Defines the Suitelet script trigger point. * @param {Object} scriptContext * @param {ServerRequest} scriptContext.request – Incoming request * @param {ServerResponse} scriptContext.response – Suitelet response *… Continue reading Sample Suitelet – User interface Form

Assigning Multiple subsidiaries to a Vendor using suiteScript – Bulk upload

We cannot change the primary subsidiary of the vendor once the transactions are posted. But we can assign a number of secondary subsidiaries at any time after the vendor is created We can manually assign the same by editing vendor records.But for bulk changing it is not possible to edit and save each record.For that… Continue reading Assigning Multiple subsidiaries to a Vendor using suiteScript – Bulk upload

Render data variables from Email Template Using Script

Jira code: TRS-109 We can send emails to the end-user using an email template irrespective of any record, field data variables defined in the email template.We can define custom data variables inside the email template, and replace these variables using Regurel expressions and finally process these emails using scripts. Using this we can apply search… Continue reading Render data variables from Email Template Using Script