FCLM_BRM_COND

Transparent Table Application Table

Bank Condition

FCLM_BRM_COND is an SAP database table in S/4HANA. Bank Condition. It contains 6 fields. 4 CDS views read from this table.

CDS Views using this table (4)

ViewTypeJoinVDMDescription
FCLM_BRM_BANK_FEE_CONDITION view from Bank Fee Condition List
I_BankConditionTP view from TRANSACTIONAL Bank Condition
I_BankFeeCondition view from BASIC Bank Fee Condition
R_BankFeeConditionTP view_entity from TRANSACTIONAL Bank fee condition

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY condarea bkk_condar Condition Area
KEY cond bkk_con Condition
KEY validfrom fclm_brm_from_date From Date
chargemethod fclm_brm_charge_method2 Charge Method
last_change_datetime fclm_brm_lastchangedatetime 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.

-- Bank Condition
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE FCLM_BRM_COND (
    MANDT,                 -- Client [mandt]
    CONDAREA,              -- Condition Area [bkk_condar]
    COND,                  -- Condition [bkk_con]
    VALIDFROM,             -- From Date [fclm_brm_from_date]
    CHARGEMETHOD,          -- Charge Method [fclm_brm_charge_method2]
    LAST_CHANGE_DATETIME,  -- Last Changed At [fclm_brm_lastchangedatetime]
    PRIMARY KEY (MANDT, CONDAREA, COND, VALIDFROM)
);