CTE_CDS_FIN_MON_NW

DDL: CTE_CDS_FIN_MON_NW SQL: CTE_FIN_MON_NW Type: view

CDS View for Monotoring NA exp to Concur

CTE_CDS_FIN_MON_NW is a CDS View that provides data about "CDS View for Monotoring NA exp to Concur" in SAP S/4HANA. It reads from 3 data sources (aufk, cte_d_com_log_nw, CTE_CDS_FIN_LATEST_COM_LOG_NW) and exposes 9 fields with key fields system_key, otype, objid.

Data Sources (3)

SourceAliasJoin Type
aufk aufk inner
cte_d_com_log_nw com_log_nw from
CTE_CDS_FIN_LATEST_COM_LOG_NW CTE_CDS_FIN_LATEST_COM_LOG_NW inner

Parameters (5)

NameTypeDefault
p_system_key cte_system_key_number
p_otype cte_otype
p_start_timestmp timestampl
p_end_timestmp timestampl
p_language spras

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName CTE_FIN_MON_NW view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDS View for Monotoring NA exp to Concur view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY system_key cte_d_com_log_nw system_key System Key
KEY otype cte_d_com_log_nw otype Type of Val.
KEY objid cte_d_com_log_nw objid Work Center
objid_ext cte_d_com_log_nw objid Work Center
company_code aufk bukrs Value
name aufk ktext Text
timestamp cte_d_com_log_nw timestamp UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
action_code cte_d_com_log_nw operation Transaction
lognumber cte_d_com_log_nw 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_FIN_MON_NW.
-- 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: CTE_FIN_MON_NW
-- Parameters: p_system_key : cte_system_key_number, p_otype : cte_otype, p_start_timestmp : timestampl, p_end_timestmp : timestampl, p_language : spras

CREATE VIEW CTE_CDS_FIN_MON_NW AS
SELECT
  com_log_nw.system_key AS system_key,
  com_log_nw.otype AS otype,
  com_log_nw.objid AS objid,
  com_log_nw.objid AS objid_ext,
  aufk.bukrs AS company_code,
  aufk.ktext AS name,
  com_log_nw.timestamp AS timestamp,
  com_log_nw.operation AS action_code,
  com_log_nw.lognumber AS lognumber
FROM cte_d_com_log_nw AS com_log_nw
INNER JOIN CTE_CDS_FIN_LATEST_COM_LOG_NW ON /* join condition not captured in parsed metadata */
INNER JOIN aufk ON /* join condition not captured in parsed metadata */
;