P_DailyGrossSlsPostgDte_F4674

DDL: P_DAILYGROSSSLSPOSTGDTE_F4674 SQL: PDLYGRSLDTEF4674 Type: view COMPOSITE

P_DailyGrossSlsPostgDte_F4674 is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_CalendarDate, P_MonthToDateOfYstd_F4674) and exposes 1 field with key field PostingDate.

Data Sources (2)

SourceAliasJoin Type
I_CalendarDate CalendarDate inner
P_MonthToDateOfYstd_F4674 MonthToDateOfYesterday from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PDLYGRSLDTEF4674 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY PostingDate CalendarDate Calendar Date

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 P_DailyGrossSlsPostgDte_F4674.
-- 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: PDLYGRSLDTEF4674

CREATE VIEW P_DailyGrossSlsPostgDte_F4674 AS
SELECT
  CalendarDate AS PostingDate
FROM P_MonthToDateOfYstd_F4674 AS MonthToDateOfYesterday
INNER JOIN I_CalendarDate AS CalendarDate ON /* join condition not captured in parsed metadata */
;