Restore Cancelled Sales Order

Cancelled sales order is different from a closed sales order. While you can re-open a closed sales order, you cannot restore a cancelled sales order. The ability to restore a cancelled sales order is covered by Enhancement 28338 – Allow cancelled Sales Orders to be restored (un-cancelled). When a sales order has been cancelled, the only… Continue reading Restore Cancelled Sales Order

Picked and packed status in item fulfillment

Usually the “picked” and “packed” items will show the status as “pending shipment” as per the SCAstandard feature, But if we need to point out the exact status of “picked” and “packed” we can use the below code in Extension. So for the “picked” item, the status will be “picked” and for “packed” item the… Continue reading Picked and packed status in item fulfillment

Mapper 2.0 vs 1.0 in Celigo

//Info: JSTN-1127 In mapper 2.0 version, we can easily build complex JSON structures that include nested arrays and make use of data type validation for required fields and incompatible data types. //Note: When you click Save and have mapping configurations in both Mapper 1.0 and Mapper 2.0, all mappings configured in either version are saved. When… Continue reading Mapper 2.0 vs 1.0 in Celigo

Use the “Search” Component to Set the ‘url’ property of Models

The ” Search ” component includes the ” getUrl() ” method, which can be use to get the URL of the item search API of SuiteCommerce website When getUrl() is called, it returns a string that corresponds to the end fragment of the item search URLExample: This is example for search bag Need to call this… Continue reading Use the “Search” Component to Set the ‘url’ property of Models

Error message when creating Work Order from an Intercompany Sales Order

Error message: You can add inventory, assembly, of kit/package items only to intercompany transactions generated from Purchase Orders when creating Work Order from an Intercompany Sales Order To build a Work order record from the Intercompany Sales Order created from Intercompany Purchase Orders:    1. Edit Intercompany Sales Order 2. Under Items tab > unmark CREATE WO checkbox > click Save 3. On the Intercompany… Continue reading Error message when creating Work Order from an Intercompany Sales Order

How can render an array of objects to advanced pdf

Read the details from the saved search and objects pushed into array . var inventoryDetails= [{“itemInventory”:”101002010″,”lotNumber”:”A-1022-4559″,”invQuantity”:”4″},{“itemInventory”:”101002010″,”lotNumber”:”A-1022-4664″,”invQuantity”:”4″},{“itemInventory”:”101001075″,”lotNumber”:”A-1022-4562″,”invQuantity”:”5″}] Render this array to the advanced pdf : renderer.addCustomDataSource({format: render.DataSource.OBJECT,alias: “customdata”,data: {inventoryDetails: inventoryDetails}}); Display the details of Lot number and Quantity from the inventory details

The ” Search ” component includes the ” getUrl() ” method, which can be use to get the URL of the item search API of SuiteCommerce website When getUrl()is called, it returns a string that corresponds to the end fragment of the item search URL Example:

var search = container.getComponent(‘Search’);var searchParams = {q: “bag”};var searchURL = search.getUrl(searchParams); This is example for search bag Need to call this method in entry point file of extensionSource: NetSuite Applications Suite – Use the Search Component to Set the ‘url’ property of Models (oracle.com)

Address field can directly retrieve from transaction record.

Previously, to anonymize information about addresses, you had to select multiple fields: Shipping Address Country, Override, Shipping Address State, Shipping Address Zip Code, Shipping Address is Residential, Billing Address is Residential, Ship To, Shipping Address, Vendor, and Billing Address. Now, to select all of the corresponding address fields, you can select the Shipping Address and… Continue reading Address field can directly retrieve from transaction record.