P_MfgOrdOpSerialNumberForSplit

DDL: P_MFGORDOPSERIALNUMBERFORSPLIT SQL: PMPEORDOPSERSPLT Type: view CONSUMPTION

Serial Number that can be split at an Order Operation

P_MfgOrdOpSerialNumberForSplit is a Consumption CDS View that provides data about "Serial Number that can be split at an Order Operation" in SAP S/4HANA. It reads from 4 data sources (I_LogisticsOrderBasic, I_MfgOrdOpActiveInitialSFI, I_OrderOperationBasic, I_SerialNumberManufacturingOrd) and exposes 17 fields with key fields OrderInternalID, OrderOperationInternalID, ShopFloorItem, Material, SerialNumber.

Data Sources (4)

SourceAliasJoin Type
I_LogisticsOrderBasic LogisticsOrderBasic inner
I_MfgOrdOpActiveInitialSFI MfgOrdOpActiveInitialSFI from
I_OrderOperationBasic OrderOperationBasic inner
I_SerialNumberManufacturingOrd SerialNumberManufacturingOrd union_all

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PMPEORDOPSERSPLT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey 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
VDM.viewType #CONSUMPTION view
VDM.private true view
EndUserText.label Serial Number that can be split at an Order Operation view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalID I_MfgOrdOpActiveInitialSFI OrderInternalID Plan No.f.Oper.
KEY OrderOperationInternalID I_MfgOrdOpActiveInitialSFI OrderOperationInternalID Plan No.f.Oper.
KEY ShopFloorItem I_MfgOrdOpActiveInitialSFI ShopFloorItem Serial.Mat. ID
KEY Material Vehicle Model
KEY SerialNumber Serial Number
ManufacturingOrder Order
ManufacturingOrderOperation I_MfgOrdOpActiveInitialSFI ManufacturingOrderOperation Transaction
Plant I_MfgOrdOpActiveInitialSFI Plant Valuation Area
OrderInternalID Plan No.f.Oper.
KEY OrderOperationInternalID I_OrderOperationBasic OrderOperationInternalID Plan No.f.Oper.
KEY ShopFloorItem Serial.Mat. ID
KEY Material I_SerialNumberManufacturingOrd Material Vehicle Model
KEY SerialNumber I_SerialNumberManufacturingOrd SerialNumber Serial Number
ManufacturingOrder I_SerialNumberManufacturingOrd ManufacturingOrder Order
ManufacturingOrderOperation I_OrderOperationBasic Operation Transaction
Plant I_OrderOperationBasic Plant Valuation Area
_OrderInternalID I_LogisticsOrderBasic _OrderInternalID

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_MfgOrdOpSerialNumberForSplit.
-- 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: PMPEORDOPSERSPLT

CREATE VIEW P_MfgOrdOpSerialNumberForSplit AS
SELECT
  MfgOrdOpActiveInitialSFI.OrderInternalID AS OrderInternalID,
  MfgOrdOpActiveInitialSFI.OrderOperationInternalID AS OrderOperationInternalID,
  MfgOrdOpActiveInitialSFI.ShopFloorItem AS ShopFloorItem,
  MfgOrdOpActiveInitialSFI._ShopFloorItem.Material AS Material,
  MfgOrdOpActiveInitialSFI._ShopFloorItem.SerialNumber AS SerialNumber,
  MfgOrdOpActiveInitialSFI._ShopFloorItem.ManufacturingOrder AS ManufacturingOrder,
  MfgOrdOpActiveInitialSFI.ManufacturingOrderOperation AS ManufacturingOrderOperation,
  MfgOrdOpActiveInitialSFI.Plant AS Plant,
  LogisticsOrderBasic._OrderInternalID AS _OrderInternalID
FROM I_MfgOrdOpActiveInitialSFI AS MfgOrdOpActiveInitialSFI
INNER JOIN I_LogisticsOrderBasic AS LogisticsOrderBasic ON /* join condition not captured in parsed metadata */
INNER JOIN I_OrderOperationBasic AS OrderOperationBasic ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): I_SerialNumberManufacturingOrd
;