CRM_JCDS

Transparent Table Application Table

Änderungsbelege für System-/Anwenderstatus (Tabelle JEST)

CRM_JCDS is an SAP database table in S/4HANA. Änderungsbelege für System-/Anwenderstatus (Tabelle JEST). It contains 11 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
I_BankPaymentBatchRejectAlert view from BASIC Rejection Alert for Payment Batch
I_CustomerStatus view from BASIC Customer Status
I_SrvcMgmtObjStsChgInformation view from BASIC View to read from DB table CRM_JCDS

Fields (11)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY objnr crmt_object_guid Object GUID
KEY stat crm_j_status Status
KEY chgnr crm_j_chgnr Change Number
usnam cdusername User
udate cddatum Date
utime cduzeit Time
cdtcode cdtcode Transaction
inact crm_j_inact Status Inact.
chind crm_j_chind Change Ind
timestamp timestampl Time Stamp

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.

-- Änderungsbelege für System-/Anwenderstatus (Tabelle JEST)
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CRM_JCDS (
    MANDT,      -- Client [mandt]
    OBJNR,      -- Object GUID [crmt_object_guid]
    STAT,       -- Status [crm_j_status]
    CHGNR,      -- Change Number [crm_j_chgnr]
    USNAM,      -- User [cdusername]
    UDATE,      -- Date [cddatum]
    UTIME,      -- Time [cduzeit]
    CDTCODE,    -- Transaction [cdtcode]
    INACT,      -- Status Inact. [crm_j_inact]
    CHIND,      -- Change Ind [crm_j_chind]
    TIMESTAMP,  -- Time Stamp [timestampl]
    PRIMARY KEY (MANDT, OBJNR, STAT, CHGNR)
);