Edi to XML transform Icon Edi to XML

Description

The Edi To XML transform converts EDI message text (conforming to the ISO 9735 standard, read more) to generic XML.

The XML text is more accessible and allows for selective data extraction using XPath and the Get Data From XML transform.

Supported Engines

Hop Engine

Supported

Spark

Maybe Supported

Flink

Maybe Supported

Dataflow

Maybe Supported

Options

The transform configuration requires the field name containing the EDI text, and an output field name for the XML text. If the output field name is left empty, the EDI text is going to be replaced by the XML text.

The structure of the XML output follows the following pattern:

<edifact>
	<SEGMENT>
		<element>
			<value></value>
			...
		</element>
		...
	</SEGMENT>
	...
</edifact>

The conversion rules are:

  • the root of the document is the "edifact" tag

  • each segment in the edifact message is converted to a tag, using the segment name as the tag name.

  • each field within a segment is represented by an "element" tag

  • each value within a field is represented by an "value" tag