TE272

Transparent Table Customizing Table

Reasons for Reversal

TE272 is an SAP database table in S/4HANA. Reasons for Reversal. It contains 6 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_UtilsBillingDocReversalRsn view from BASIC Billing Document Reversal Reason
I_UtilsInvcgDocReversalRsn view from BASIC Invoicing Document Reversal Reason

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY bcreason BCREASON Reversal reason
for_bill FOR_BILL Billing revers.
for_inv FOR_INV Invoicing reversal
bctyp ISU_BCTYP Rev. Category
keep_lpc_jpn E_KEEP_LPC_JPN Retain LPC

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.

-- Reasons for Reversal
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TE272 (
    MANDT,         -- Client [MANDT]
    BCREASON,      -- Reversal reason [BCREASON]
    FOR_BILL,      -- Billing revers. [FOR_BILL]
    FOR_INV,       -- Invoicing reversal [FOR_INV]
    BCTYP,         -- Rev. Category [ISU_BCTYP]
    KEEP_LPC_JPN,  -- Retain LPC [E_KEEP_LPC_JPN]
    PRIMARY KEY (MANDT, BCREASON)
);