P_Mfgcompsmissaggr

DDL: P_MFGCOMPSMISSAGGR Type: view_entity CONSUMPTION

Group the ComponentIsMissing flags for all components

P_Mfgcompsmissaggr is a Consumption CDS View that provides data about "Group the ComponentIsMissing flags for all components" in SAP S/4HANA. It reads from 2 data sources (P_MfgOperationsList, I_MfgOrderOperationComponent) and exposes 2 fields with key fields OrderInternalBillOfOperations, OrderIntBillOfOperationsItem.

Data Sources (2)

SourceAliasJoin Type
P_MfgOperationsList _AORListDistinct inner
I_MfgOrderOperationComponent comp from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Group the ComponentIsMissing flags for all components view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalBillOfOperations I_MfgOrderOperationComponent OrderInternalBillOfOperations Order Internal Bill of Operations
KEY OrderIntBillOfOperationsItem I_MfgOrderOperationComponent OrderIntBillOfOperationsItem Order Internal Bill of Operations Item

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_Mfgcompsmissaggr.
-- 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.

CREATE VIEW P_Mfgcompsmissaggr AS
SELECT
  comp.OrderInternalBillOfOperations AS OrderInternalBillOfOperations,
  comp.OrderIntBillOfOperationsItem AS OrderIntBillOfOperationsItem
FROM I_MfgOrderOperationComponent AS comp
INNER JOIN P_MfgOperationsList AS _AORListDistinct ON /* join condition not captured in parsed metadata */
;