P_OpnSlsOrdsForInvcPlnAnlyts

DDL: P_OPNSLSORDSFORINVCPLNANLYTS SQL: PSDOPNSLSORDFBPA Type: view COMPOSITE

P_OpnSlsOrdsForInvcPlnAnlyts is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (P_BillingPlanDueDateAnalytics) and exposes 3 fields with key fields SalesDocument, SalesDocumentItem.

Data Sources (1)

SourceAliasJoin Type
P_BillingPlanDueDateAnalytics P_BillingPlanDueDateAnalytics from

Parameters (2)

NameTypeDefault
P_ExchangeRateType kurst
P_DisplayCurrency vdm_v_display_currency

Annotations (8)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
VDM.private true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PSDOPNSLSORDFBPA view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesDocument SalesDocument SD Document
KEY SalesDocumentItem SalesDocumentItem Sales Document Item
OpnSlsOrdsForInvcPlansNetAmtDC

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_OpnSlsOrdsForInvcPlnAnlyts.
-- 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: PSDOPNSLSORDFBPA
-- Parameters: P_ExchangeRateType : kurst, P_DisplayCurrency : vdm_v_display_currency

CREATE VIEW P_OpnSlsOrdsForInvcPlnAnlyts AS
SELECT
  SalesDocument,
  SalesDocumentItem,
  sum (OpnSlsOrdsForInvcPlansNetAmtDC) AS OpnSlsOrdsForInvcPlansNetAmtDC
FROM P_BillingPlanDueDateAnalytics
;