CTE_CDS_INV_MON_VD

DDL: CTE_CDS_INV_MON_VD Type: view_entity

Monitoring Vendor export to Concur

CTE_CDS_INV_MON_VD is a CDS View that provides data about "Monitoring Vendor export to Concur" in SAP S/4HANA. It reads from 4 data sources (cte_d_com_log_vd, CTE_CDS_INV_LATEST_COM_LOG_VD, lfa1, lfb1) and exposes 9 fields with key fields system_key, otype, objid.

Data Sources (4)

SourceAliasJoin Type
cte_d_com_log_vd com_log_vd from
CTE_CDS_INV_LATEST_COM_LOG_VD CTE_CDS_INV_LATEST_COM_LOG_VD inner
lfa1 lfa1 inner
lfb1 lfb1 left_outer

Parameters (4)

NameTypeDefault
p_system_key cte_system_key_number
p_otype cte_otype
p_start_timestmp timestampl
p_end_timestmp timestampl

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Monitoring Vendor export to Concur view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY system_key cte_d_com_log_vd system_key System Key
KEY otype cte_d_com_log_vd otype Type of Val.
KEY objid cte_d_com_log_vd objid Work Center
objid_ext
company_code
name lfa1 name1 PA text
timestamp cte_d_com_log_vd timestamp UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
action_code cte_d_com_log_vd operation Transaction
lognumber cte_d_com_log_vd lognumber UUID

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 CTE_CDS_INV_MON_VD.
-- 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.
-- Parameters: p_system_key : cte_system_key_number, p_otype : cte_otype, p_start_timestmp : timestampl, p_end_timestmp : timestampl

CREATE VIEW CTE_CDS_INV_MON_VD AS
SELECT
  com_log_vd.system_key AS system_key,
  com_log_vd.otype AS otype,
  com_log_vd.objid AS objid,
  substring(com_log_vd.objid, 1, 10) AS objid_ext,
  coalesce(lfb1.bukrs,'-') AS company_code,
  lfa1.name1 AS name,
  com_log_vd.timestamp AS timestamp,
  com_log_vd.operation AS action_code,
  com_log_vd.lognumber AS lognumber
FROM cte_d_com_log_vd AS com_log_vd
INNER JOIN CTE_CDS_INV_LATEST_COM_LOG_VD ON /* join condition not captured in parsed metadata */
INNER JOIN lfa1 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN lfb1 ON /* join condition not captured in parsed metadata */
;