C_ProdnModRefChangeRecord

DDL: C_PRODNMODREFCHANGERECORD Type: view_entity CONSUMPTION

Reference Change Records

C_ProdnModRefChangeRecord is a Consumption CDS View that provides data about "Reference Change Records" in SAP S/4HANA. It reads from 1 data source (I_ProdnModRefChangeRecord) and exposes 12 fields with key fields ProductionModelUUID, BillOfOperationsVersion, ChangeRecordUUID. It is exposed through 2 OData services (UI_MATL_PRODNMODEL_MANAGE, UI_SLSORD_PRODNMODEL_MANAGE).

Data Sources (1)

SourceAliasJoin Type
I_ProdnModRefChangeRecord I_ProdnModRefChangeRecord from

Annotations (13)

NameValueLevelField
EndUserText.label Reference Change Records view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
UI.createHidden true view
UI.deleteHidden true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
UI.headerInfo.typeName Change Record view
UI.headerInfo.typeNamePlural Change Records view
UI.headerInfo.title.value ChangeRecord view

OData Services (2)

ServiceBindingVersionContractRelease
UI_MATL_PRODNMODEL_MANAGE UI_MATL_PRODNMODEL_MANAGE V4 C1 NOT_RELEASED
UI_SLSORD_PRODNMODEL_MANAGE UI_SLSORD_PRODNMODEL_MANAGE V4 C1 NOT_RELEASED

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY ProductionModelUUID ProductionModelUUID Prodn Model UUID
KEY BillOfOperationsVersion BillOfOperationsVersion Routing Version
KEY ChangeRecordUUID ChangeRecordUUID NodeID
ChangeRecord ChangeRecord Char20
ChangeRecordType ChangeRecordType Record Type
ChangeRecordTypeDesc ChangeRecordTypeDesc
ChgRecordDescriptionText ChgRecordDescriptionText
ChangeRecordStatus ChangeRecordStatus
BillOfOperationsType BillOfOperationsType Task List Type
BillOfMaterialCategory BillOfMaterialCategory BOM category
BillOfMaterialVariantUsage BillOfMaterialVariantUsage Usage
Plant Plant Valuation Area

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_ProdnModRefChangeRecord.
-- 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_ProdnModRefChangeRecord AS
SELECT
  ProductionModelUUID,
  BillOfOperationsVersion,
  ChangeRecordUUID,
  ChangeRecord,
  ChangeRecordType,
  ChangeRecordTypeDesc,
  ChgRecordDescriptionText,
  ChangeRecordStatus,
  BillOfOperationsType,
  BillOfMaterialCategory,
  BillOfMaterialVariantUsage,
  Plant
FROM I_ProdnModRefChangeRecord
;