CTE_D_ACC_ATTR_I

Transparent Table Application Table

Mapping table between expense entry and journal entry item

CTE_D_ACC_ATTR_I is an SAP database table in S/4HANA. Mapping table between expense entry and journal entry item. It contains 10 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ConcurAcctgDocItmRelation view_entity from BASIC Concur Accounting Document Item Relation

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY system_key CTE_SYSTEM_KEY_NUMBER System Key
KEY document_type CTE_FND_POST_DOC_TYPE Document Type
KEY document_id CTE_FND_POST_DOC_ID Doc. ID
KEY revision_id CTE_FND_POST_DOC_REV_ID Rev. Number
KEY entry_id CTE_CONCUR_NODE_ID Concur Node ID
KEY bukrs BUKRS Company Code
KEY belnr BELNR_D Document Number
KEY gjahr GJAHR Fiscal Year
KEY awitem FINS_AWITEM Ref. Doc. Item

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.

-- Mapping table between expense entry and journal entry item
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CTE_D_ACC_ATTR_I (
    CLIENT,         -- Client [MANDT]
    SYSTEM_KEY,     -- System Key [CTE_SYSTEM_KEY_NUMBER]
    DOCUMENT_TYPE,  -- Document Type [CTE_FND_POST_DOC_TYPE]
    DOCUMENT_ID,    -- Doc. ID [CTE_FND_POST_DOC_ID]
    REVISION_ID,    -- Rev. Number [CTE_FND_POST_DOC_REV_ID]
    ENTRY_ID,       -- Concur Node ID [CTE_CONCUR_NODE_ID]
    BUKRS,          -- Company Code [BUKRS]
    BELNR,          -- Document Number [BELNR_D]
    GJAHR,          -- Fiscal Year [GJAHR]
    AWITEM,         -- Ref. Doc. Item [FINS_AWITEM]
    PRIMARY KEY (CLIENT, SYSTEM_KEY, DOCUMENT_TYPE, DOCUMENT_ID, REVISION_ID, ENTRY_ID, BUKRS, BELNR, GJAHR, AWITEM)
);