OIJ_EL_CP_LOC

Transparent Table Application Table

Charter party contract: load and discharge locations

OIJ_EL_CP_LOC is an SAP database table in S/4HANA. Charter party contract: load and discharge locations. It contains 9 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
/DMBE/I_OIJ_EL_CP_LOC view from Charter cntrct:load and disch locations

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY vbeln oij_el_cpno Contract no.
KEY vbtyp oij_el_vbtyp TSW Det.Doc typ
KEY posnr oij_el_posnr Item
KEY seqnr oij_seqnr Sequence number
location oij_el_locid Location ID
attribute oij_el_loatt Loc. attribute
exclude oij_el_ex Exclude loc.
_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.

-- Charter party contract: load and discharge locations
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE OIJ_EL_CP_LOC (
    MANDT,       -- Client [mandt]
    VBELN,       -- Contract no. [oij_el_cpno]
    VBTYP,       -- TSW Det.Doc typ [oij_el_vbtyp]
    POSNR,       -- Item [oij_el_posnr]
    SEQNR,       -- Sequence number [oij_seqnr]
    LOCATION,    -- Location ID [oij_el_locid]
    ATTRIBUTE,   -- Loc. attribute [oij_el_loatt]
    EXCLUDE,     -- Exclude loc. [oij_el_ex]
    _DATAAGING,  -- Data Aging [data_temperature]
    PRIMARY KEY (MANDT, VBELN, VBTYP, POSNR, SEQNR)
);