EIT_EXP_FILE

Transparent Table Temporary Data

Extensibility Template: Export Template Content

EIT_EXP_FILE is an SAP database table in S/4HANA. Extensibility Template: Export Template Content. It contains 4 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
EITV_EXP_FILES view inner Template Export Files
EITV_EXP_FILES_DOWNLOAD view from Template export file download
EITV_EXP_FILES_ITEM view from Template Export File Items

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY template_id ato_collection_id Collection ID
KEY template_version ato_collection_version Collection Version
file_name eit_file_name File Name
content eit_template_content Template Content

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Extensibility Template: Export Template Content
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE EIT_EXP_FILE (
    TEMPLATE_ID,       -- Collection ID [ato_collection_id]
    TEMPLATE_VERSION,  -- Collection Version [ato_collection_version]
    FILE_NAME,         -- File Name [eit_file_name]
    CONTENT,           -- Template Content [eit_template_content]
    PRIMARY KEY (TEMPLATE_ID, TEMPLATE_VERSION)
);