C_ChangeRecordProdnRoutingVH

DDL: C_CHANGERECORDPRODNROUTINGVH Type: view_entity CONSUMPTION Package: VDM_PLMB_CR

Production Routing Value Help

C_ChangeRecordProdnRoutingVH is a Consumption CDS View that provides data about "Production Routing Value Help" in SAP S/4HANA. It reads from 1 data source (I_BillOfOperations) and exposes 8 fields with key fields BillOfOperationsGroup, BillOfOperationsType, BillOfOperationsVariant. Part of development package VDM_PLMB_CR.

Data Sources (1)

SourceAliasJoin Type
I_BillOfOperations _BillOfOperations from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
EndUserText.label Production Routing Value Help view
ObjectModel.representativeKey BillOfOperationsGroup view
Analytics.technicalName CPRODNROUTINGVH view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsGroup Group
KEY BillOfOperationsType BillOfOperationsType Task List Type
KEY BillOfOperationsVariant BillOfOperationsVariant Group Counter
ResponsiblePlannerGroup
Plant
BillOfOperationsDesc
BillOfOperationsUsage
BillOfOperationsStatus

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 C_ChangeRecordProdnRoutingVH.
-- 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 C_ChangeRecordProdnRoutingVH AS
SELECT
  cast( BillOfOperationsGroup as plnnr preserving type) AS BillOfOperationsGroup,
  BillOfOperationsType,
  BillOfOperationsVariant,
  _BillOfOperations._BillOfOperationsChangeState[1: ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date].ResponsiblePlannerGroup AS ResponsiblePlannerGroup,
  cast( _BillOfOperations._BillOfOperationsChangeState[1: ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date].Plant as werks_d preserving type) AS Plant,
  cast( _BillOfOperations._BillOfOperationsChangeState[1: ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date].BillOfOperationsDesc as planaltext preserving type) AS BillOfOperationsDesc,
  _BillOfOperations._BillOfOperationsChangeState[1: ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date].BillOfOperationsUsage AS BillOfOperationsUsage,
  cast( _BillOfOperations._BillOfOperationsChangeState[1: ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date].BillOfOperationsStatus as plnst preserving type) AS BillOfOperationsStatus
FROM I_BillOfOperations AS _BillOfOperations
;