CADE_DEPRFMLA

Transparent Table Application Table

Depreciation Formula for CADE

CADE_DEPRFMLA is an SAP database table in S/4HANA. Depreciation Formula for CADE. It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CN_CADEDepreciationKeyInfo view from BASIC CN Depreciation Key Information for CADE

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY bukrs BUKRS Company Code
KEY cade_natl_std_rel_ver CADE_NATL_STD_VER Release Version
KEY afapl AFAPL Chart of Depr.
KEY afasl AFASL Dep. key
cade_depr_fmla CADE_DEPR_FMLA Depr Formula

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.

-- Depreciation Formula for CADE
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CADE_DEPRFMLA (
    MANDT,                  -- Client [MANDT]
    BUKRS,                  -- Company Code [BUKRS]
    CADE_NATL_STD_REL_VER,  -- Release Version [CADE_NATL_STD_VER]
    AFAPL,                  -- Chart of Depr. [AFAPL]
    AFASL,                  -- Dep. key [AFASL]
    CADE_DEPR_FMLA,         -- Depr Formula [CADE_DEPR_FMLA]
    PRIMARY KEY (MANDT, BUKRS, CADE_NATL_STD_REL_VER, AFAPL, AFASL)
);