SAP Integration • July 20, 2026

Understanding File Content Conversion in SAP Process Integration

By Integration Architecture Team

Understanding File Content Conversion in SAP Process Integration

File Content Conversion (FCC) is a crucial capability of the SAP PI/PO File/FTP Adapter. It allows flat text files (such as CSV or fixed-length records) to be natively parsed into XML structures during inbound processing, and XML messages to be converted into flat files during outbound processing.

Why Use FCC?

  1. Eliminates Message Mapping Overhead: Standard flat files are transformed into XML directly at the adapter layer.
  2. High Performance: Native Adapter Engine C++ / Java parsing is optimized for rapid payload stream transformation.
  3. Multi-Record Structure Support: Handles complex files containing Headers, Detail items, and Footers in a single pass.

Core Parameters

  • documentName: Defines the root tag of the output XML document.
  • documentNamespace: Defines the target namespace.
  • recordsetStructure: Specifies substructures and their frequency (e.g., Header,1,Detail,*,Footer,1).
  • fieldSeparator: Specifies line delimiters (e.g. ,, ;, \t).
← Back to Blog Index