P_SdPricingPrcd

DDL: P_SDPRICINGPRCD SQL: PSDPRICEPRD Type: view COMPOSITE

P_SdPricingPrcd is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_DeliveryDocumentItem, I_SalesDocumentBasic) and exposes 4 fields with key field SalesDocument.

Data Sources (2)

SourceAliasJoin Type
I_DeliveryDocumentItem I_DeliveryDocumentItem inner
I_SalesDocumentBasic I_SalesDocumentBasic from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PSDPRICEPRD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SalesDocument I_SalesDocumentBasic SalesDocument SD Document
SDPricingProcedure I_SalesDocumentBasic SDPricingProcedure Pric. Procedure
ReferenceSDDocument I_DeliveryDocumentItem ReferenceSDDocument Reference Doc.
DeliveryDocument DeliveryDocument Outbound Delivery

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_SdPricingPrcd.
-- 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: PSDPRICEPRD

CREATE VIEW P_SdPricingPrcd AS
SELECT
  I_SalesDocumentBasic.SalesDocument AS SalesDocument,
  I_SalesDocumentBasic.SDPricingProcedure AS SDPricingProcedure,
  I_DeliveryDocumentItem.ReferenceSDDocument AS ReferenceSDDocument,
  DeliveryDocument
FROM I_SalesDocumentBasic
INNER JOIN I_DeliveryDocumentItem ON /* join condition not captured in parsed metadata */
;