E_RoutingHeader

DDL: E_ROUTINGHEADER Type: view_entity EXTENSION

Routing Header - Extension

E_RoutingHeader is a Extension CDS View that provides data about "Routing Header - Extension" in SAP S/4HANA. It reads from 1 data source (plko) and exposes 4 fields with key fields BillOfOperationsType, BillOfOperationsGroup, BillOfOperationsVariant, BOOInternalVersionCounter.

Data Sources (1)

SourceAliasJoin Type
plko Persistence from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #EXTENSION view
EndUserText.label Routing Header - Extension view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType plnty Task List Type
KEY BillOfOperationsGroup plnnr Task List Group
KEY BillOfOperationsVariant plnal Referenced BOO Variant
KEY BOOInternalVersionCounter 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_RoutingHeader.
-- 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_RoutingHeader AS
SELECT
  plnty AS BillOfOperationsType,
  plnnr AS BillOfOperationsGroup,
  plnal AS BillOfOperationsVariant,
  zaehl AS BOOInternalVersionCounter
FROM plko AS Persistence
;