I_ABOPRunMaterialPlant

DDL: I_ABOPRUNMATERIALPLANT Type: view_entity COMPOSITE Package: ATP_BOP_MONITOR_VDM

Run conf. details by material-plant

I_ABOPRunMaterialPlant is a Composite CDS View that provides data about "Run conf. details by material-plant" in SAP S/4HANA. It reads from 1 data source (P_ABOPRunMaterialPlant) and exposes 5 fields with key fields ABOPRunUUID, Material, Plant. It has 1 association to related views. Part of development package ATP_BOP_MONITOR_VDM.

Data Sources (1)

SourceAliasJoin Type
P_ABOPRunMaterialPlant P_ABOPRunMaterialPlant from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ABOPRunPrtRsltFigsByProdPlnt _ResultFiguresForAllRqmts $projection.ABOPRunUUID = _ResultFiguresForAllRqmts.ABOPRunPartUUID and $projection.Material = _ResultFiguresForAllRqmts.Material and $projection.Plant = _ResultFiguresForAllRqmts.Plant

Annotations (6)

NameValueLevelField
EndUserText.label Run conf. details by material-plant view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ABOPRunUUID ABOPRunUUID Check ID
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
_SupplyingPlant _SupplyingPlant
_ResultFiguresForAllRqmts _ResultFiguresForAllRqmts

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 I_ABOPRunMaterialPlant.
-- 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 I_ABOPRunMaterialPlant AS
SELECT
  ABOPRunUUID,
  Material,
  Plant
FROM P_ABOPRunMaterialPlant
LEFT OUTER JOIN I_ABOPRunPrtRsltFigsByProdPlnt AS _ResultFiguresForAllRqmts ON ABOPRunUUID = _ResultFiguresForAllRqmts.ABOPRunPartUUID AND Material = _ResultFiguresForAllRqmts.Material AND Plant = _ResultFiguresForAllRqmts.Plant  -- association [1..1]
;