REF Segment in EDI Parsing

REF Reference Identification Pos: 060 Heading – Optional Max: 12 Loop: N/A Elements: 2 User Option (Usage): Used Purpose: To specify identifying information Element Summary: Ref Id Element Name Req Type Min/Max Usage REF01 128 Reference Identification Qualifier M ID 2/3 Used Description: Code qualifying the Reference Identification Code List Summary (Total Codes: 1503, Included:… Continue reading REF Segment in EDI Parsing

Published
Categorized as Celigo Tagged

PID Segment in EDI Fiel parsing

PID Product/Item Description Detail – Optional Max: 200 Loop: LIN Elements: 2 User Option (Usage): Used Purpose: To describe a product or process in coded or free-form format Element Summary: Ref Id Element Name Req Type Min/Max Usage PID01 349 Item Description Type M ID 1/1 Must use Description: Code indicating the format of a… Continue reading PID Segment in EDI Fiel parsing

Published
Categorized as Celigo Tagged ,

LIN Segment in EDI parsing

User Option (Usage): Must use Purpose: To specify basic item identification data User Note 1: The LIN segment allows for 1 or more product identifiers used to identify the product in addition to the Global Trade Iem Number (GTIN). The codes listed for LIN02 apply to every occurrence of Data Element 235 in the LIN… Continue reading LIN Segment in EDI parsing

Does Celigo Webhook Listener Support Bearer Token Authentication?

What I’m Trying to Do: Receive a webhook POST request with a Bearer Token in the header. Validate the token. Send the data to NetSuite. The Solution: Three ways you could do this without an enhancement (which we should do): Use a MyAPI – since MyAPIs are behind a bearer token only, this could work if you… Continue reading Does Celigo Webhook Listener Support Bearer Token Authentication?

How to share credentials with Celigo using LastPass

Celigo uses LastPass, a secure and convenient system for password management and sharing. You can use LastPass to share credentials for your accounts such as NetSuite, Magento, Salesforce, and Amazon Seller Central. To share credentials with Celigo, follow these steps: Important: Do not share credentials over tickets, email, or phone. Celigo personnel are not allowed to… Continue reading How to share credentials with Celigo using LastPass

EDI x12 Format

The EDI X12 format is a standardized format used for electronic data interchange (EDI) to automate and streamline B2B communication. Celigo’s integrator.io platform supports the EDI X12 file type format and provides various tools and features to facilitate the exchange of business documents with trading partners. Key Features and Processes of EDI X12 in Celigo… Continue reading EDI x12 Format

Published
Categorized as Celigo Tagged ,

EDI 997 Functional Acknowledgement flow – Celigo

The 997 functional acknowledgment (FA) flow in Celigo’s integrator.io is a process that confirms the receipt and integrity of EDI transactions between trading partners. Here’s a detailed explanation of the flow: Purpose of Functional Acknowledgment (997) A functional acknowledgment is a receipt issued by the receiver in response to a transaction sent by a trading… Continue reading EDI 997 Functional Acknowledgement flow – Celigo

Published
Categorized as Celigo Tagged

Function to format date (instead of using format or moment.js) Suitescript 1.0

unction formatNSDate(fld, datePassed) {    try {        dLog(‘datePassed : ‘ + fld + ‘ =’, datePassed);                  var monthMap = {            ‘jan’: ’01’, ‘feb’: ’02’, ‘mar’: ’03’, ‘apr’: ’04’,            ‘may’: ’05’, ‘jun’: ’06’, ‘jul’: ’07’, ‘aug’: ’08’,            ‘sep’: ’09’, ‘oct’: ’10’, ‘nov’: ’11’, ‘dec’: ’12’        };          // Get date format from user preference        var dateFormat;… Continue reading Function to format date (instead of using format or moment.js) Suitescript 1.0