pp_mrp_read_mfg_order

DDL: PP_MRP_READ_MFG_ORDER SQL: V_MRP_MFG_ORDER Type: view

Read Manufacturing Order

pp_mrp_read_mfg_order is a CDS View that provides data about "Read Manufacturing Order" in SAP S/4HANA. It reads from 4 data sources (afpo, proj, afpo, vbap).

Data Sources (4)

SourceAliasJoin Type
afpo pos inner
proj pro inner
afpo tpp inner
vbap vbp inner

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName V_MRP_MFG_ORDER view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Read Manufacturing 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_mfg_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_MFG_ORDER

CREATE VIEW pp_mrp_read_mfg_order AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN afpo AS pos ON /* join condition not captured in parsed metadata */
INNER JOIN afpo AS tpp ON /* join condition not captured in parsed metadata */
INNER JOIN proj AS pro ON /* join condition not captured in parsed metadata */
INNER JOIN vbap AS vbp ON /* join condition not captured in parsed metadata */
;