I_NotifChgRecdType

DDL: I_NOTIFCHGRECDTYPE Type: view_entity COMPOSITE

Chg Recd types for Notification

I_NotifChgRecdType is a Composite CDS View that provides data about "Chg Recd types for Notification" in SAP S/4HANA. It reads from 2 data sources (I_ChangeRecordItemRel, I_ChangeRecordRefObj) and exposes 2 fields with key field ChangeRecordType.

Data Sources (2)

SourceAliasJoin Type
I_ChangeRecordItemRel ItemRelNtf inner
I_ChangeRecordRefObj RefObjNtf inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #COMPOSITE view
EndUserText.label Chg Recd types for Notification view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordType CRType ChangeRecordType Record Type
ChangeRecordTypeDesc CRType ChangeRecordTypeDesc

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_NotifChgRecdType.
-- 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_NotifChgRecdType AS
SELECT
  CRType.ChangeRecordType AS ChangeRecordType,
  CRType.ChangeRecordTypeDesc AS ChangeRecordTypeDesc
INNER JOIN I_ChangeRecordRefObj AS RefObjNtf ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordItemRel AS ItemRelNtf ON /* join condition not captured in parsed metadata */
;