JITCU

Transparent Table Application Table

Customer data

JITCU is an SAP database table in S/4HANA. Customer data. It contains 12 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
SHSM_JITCU view from CDS view for search help H_CUSTO

Fields (12)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY custo JIT_CUSTO JIT Customer
kunnr KUNAG Sold-to Party
knref KNREF Partner desc.
abrvw ABRVW Usage
tzone JIT_TZONE Cust. time zone
fprof JIT_FPROF Determ.Profile
vatyp JIT_VATYP Calltype
impac JIT_IMPAC Sig.monitor active
mtmod JIT_MAINT_MODE MaintenanceMode
don_profil JIT_DON_PROFIL SumJC Profile
lprof JIT_LPROF Profile dely creatn

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.

-- Customer data
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE JITCU (
    MANDT,       -- Client [MANDT]
    CUSTO,       -- JIT Customer [JIT_CUSTO]
    KUNNR,       -- Sold-to Party [KUNAG]
    KNREF,       -- Partner desc. [KNREF]
    ABRVW,       -- Usage [ABRVW]
    TZONE,       -- Cust. time zone [JIT_TZONE]
    FPROF,       -- Determ.Profile [JIT_FPROF]
    VATYP,       -- Calltype [JIT_VATYP]
    IMPAC,       -- Sig.monitor active [JIT_IMPAC]
    MTMOD,       -- MaintenanceMode [JIT_MAINT_MODE]
    DON_PROFIL,  -- SumJC Profile [JIT_DON_PROFIL]
    LPROF,       -- Profile dely creatn [JIT_LPROF]
    PRIMARY KEY (MANDT, CUSTO)
);