BUTECHORG

Transparent Table Customizing (protected)

Table of original Transactions (Technical)

BUTECHORG is an SAP database table in S/4HANA. Table of original Transactions (Technical). It contains 8 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_OriginalBudgetingApplication view from BASIC Original Budgeting Application

Fields (8)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY techorg buku_techorg Original Application
flg_check_avc flg_check_avc FLG_CHECK_AVC
flg_add_lines buku_flg_add_line Additional Line
flg_rollup buku_flg_rollup Enable Rollup
flg_prepost buku_flg_prepost Preposted Doc.
flg_uncheck_cc buku_flg_uncheck_cc FLG_NOCHECK_CC
flg_cumulate_errors buku_flg_cumulate_error Cumulate errors

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.

-- Table of original Transactions (Technical)
-- Category TRANSPARENT · Delivery class G
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE BUTECHORG (
    CLIENT,               -- Client [mandt]
    TECHORG,              -- Original Application [buku_techorg]
    FLG_CHECK_AVC,        -- FLG_CHECK_AVC [flg_check_avc]
    FLG_ADD_LINES,        -- Additional Line [buku_flg_add_line]
    FLG_ROLLUP,           -- Enable Rollup [buku_flg_rollup]
    FLG_PREPOST,          -- Preposted Doc. [buku_flg_prepost]
    FLG_UNCHECK_CC,       -- FLG_NOCHECK_CC [buku_flg_uncheck_cc]
    FLG_CUMULATE_ERRORS,  -- Cumulate errors [buku_flg_cumulate_error]
    PRIMARY KEY (CLIENT, TECHORG)
);