E071

Transparent Table System Table (transport)

Transport system: Object entries of requests/tasks

E071 is an SAP database table in S/4HANA. Transport system: Object entries of requests/tasks. It contains 10 fields. 8 CDS views read from this table.

CDS Views using this table (8)

ViewTypeJoinVDMDescription
ATOV_PK_ITEM_TRANSPORTS view inner All transports for key user items
CLMS_V_TM_TR_OBJ view left_outer Objects of transport requests
CLMS_V_VTR_LOG_TROBJ view left_outer Trigger: objects of transport requests
I_FinSubstnValdtnTranspTask view_entity right_outer BASIC FIN Substitution Validation Transp Task
I_RecordedObjects view from Objects
I_RecordedObjectTableKeys view from Objects
swb_i_wvobjecttypes view left_outer CDS for WB object types
SXCO_TR_OBJECT_ENTRY view_entity from XCO Transport: Object

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY trkorr TRKORR Request/Task
KEY as4pos DDPOSITION Dictionary: Line item
pgmid PGMID Program ID
object TROBJTYPE Object Type
obj_name TROBJ_NAME Object Name
objfunc OBJFUNC Function
lockflag LOCKFLAG Status
gennum TRGENNUM Information Key
lang SPRAS Language
activity TRACTIVITY IMG Activity

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.

-- Transport system: Object entries of requests/tasks
-- Category TRANSPARENT · Delivery class W
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE E071 (
    TRKORR,    -- Request/Task [TRKORR]
    AS4POS,    -- Dictionary: Line item [DDPOSITION]
    PGMID,     -- Program ID [PGMID]
    OBJECT,    -- Object Type [TROBJTYPE]
    OBJ_NAME,  -- Object Name [TROBJ_NAME]
    OBJFUNC,   -- Function [OBJFUNC]
    LOCKFLAG,  -- Status [LOCKFLAG]
    GENNUM,    -- Information Key [TRGENNUM]
    LANG,      -- Language [SPRAS]
    ACTIVITY,  -- IMG Activity [TRACTIVITY]
    PRIMARY KEY (TRKORR, AS4POS)
);