P_ChgImpactOrderStatus

DDL: P_CHGIMPACTORDERSTATUS SQL: PCHIORDERSTS Type: view COMPOSITE Package: MPE_PLAN_CIMA

Production Order Status

P_ChgImpactOrderStatus is a Composite CDS View that provides data about "Production Order Status" in SAP S/4HANA. It reads from 2 data sources (I_MfgOrderBasic, I_StatusObjectStatus) and exposes 9 fields with key field ManufacturingOrder. Part of development package MPE_PLAN_CIMA.

Data Sources (2)

SourceAliasJoin Type
I_MfgOrderBasic aufk from
I_StatusObjectStatus jest inner

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PCHIORDERSTS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ManufacturingOrder I_MfgOrderBasic ManufacturingOrder Order
ManufacturingOrderCategory I_MfgOrderBasic ManufacturingOrderCategory Order Category
ManufacturingObject I_MfgOrderBasic ObjectInternalID Object number
StatusObject StatusObject Status Object
StatusCode StatusCode Statuscode
StatusProfile StatusProfile Status Profile
_StatusObject _StatusObject
_StatusCode _StatusCode
_StatusProfile _StatusProfile

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_ChgImpactOrderStatus.
-- 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: PCHIORDERSTS

CREATE VIEW P_ChgImpactOrderStatus AS
SELECT
  aufk.ManufacturingOrder AS ManufacturingOrder,
  aufk.ManufacturingOrderCategory AS ManufacturingOrderCategory,
  aufk.ObjectInternalID AS ManufacturingObject,
  StatusObject,
  StatusCode,
  StatusProfile
FROM I_MfgOrderBasic AS aufk
INNER JOIN I_StatusObjectStatus AS jest ON /* join condition not captured in parsed metadata */
;