TMO_I_XM_OBJ_INFO_R

DDL: TMO_I_XM_OBJ_INFO_R Type: view_entity

TMO: Object Software Component

TMO_I_XM_OBJ_INFO_R is a CDS View that provides data about "TMO: Object Software Component" in SAP S/4HANA. It reads from 2 data sources (cvers, APS_TADIR) and exposes 4 fields with key fields pgmid, object, obj_name.

Data Sources (2)

SourceAliasJoin Type
cvers _Cvers left_outer
APS_TADIR _Tadir from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label TMO: Object Software Component view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY pgmid APS_TADIR pgmid Program Name
KEY object APS_TADIR object TRFM Object
KEY obj_name APS_TADIR obj_name Object Name
gen_flag APS_TADIR genflag Generation Flag

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 TMO_I_XM_OBJ_INFO_R.
-- 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 TMO_I_XM_OBJ_INFO_R AS
SELECT
  _Tadir.pgmid AS pgmid,
  _Tadir.object AS object,
  _Tadir.obj_name AS obj_name,
  _Tadir.genflag AS gen_flag
FROM APS_TADIR AS _Tadir
LEFT OUTER JOIN cvers AS _Cvers ON /* join condition not captured in parsed metadata */
;