Different Types of EDI Transactions and Their Uses

Introduction Electronic Data Interchange (EDI) is a standardized method for exchanging business documents electronically between companies. Various EDI transaction sets are used for different business processes, ensuring efficiency, accuracy, and automation. Below are some of the most commonly used EDI transaction types and their applications. Key EDI Transaction Types and Their Uses 1. EDI 850… Continue reading Different Types of EDI Transactions and Their Uses

Published
Categorized as Boomi Tagged

Request to create an Order in INFOR

{   “requestedshipdate”: “2020-11-05T12:12:00Z”,   “caddress6”: “DIP Liquidation”,   “consigneekey”: “CUS-20105”,   “externorderkey”: “SO-UAE-2110085”,   “type”:”92″,   “orderdetails”: [     {       “externorderkey”: “SO-UAE-3110086”,       “openqty”: “5”,       “externlineno”: “1”,       “sku”: “HCWEL106435”,       “storerkey”: “MADI”     },     {    … Continue reading Request to create an Order in INFOR

OAUTH 2.0 Machine to machine (M2M) postman collection.

Prerequisites Before setting up the OAuth 2.0 connection, ensure that: You have Administrator or Integration Manager role in NetSuite. The OAuth 2.0 authentication feature is enabled in NetSuite. A NetSuite Integration Record has been created. You have a valid client ID and client secret for authentication. Step -1: Run Get JSRSASIGN Crypto Library request in… Continue reading OAUTH 2.0 Machine to machine (M2M) postman collection.

How to Pick an Item in INFOR

First the items must be allocated in order to pick an object. Go to Infor WMS-> Outbound-> Shipment Order Go to Actions-> Pick

How to Use the Data Process Connector in Boomi

The Data Process connector in Boomi is a powerful tool that enables users to manipulate and transform data within an integration process. With its flexible configuration options, it is a cornerstone for achieving complex data transformations without requiring external scripts or custom coding. Key Features of the Data Process Connector The Data Process connector supports… Continue reading How to Use the Data Process Connector in Boomi

Published
Categorized as Boomi Tagged

NetSuite Connector in Boomi Integration: Simplifying Data Exchange

The NetSuite Connector in Boomi is a vital tool for businesses looking to streamline their data integration processes with NetSuite. Designed to enable seamless communication between NetSuite and other applications, this connector is a key component in automating workflows and improving operational efficiency. With Boomi’s low-code platform, the NetSuite Connector provides pre-built operations that simplify… Continue reading NetSuite Connector in Boomi Integration: Simplifying Data Exchange

Published
Categorized as Boomi Tagged

Storing Saved Search Results and Using JavaScript’s .filter() for Later Processing in NetSuite

In NetSuite scripting, saved searches are a powerful tool for retrieving data. However, using built-in filters in a saved search every time you need to retrieve specific data can be limiting, especially when you want to manipulate or reuse the data multiple times in a script. Instead, you can fetch the entire dataset once, store… Continue reading Storing Saved Search Results and Using JavaScript’s .filter() for Later Processing in NetSuite

Optimizing Saved Search Execution in NetSuite by Passing an Array of Filters

NetSuite scripts often require retrieving data for multiple items or records, especially when processing transactions with several lines. A common, but inefficient, approach is to run a saved search for each line, which can lead to performance issues and script governance limit violations. A better solution is to pass an array of filters to a… Continue reading Optimizing Saved Search Execution in NetSuite by Passing an Array of Filters

Using a Delay Function in NetSuite to Avoid the “Record Has Been Changed” Error in Map/Reduce Scripts

When working with Map/Reduce (MR) scripts in NetSuite, one common challenge is handling the “Record has been changed” error. This error occurs when multiple processes or users attempt to update the same record simultaneously, leading to conflicts. To address this, you can implement a delay function that pauses execution, checks the elapsed time, and retries… Continue reading Using a Delay Function in NetSuite to Avoid the “Record Has Been Changed” Error in Map/Reduce Scripts