JSTO

Transparent Table Application Table

Status object information

JSTO is an SAP database table in S/4HANA. Status object information. It contains 7 fields. 16 CDS views read from this table.

CDS Views using this table (16)

ViewTypeJoinVDMDescription
I_EAMObjectUsrStatusWithNumber view from BASIC EAM Object User Status with Number
I_ProcessOrderStatusInfo view_entity from BASIC Process Orders Status Management Info
I_ProcOrdOpStatusInfo view_entity from BASIC Process Order Operations Status Info
I_RSHOperationStatusObject view inner BASIC Status Object and Codes for PM Operations
I_StatusObject view from BASIC Status Object
ISU_C4C_NTFST_SY_V view from Notification system status
ISU_C4C_NTFST_V view from Notification status
P_RSHUserStatusBasic view inner BASIC
P_SDControllingObjectStatus1 view from BASIC
P_SDDocControllingObjectSts1 view from BASIC
vfco_dll_cj8g_l1 view inner
vfco_dll_cjb1_l1 view inner
vfco_dll_co88_with_op_l1 view inner
vfco_dll_co88_wo_op_l1 view inner
vfco_dll_ko8g_l1 view inner
vfco_dll_va88_l1 view inner

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY objnr J_OBJNR Object number
obtyp J_OBTYP Object Type
stsma J_STSMA Status Profile
chgkz J_CHGKZ Change Docs
chgnr J_CHGNR Change number
_dataaging DATA_TEMPERATURE Data Aging

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.

-- Status object information
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE JSTO (
    MANDT,       -- Client [MANDT]
    OBJNR,       -- Object number [J_OBJNR]
    OBTYP,       -- Object Type [J_OBTYP]
    STSMA,       -- Status Profile [J_STSMA]
    CHGKZ,       -- Change Docs [J_CHGKZ]
    CHGNR,       -- Change number [J_CHGNR]
    _DATAAGING,  -- Data Aging [DATA_TEMPERATURE]
    PRIMARY KEY (MANDT, OBJNR)
);