P_ProcOrdMgmtOpCompSpltBat_2

DDL: P_PROCORDMGMTOPCOMPSPLTBAT_2 Type: view_entity COMPOSITE

P_ProcOrdMgmtOpCompSpltBat_2 is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_ProcOrdMgmtOpCompBasic) and exposes 6 fields with key fields Reservation, ReservationItem, RecordType.

Data Sources (1)

SourceAliasJoin Type
I_ProcOrdMgmtOpCompBasic comp from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Reservation I_ProcOrdMgmtOpCompBasic Reservation Reservation
KEY ReservationItem I_ProcOrdMgmtOpCompBasic ReservationItem Reservation Item
KEY RecordType I_ProcOrdMgmtOpCompBasic RecordType Reservation Record Type
LeadingReservationItem I_ProcOrdMgmtOpCompBasic LeadingReservationItem
Batch I_ProcOrdMgmtOpCompBasic Batch Lot No.
ProcessOrder I_ProcOrdMgmtOpCompBasic ManufacturingOrder Order

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_ProcOrdMgmtOpCompSpltBat_2.
-- 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_ProcOrdMgmtOpCompSpltBat_2 AS
SELECT
  comp.Reservation AS Reservation,
  comp.ReservationItem AS ReservationItem,
  comp.RecordType AS RecordType,
  comp.LeadingReservationItem AS LeadingReservationItem,
  comp.Batch AS Batch,
  comp.ManufacturingOrder AS ProcessOrder
FROM I_ProcOrdMgmtOpCompBasic AS comp
;