pp_mrp_read_sales_order

DDL: PP_MRP_READ_SALES_ORDER SQL: V_MRP_SALES_ORD Type: view

Read Sales Order

pp_mrp_read_sales_order is a CDS View that provides data about "Read Sales Order" in SAP S/4HANA. It reads from 3 data sources (proj, vbap, vbep).

Data Sources (3)

SourceAliasJoin Type
proj proj inner
vbap vbap inner
vbep vbep inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName V_MRP_SALES_ORD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Read Sales Order view

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 pp_mrp_read_sales_order.
-- 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: V_MRP_SALES_ORD

CREATE VIEW pp_mrp_read_sales_order AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN vbap ON /* join condition not captured in parsed metadata */
INNER JOIN vbep ON /* join condition not captured in parsed metadata */
INNER JOIN proj ON /* join condition not captured in parsed metadata */
;