I_TmplRoutingChangeRecordType

DDL: I_TMPLROUTINGCHANGERECORDTYPE SQL: ITERCRTYPE Type: view BASIC

Change Record Types for Template Routing

I_TmplRoutingChangeRecordType is a Basic CDS View that provides data about "Change Record Types for Template Routing" in SAP S/4HANA. It reads from 3 data sources (I_ChangeRecordType, I_ChangeRecordItemRel, I_ChangeRecordRefObj) and exposes 3 fields with key fields ChangeRecordType, ChangeRecordItemRelevance.

Data Sources (3)

SourceAliasJoin Type
I_ChangeRecordType CRType from
I_ChangeRecordItemRel ItemRel inner
I_ChangeRecordRefObj RefObj inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ITERCRTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
EndUserText.label Change Record Types for Template Routing view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordType I_ChangeRecordType ChangeRecordType Record Type
KEY ChangeRecordItemRelevance I_ChangeRecordItemRel ChangeRecordItemRelevance Relevance
ChangeRecordTypeDesc I_ChangeRecordType 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_TmplRoutingChangeRecordType.
-- 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.
-- SQL view name: ITERCRTYPE

CREATE VIEW I_TmplRoutingChangeRecordType AS
SELECT
  CRType.ChangeRecordType AS ChangeRecordType,
  ItemRel.ChangeRecordItemRelevance AS ChangeRecordItemRelevance,
  CRType.ChangeRecordTypeDesc AS ChangeRecordTypeDesc
FROM I_ChangeRecordType AS CRType
INNER JOIN I_ChangeRecordRefObj AS RefObj ON /* join condition not captured in parsed metadata */
INNER JOIN I_ChangeRecordItemRel AS ItemRel ON /* join condition not captured in parsed metadata */
;