How get the HTTP response and Parsed Output in Import

In Import ,change the toggle option ‘Preview’ to ‘Send’ and click the Send option .Then we get the HTTP response in XML format(If HTTP request is XML format) and Parsed Output in JSON format

Published
Categorized as Celigo

Updating: Important message Dynamically

On the My Account page, there is an update message box. We can add a functionality to update the message box section dynamically. Create an extension Add the new field under the extension of the configuration record.  New field is added using configuration file Fetched the value of an important message from the configuration record… Continue reading Updating: Important message Dynamically

Setting Up Electronic Bank Payments

Prerequisites Make sure you verify the following prerequisites before you install and use Electronic BankPayments SuiteApp: You must have an active Advanced Electronic Bank Payments License. Install the NetSuite SuiteApps License Client SuiteApp (Bundle ID 116144).The NetSuite SuiteApps License Client SuiteApp controls an account’s access to the advancedElectronic Bank Payments features. Upon installation, the NetSuite… Continue reading Setting Up Electronic Bank Payments

Get Contents From EXCEL file

We need to use external library for access contents from excel file. Needed CDN Link : https://cdn.sheetjs.com/xlsx-latest/package/dist/xlsx.full.min.js Upon opening the link will show javascript code, copy the code and create a JS file and save it in file cabinet. (ex: EXCEL.js) Create a config.json file with content path reference to the created JS file. {… Continue reading Get Contents From EXCEL file

Custom registration form

Need to create custom registration form using extension and pass all the input details to backend and using that details need to create lead or customer   First of all, create the extension and in the template, section complete the creation and styling. On the submit button add the trigger to pass the details to the… Continue reading Custom registration form

Imported Employee Expenses

This transaction is available when the Expense Report feature is enabled at Setup > Company > Setup Tasks > Enable Features, on the Employees subtab. The imported employee expense record is scriptable in both client and server SuiteScript. The imported employee expense record is fully scriptable — it can be created, updated, copied, deleted, and… Continue reading Imported Employee Expenses

Module for Landed Cost Template

To implement the landed cost template, need the supply chain management bundle. And then the feature(Landed cost) should be enabled in “Enable features”. Note: Only the landed cost templates that are assigned to an item can be selected at the transaction line level for that item.

Concatenate the Date field in Excel

When the date field is concatenated with any text field in excel, in the result field the date formate may change. The date value may also be converted to some other format. To avoid this convert the date field to the text field while concatenating. Ex: COCATENATE(TEXT(C2,”dd/mm/yyyy”),E2) In this formula, the date value in C2… Continue reading Concatenate the Date field in Excel