CLMS_V_VTR_LOG_VTROBJ

DDL: CLMS_V_VTR_LOG_VTROBJ SQL: CLMSV_LOGVTROBJ Type: view

Trigger: objects of virtual requests

CLMS_V_VTR_LOG_VTROBJ is a CDS View that provides data about "Trigger: objects of virtual requests" in SAP S/4HANA. It reads from 1 data source (CLMS_V_TM_VTR_OBJ) and exposes 4 fields with key fields uuid, pgmid, object, obj_name.

Data Sources (1)

SourceAliasJoin Type
CLMS_V_TM_VTR_OBJ _VirtualRequestObjects left_outer

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName CLMSV_LOGVTROBJ view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientDependent false view
EndUserText.label Trigger: objects of virtual requests view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY uuid LogItem uuid Waste Partner UUID
KEY pgmid CLMS_V_TM_VTR_OBJ pgmid Program Name
KEY object CLMS_V_TM_VTR_OBJ object TRFM Object
KEY obj_name CLMS_V_TM_VTR_OBJ 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_VTR_LOG_VTROBJ.
-- 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_LOGVTROBJ

CREATE VIEW CLMS_V_VTR_LOG_VTROBJ AS
SELECT
  LogItem.uuid AS uuid,
  _VirtualRequestObjects.pgmid AS pgmid,
  _VirtualRequestObjects.object AS object,
  _VirtualRequestObjects.obj_name AS obj_name
LEFT OUTER JOIN CLMS_V_TM_VTR_OBJ AS _VirtualRequestObjects ON /* join condition not captured in parsed metadata */
;