I_ProdnModRlvtChgRecordType

DDL: I_PRODNMODRLVTCHGRECORDTYPE Type: view_entity COMPOSITE

Prodn Mod Relevant Change Record Type

I_ProdnModRlvtChgRecordType is a Composite CDS View that provides data about "Prodn Mod Relevant Change Record Type" in SAP S/4HANA. It reads from 2 data sources (I_ChgRecdTypeConfiguration, I_ChangeRecordItemRel) and exposes 3 fields with key field ChangeRecordType.

Data Sources (2)

SourceAliasJoin Type
I_ChgRecdTypeConfiguration NumberRangeInterval inner
I_ChangeRecordItemRel ProdModelRelvtChngRecdType inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Prodn Mod Relevant Change Record Type view
VDM.viewType #COMPOSITE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordType ChangeRecordType ChangeRecordType Record Type
ChangeRecordTypeDesc ChangeRecordType ChangeRecordTypeDesc
IsExternalNumberRange I_ChgRecdTypeConfiguration IsExternalNumberRange External NR

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_ProdnModRlvtChgRecordType.
-- 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 I_ProdnModRlvtChgRecordType AS
SELECT
  ChangeRecordType.ChangeRecordType AS ChangeRecordType,
  ChangeRecordType.ChangeRecordTypeDesc AS ChangeRecordTypeDesc,
  NumberRangeInterval.IsExternalNumberRange AS IsExternalNumberRange
INNER JOIN I_ChangeRecordItemRel AS ProdModelRelvtChngRecdType ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChgRecdTypeConfiguration AS NumberRangeInterval ON /* join condition not captured in parsed metadata */
;