I_OrderOperationStatus

DDL: I_ORDEROPERATIONSTATUS SQL: IPPORDEROPSTS Type: view COMPOSITE

Order Operation Status

I_OrderOperationStatus is a Composite CDS View (Dimension) that provides data about "Order Operation Status" in SAP S/4HANA. It reads from 1 data source (P_OrderOperationStatus) and exposes 18 fields with key fields OrderInternalID, OrderOperationInternalID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_OrderOperationStatus P_OrderOperationStatus from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_OrderInternalID _OrderInternalID $projection.OrderInternalID = _OrderInternalID.OrderInternalID

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IPPORDEROPSTS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey OrderOperationInternalID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
EndUserText.label Order Operation Status view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalID OrderInternalID Plan No.f.Oper.
KEY OrderOperationInternalID OrderOperationInternalID
Plant Plant Valuation Area
ObjectInternalID ObjectInternalID Object number
OperationIsCreated
OperationIsReleased
OperationIsPrinted
OperationIsConfirmed
OperationIsPartiallyConfirmed
OperationIsDeleted
OperationIsTechlyCompleted
OperationIsClosed
OperationIsConfdByMilestone
OperationIsManuallyConfirmed
OperationIsScheduled
OperationIsPartiallyDelivered
OperationIsDelivered
_OrderInternalID _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 I_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.
-- SQL view name: IPPORDEROPSTS

CREATE VIEW I_OrderOperationStatus AS
SELECT
  OrderInternalID,
  OrderOperationInternalID,
  Plant,
  ObjectInternalID,
  max(OperationIsCreated) AS OperationIsCreated,
  max(OperationIsReleased) AS OperationIsReleased,
  max(OperationIsPrinted) AS OperationIsPrinted,
  max(OperationIsConfirmed) AS OperationIsConfirmed,
  max(OperationIsPartiallyConfirmed) AS OperationIsPartiallyConfirmed,
  max(OperationIsDeleted) AS OperationIsDeleted,
  max(OperationIsTechlyCompleted) AS OperationIsTechlyCompleted,
  max(OperationIsClosed) AS OperationIsClosed,
  max(OperationIsConfdByMilestone) AS OperationIsConfdByMilestone,
  max(OperationIsManuallyConfirmed) AS OperationIsManuallyConfirmed,
  max(OperationIsScheduled) AS OperationIsScheduled,
  max(OperationIsPartiallyDelivered) AS OperationIsPartiallyDelivered,
  max(OperationIsDelivered) AS OperationIsDelivered
FROM P_OrderOperationStatus
LEFT OUTER JOIN I_OrderInternalID AS _OrderInternalID ON OrderInternalID = _OrderInternalID.OrderInternalID  -- association [1..1]
;