P_OrderOperationStatus

DDL: P_ORDEROPERATIONSTATUS Type: view_entity COMPOSITE

P_OrderOperationStatus is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_OrderOperationBasic, I_StatusObjectStatus) and exposes 5 fields with key fields OrderInternalID, OrderOperationInternalID.

Data Sources (2)

SourceAliasJoin Type
I_OrderOperationBasic afvc from
I_StatusObjectStatus jest inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalID I_OrderOperationBasic OrderInternalID Plan No.f.Oper.
KEY OrderOperationInternalID I_OrderOperationBasic OrderOperationInternalID Plan No.f.Oper.
Plant I_OrderOperationBasic Plant Valuation Area
ObjectInternalID I_OrderOperationBasic ObjectInternalID Object number
_OrderInternalID I_OrderOperationBasic _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_OrderOperationStatus.
-- 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_OrderOperationStatus AS
SELECT
  afvc.OrderInternalID AS OrderInternalID,
  afvc.OrderOperationInternalID AS OrderOperationInternalID,
  afvc.Plant AS Plant,
  afvc.ObjectInternalID AS ObjectInternalID,
  afvc._OrderInternalID AS _OrderInternalID
FROM I_OrderOperationBasic AS afvc
INNER JOIN I_StatusObjectStatus AS jest ON /* join condition not captured in parsed metadata */
;