SXCO_TR_OBJECT_ENTRY

DDL: SXCO_TR_OBJECT_ENTRY Type: view_entity

XCO Transport: Object

SXCO_TR_OBJECT_ENTRY is a CDS View that provides data about "XCO Transport: Object" in SAP S/4HANA. It reads from 2 data sources (sxco_tr_transport, e071) and exposes 6 fields with key fields transportValue, positionValue.

Data Sources (2)

SourceAliasJoin Type
sxco_tr_transport _Transport inner
e071 e071 from

Annotations (1)

NameValueLevelField
EndUserText.label XCO Transport: Object view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY transportValue e071 trkorr Virtual Transport
KEY positionValue e071 as4pos Dictionary: Line item
programID e071 pgmid Program Name
objectType e071 object TRFM Object
objectName e071 obj_name Object Name
origin

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view SXCO_TR_OBJECT_ENTRY.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW SXCO_TR_OBJECT_ENTRY AS
SELECT
  e071.trkorr AS transportValue,
  e071.as4pos AS positionValue,
  e071.pgmid AS programID,
  e071.object AS objectType,
  e071.obj_name AS objectName,
  cast ( 'E071' as abap.char( 16 ) ) AS origin
FROM e071
INNER JOIN sxco_tr_transport AS _Transport ON /* join condition not captured in parsed metadata */
;