P_MfgProcgExecNonSrlzdBatch

DDL: P_MFGPROCGEXECNONSRLZDBATCH SQL: PMPEEXECNSBATCH Type: view COMPOSITE Package: MPE_EXEC_SFI

Manufacturing Processing Execution Batch

P_MfgProcgExecNonSrlzdBatch is a Composite CDS View that provides data about "Manufacturing Processing Execution Batch" in SAP S/4HANA. It reads from 1 data source (I_MatlPlntCompAssembleControl) and exposes 8 fields with key fields Material, Batch, Plant. It has 2 associations to related views. Part of development package MPE_EXEC_SFI.

Data Sources (1)

SourceAliasJoin Type
I_MatlPlntCompAssembleControl MfgOrderProductPlant inner

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ProductPlantBasic _ProductPlant $projection.Material = _ProductPlant.Product and $projection.Plant = _ProductPlant.Plant
[1..1] I_Plant _Plant MfgOrderProductPlant.Plant = _Plant.Plant

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PMPEEXECNSBATCH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Material BatchDistinct Material Vehicle Model
KEY Batch BatchDistinct Batch Lot No.
KEY Plant I_MatlPlntCompAssembleControl Plant Valuation Area
BatchBySupplier BatchDistinct BatchBySupplier Supplier Batch
_Material BatchDistinct _Material
_ProductPlant _ProductPlant
_Plant _Plant
_Product BatchDistinct _Product

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_MfgProcgExecNonSrlzdBatch.
-- 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: PMPEEXECNSBATCH

CREATE VIEW P_MfgProcgExecNonSrlzdBatch AS
SELECT
  BatchDistinct.Material AS Material,
  BatchDistinct.Batch AS Batch,
  MfgOrderProductPlant.Plant AS Plant,
  BatchDistinct.BatchBySupplier AS BatchBySupplier,
  BatchDistinct._Material AS _Material,
  BatchDistinct._Product AS _Product
INNER JOIN I_MatlPlntCompAssembleControl AS MfgOrderProductPlant ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_ProductPlantBasic AS _ProductPlant ON Material = _ProductPlant.Product AND Plant = _ProductPlant.Plant  -- association [0..1]
LEFT OUTER JOIN I_Plant AS _Plant ON MfgOrderProductPlant.Plant = _Plant.Plant  -- association [1..1]
;