CMS_CALC_REL

Transparent Table Application Table

Calculation Results related to Collateral Agreement Relation

CMS_CALC_REL is an SAP database table in S/4HANA. Calculation Results related to Collateral Agreement Relation. It contains 14 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_AgreementRelshpCalcData view from BASIC Calculation Results for CAG Relations

Fields (14)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY rel_guid CMS_DTE_REL_GUID REL GUID
source_guid CMS_DTE_CAG_GUID CAG GUID
src_sec_guid CMS_DTE_REL_SRC_SEC_GUID Source GUID
destination_guid CMS_DTE_CAG_GUID CAG GUID
con_guid CMS_DTE_CON_GUID CON GUID
result_curr CMS_DTE_CALC_RES_CURR Result Currency
dist_col_val_c CMS_DTE_CALC_DIST_CV Dist. Coll val
dist_col_val_m CMS_DTE_CALC_DIST_CV Dist. Coll val
dist_cv_pct_c CMS_DTE_CALC_RES_PCT Result Pct
dist_cv_pct_m CMS_DTE_CALC_RES_PCT Result Pct
last_chg_by CMS_DTE_LAST_CHNG_USER Last Changed by
last_chg_date CMS_DTE_LAST_CHNG_DATE Last Changed on
last_chg_time CMS_DTE_LAST_CHNG_TIME Last Changed at

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.

-- Calculation Results related to Collateral Agreement Relation
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CMS_CALC_REL (
    MANDT,             -- Client [MANDT]
    REL_GUID,          -- REL GUID [CMS_DTE_REL_GUID]
    SOURCE_GUID,       -- CAG GUID [CMS_DTE_CAG_GUID]
    SRC_SEC_GUID,      -- Source GUID [CMS_DTE_REL_SRC_SEC_GUID]
    DESTINATION_GUID,  -- CAG GUID [CMS_DTE_CAG_GUID]
    CON_GUID,          -- CON GUID [CMS_DTE_CON_GUID]
    RESULT_CURR,       -- Result Currency [CMS_DTE_CALC_RES_CURR]
    DIST_COL_VAL_C,    -- Dist. Coll val [CMS_DTE_CALC_DIST_CV]
    DIST_COL_VAL_M,    -- Dist. Coll val [CMS_DTE_CALC_DIST_CV]
    DIST_CV_PCT_C,     -- Result Pct [CMS_DTE_CALC_RES_PCT]
    DIST_CV_PCT_M,     -- Result Pct [CMS_DTE_CALC_RES_PCT]
    LAST_CHG_BY,       -- Last Changed by [CMS_DTE_LAST_CHNG_USER]
    LAST_CHG_DATE,     -- Last Changed on [CMS_DTE_LAST_CHNG_DATE]
    LAST_CHG_TIME,     -- Last Changed at [CMS_DTE_LAST_CHNG_TIME]
    PRIMARY KEY (MANDT, REL_GUID)
);