I_ChgImpactPlngRoutingOp

DDL: I_CHGIMPACTPLNGROUTINGOP SQL: ICHGIMPLNGROUOP Type: view BASIC

Planning Routing Operation

I_ChgImpactPlngRoutingOp is a Basic CDS View that provides data about "Planning Routing Operation" in SAP S/4HANA. It reads from 2 data sources (plas, I_BillOfOperationsOpBasic) and exposes 28 fields with key fields BillOfOperationsType, BillOfOperationsGroup, BOOOperationInternalID, BillOfOperationsVariant, BOOOpInternalVersionCounter.

Data Sources (2)

SourceAliasJoin Type
plas OperationSelection inner
I_BillOfOperationsOpBasic RoutingOperation from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICHGIMPLNGROUOP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Planning Routing Operation view

Fields (28)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType I_BillOfOperationsOpBasic BillOfOperationsType Task List Type
KEY BillOfOperationsGroup I_BillOfOperationsOpBasic BillOfOperationsGroup Group
KEY BOOOperationInternalID I_BillOfOperationsOpBasic BOOOperationInternalID Task list node
KEY BillOfOperationsVariant plas plnal Referenced BOO Variant
KEY BOOOpInternalVersionCounter I_BillOfOperationsOpBasic BOOOpInternalVersionCounter Counter
BillOfOperationsSequence plas plnfl Sequence
BillOfOperationsVersion I_BillOfOperationsOpBasic BillOfOperationsVersion Routing Version
WorkCenterInternalID I_BillOfOperationsOpBasic WorkCenterInternalID Work Center
WorkCenterTypeCode I_BillOfOperationsOpBasic WorkCenterTypeCode Object Type
IsDeleted plas loekz Status
IsImplicitlyDeleted plas loekz_inherited Deletion Ind.
OperationExternalID I_BillOfOperationsOpBasic OperationExternalID Ext. Oper. ID
Operation I_BillOfOperationsOpBasic Operation_2
OperationText
LongTextLanguageCode I_BillOfOperationsOpBasic LongTextLanguageCode Language
Plant I_BillOfOperationsOpBasic Plant Valuation Area
OperationControlProfile I_BillOfOperationsOpBasic OperationControlProfile Control Key
OperationStandardTextCode I_BillOfOperationsOpBasic OperationStandardTextCode Std Text Key
BillOfOperationsRefType
BillOfOperationsRefGroup I_BillOfOperationsOpBasic BillOfOperationsRefGroup
BillOfOperationsRefVariant I_BillOfOperationsOpBasic BillOfOperationsRefVariant
CreationDate
CreatedByUser I_BillOfOperationsOpBasic CreatedByUser User Name
LastChangeDate I_BillOfOperationsOpBasic LastChangeDate Time Stamp
LastChangedByUser I_BillOfOperationsOpBasic LastChangedByUser User Name
aennrasChangeNumber
ValidityStartDate plas datuv Valid-from date
ValidityEndDate plas valid_to Validity End Time

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_ChgImpactPlngRoutingOp.
-- 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: ICHGIMPLNGROUOP

CREATE VIEW I_ChgImpactPlngRoutingOp AS
SELECT
  RoutingOperation.BillOfOperationsType AS BillOfOperationsType,
  RoutingOperation.BillOfOperationsGroup AS BillOfOperationsGroup,
  RoutingOperation.BOOOperationInternalID AS BOOOperationInternalID,
  OperationSelection.plnal AS BillOfOperationsVariant,
  RoutingOperation.BOOOpInternalVersionCounter AS BOOOpInternalVersionCounter,
  OperationSelection.plnfl AS BillOfOperationsSequence,
  RoutingOperation.BillOfOperationsVersion AS BillOfOperationsVersion,
  RoutingOperation.WorkCenterInternalID AS WorkCenterInternalID,
  RoutingOperation.WorkCenterTypeCode AS WorkCenterTypeCode,
  OperationSelection.loekz AS IsDeleted,
  OperationSelection.loekz_inherited AS IsImplicitlyDeleted,
  RoutingOperation.OperationExternalID AS OperationExternalID,
  RoutingOperation.Operation_2 AS Operation,
  RoutingOperation.LongTextLanguageCode AS LongTextLanguageCode,
  RoutingOperation.Plant AS Plant,
  RoutingOperation.OperationControlProfile AS OperationControlProfile,
  RoutingOperation.OperationStandardTextCode AS OperationStandardTextCode,
  RoutingOperation.BillOfOperationsRefGroup AS BillOfOperationsRefGroup,
  RoutingOperation.BillOfOperationsRefVariant AS BillOfOperationsRefVariant,
  RoutingOperation.CreatedByUser AS CreatedByUser,
  RoutingOperation.LastChangeDate AS LastChangeDate,
  RoutingOperation.LastChangedByUser AS LastChangedByUser,
  OperationSelection.datuv AS ValidityStartDate,
  OperationSelection.valid_to AS ValidityEndDate
FROM I_BillOfOperationsOpBasic AS RoutingOperation
INNER JOIN plas AS OperationSelection ON /* join condition not captured in parsed metadata */
;