E_ProductionRoutingOperation

DDL: E_PRODUCTIONROUTINGOPERATION Type: view_entity EXTENSION Package: ODATA_PP_ROUTING_API

Production Routing Operation - Extn

E_ProductionRoutingOperation is a Extension CDS View that provides data about "Production Routing Operation - Extn" in SAP S/4HANA. It reads from 1 data source (plpo) and exposes 4 fields with key fields BillOfOperationsType, ProductionRoutingGroup, ProductionRoutingOpIntID, ProductionRoutingOpIntVersion. Part of development package ODATA_PP_ROUTING_API.

Data Sources (1)

SourceAliasJoin Type
plpo Persistence from

Annotations (7)

NameValueLevelField
EndUserText.label Production Routing Operation - Extn view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #EXTENSION view
Feature FTGL_PRODNRTG_KEYUSER_EXTNBLTY view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType plpo plnty Task List Type
KEY ProductionRoutingGroup plpo plnnr Task List Group
KEY ProductionRoutingOpIntID plpo plnkn Task list node
KEY ProductionRoutingOpIntVersion plpo zaehl Sort pos.

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 E_ProductionRoutingOperation.
-- 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 E_ProductionRoutingOperation AS
SELECT
  Persistence.plnty AS BillOfOperationsType,
  Persistence.plnnr AS ProductionRoutingGroup,
  Persistence.plnkn AS ProductionRoutingOpIntID,
  Persistence.zaehl AS ProductionRoutingOpIntVersion
FROM plpo AS Persistence
;