Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Image Modified

This section provides an example of a workflow to illustrate how the SAP JCo Uploader agent can be used. 

...

Example workflow with SAP JCo Uploader agent

Decoder Agent

An example for the Ultra Format definition for the Decoder can be as follows:

Info
titleExample - Decoder


Code Block
external sap_format_external {
    ascii value : terminated_by(0xA);  
};

in_map sap_format_inMap : external (sap_format_external), 
target_internal(sap_format_external_TI) {automatic;};

decoder sap_format_dec : in_map (sap_format_inMap);

This is a simple decoder, decoding by 0xA (line feed) since the file format is flexible.

Analysis Agent

An example for the Analysis agent can be as follows:

...