CLMS_V_TM_TR_OBJ

DDL: CLMS_V_TM_TR_OBJ SQL: CLMSV_TMTROBJ Type: view

Objects of transport requests

CLMS_V_TM_TR_OBJ is a CDS View that provides data about "Objects of transport requests" in SAP S/4HANA. It reads from 1 data source (e071) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
e071 object left_outer

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName CLMSV_TMTROBJ view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientDependent false view
EndUserText.label Objects of transport requests view

Fields (4)

KeyFieldSource TableSource FieldDescription
trkorr request trkorr Virtual Transport
pgmid e071 pgmid Program Name
object e071 object TRFM Object
obj_name e071 obj_name Object Name

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 CLMS_V_TM_TR_OBJ.
-- 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.
-- SQL view name: CLMSV_TMTROBJ

CREATE VIEW CLMS_V_TM_TR_OBJ AS
SELECT
  request.trkorr AS trkorr,
  object.pgmid AS pgmid,
  object.object AS object,
  object.obj_name AS obj_name
LEFT OUTER JOIN e071 AS object ON /* join condition not captured in parsed metadata */
;