EDI Basics

How to drill into data using Typed Documents

In this tutorial we’ll discuss how to navigate and get loops and segments from a Typed Document after it’s loaded.  Once a Typed Document is created, loops and Typed Segments can be retrieved.  Data is stored in a logical structure corresponding to the implementation guides Finding Loops    Example – Getting A Loop Typed5010Document doc = new Typed5010Document(ediValidator.EDILightWeightDocument); //Get …

How to drill into data using Typed Documents Read More »

Combining EDI Data in NodeJS

In this tutorial we’ll discuss how to combine separate EDI data using the EDIFileJoiner component and NodeJS.  We can combine data at the Functional Group (GS) or the Transaction Header level (ST).  The basic flow is demonstrated in the diagram below.     In this example we’re going to combine two files ( read in as strings) …

Combining EDI Data in NodeJS Read More »

RDPScript Tutorial

RDPScript is the new powerful EDI scripting language that allows you to express your business logic around EDI validation more elegantly.  It allows you to add custom validation rules in simple, natural way. In this tutorial we will demonstrate how to use RDPScript to add validation rules to an 5010 837 Professional EDI file.  We …

RDPScript Tutorial Read More »

Combining EDI Data in .Net

In this tutorial we’ll discuss how to combine separate EDI files using the EDIFileJoiner component and C#.Net.  We can combine files at the Functional Group (GS) or the Transaction Header level (ST).  The basic flow is demonstrated in the diagram below. In this example we’re going to combine two files at the Transaction Header level.  This means …

Combining EDI Data in .Net Read More »

Consuming EDI data with TypedDocuments and .Net

In this tutorial we’ll discuss how to consume loaded EDI data using TypedDocuments and C#.Net.  Once EDI data is loaded using either EDIValidator or EDIFileLoader that data is in memory and is available for use.  One possible usage is to save it into a database.  TypedDocuments provide an object oriented view over the EDI data and enables developers to access it with …

Consuming EDI data with TypedDocuments and .Net Read More »