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)
);