I_ChgImpactOrdSpcfcRtg

DDL: I_CHGIMPACTORDSPCFCRTG SQL: ICHGIMPRODORROU Type: view COMPOSITE

Order Specific Routings for POs

I_ChgImpactOrdSpcfcRtg is a Composite CDS View that provides data about "Order Specific Routings for POs" in SAP S/4HANA. It reads from 2 data sources (I_ManufacturingOrder, I_BillOfOperationsVersion) and exposes 5 fields with key field ManufacturingOrder.

Data Sources (2)

SourceAliasJoin Type
I_ManufacturingOrder MfgOrder from
I_BillOfOperationsVersion OrderSpecificRouting left_outer

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICHGIMPRODORROU view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Order Specific Routings for POs view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ManufacturingOrder I_ManufacturingOrder ManufacturingOrder Order
OrderID I_BillOfOperationsVersion OrderID Order ID
OrdSpcfcBOOGroup I_BillOfOperationsVersion BillOfOperationsGroup Group
OrdSpcfcBOOType I_BillOfOperationsVersion BillOfOperationsType Task List Type
OrdSpcfcBOOVariant I_BillOfOperationsVersion BillOfOperationsVariant Group Counter

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_ChgImpactOrdSpcfcRtg.
-- 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: ICHGIMPRODORROU

CREATE VIEW I_ChgImpactOrdSpcfcRtg AS
SELECT
  MfgOrder.ManufacturingOrder AS ManufacturingOrder,
  OrderSpecificRouting.OrderID AS OrderID,
  OrderSpecificRouting.BillOfOperationsGroup AS OrdSpcfcBOOGroup,
  OrderSpecificRouting.BillOfOperationsType AS OrdSpcfcBOOType,
  OrderSpecificRouting.BillOfOperationsVariant AS OrdSpcfcBOOVariant
FROM I_ManufacturingOrder AS MfgOrder
LEFT OUTER JOIN I_BillOfOperationsVersion AS OrderSpecificRouting ON /* join condition not captured in parsed metadata */
;