CTE_CDS_FIN_MON_PT

DDL: CTE_CDS_FIN_MON_PT SQL: CTE_FIN_MON_PT Type: view

CDS View for Monotoring Document export to Concur

CTE_CDS_FIN_MON_PT is a CDS View that provides data about "CDS View for Monotoring Document export to Concur" in SAP S/4HANA. It reads from 3 data sources (cte_d_fin_pt_doc, cte_d_log_trace, t001) and exposes 8 fields with key fields system_key, otype, objid.

Data Sources (3)

SourceAliasJoin Type
cte_d_fin_pt_doc doc_store from
cte_d_log_trace log_trace inner
t001 t001 left_outer

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 (8)

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

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY system_key cte_d_fin_pt_doc system_key System Key
KEY otype cte_d_fin_pt_doc document_type Unit
KEY objid
objid_ext cte_d_fin_pt_doc document_key Doc. Key
company_code
name cte_d_fin_pt_doc document_name Document Name
timestamp cte_d_log_trace timestamp UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
lognumber cte_d_log_trace 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_PT.
-- 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_PT
-- 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_PT AS
SELECT
  doc_store.system_key AS system_key,
  doc_store.document_type AS otype,
  concat(concat(doc_store.document_id, '/'), doc_store.revision_id) AS objid,
  doc_store.document_key AS objid_ext,
  coalesce( t001.bukrs, '-') AS company_code,
  doc_store.document_name AS name,
  log_trace.timestamp AS timestamp,
  log_trace.lognumber AS lognumber
FROM cte_d_fin_pt_doc AS doc_store
INNER JOIN cte_d_log_trace AS log_trace ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN t001 ON /* join condition not captured in parsed metadata */
;