I_ChangeRecdRefTmplRoutingTP_2

DDL: I_CHANGERECDREFTMPLROUTINGTP_2 SQL: ICRREFTMPLRTGTP2 Type: view TRANSACTIONAL

Change Record Reference Object Template Routing

I_ChangeRecdRefTmplRoutingTP_2 is a Transactional CDS View that provides data about "Change Record Reference Object Template Routing" in SAP S/4HANA. It reads from 1 data source (I_ChgRecdRefTmplRoutingBsc) and exposes 17 fields with key field ChangeRecordReferenceUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ChgRecdRefTmplRoutingBsc reference_template_routing from

Associations (1)

CardinalityTargetAliasCondition
[0..1] E_ChgRecdRefTmplRoutingBsc _TmplRoutingExtension $projection.ChangeRecordReferenceUUID = _TmplRoutingExtension.ChangeRecordReferenceUUID

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICRREFTMPLRTGTP2 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XXL view
EndUserText.label Change Record Reference Object Template Routing view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordReferenceUUID I_ChgRecdRefTmplRoutingBsc ChangeRecordReferenceUUID UUID
ChangeRecordUUID I_ChgRecdRefTmplRoutingBsc ChangeRecordUUID NodeID
ChangeRecord I_ChgRecdRefTmplRoutingBsc ChangeRecord Char20
ChangeRecordReferenceType I_ChgRecdRefTmplRoutingBsc ChangeRecordReferenceType Object Type
ChangeRecordReferenceSubtype I_ChgRecdRefTmplRoutingBsc ChangeRecordReferenceSubtype Subtype
ChangeRecordRefObjectUUID I_ChgRecdRefTmplRoutingBsc ChangeRecordRefObjectUUID GUID-Key
ChangeRecordReference I_ChgRecdRefTmplRoutingBsc ChangeRecordReference Ref. Object ID
ParentChangeRecordRefUUID I_ChgRecdRefTmplRoutingBsc ParentChangeRecordRefUUID Node ID
IsMainReference I_ChgRecdRefTmplRoutingBsc IsMainReference Main Reference
CreatedByUser I_ChgRecdRefTmplRoutingBsc CreatedByUser User Name
CreationDateTime I_ChgRecdRefTmplRoutingBsc CreationDateTime Timestamp
LastChangedByUser I_ChgRecdRefTmplRoutingBsc LastChangedByUser User Name
LastChangeDateTime I_ChgRecdRefTmplRoutingBsc LastChangeDateTime Timestamp
ChangeRecordItemRelevance I_ChgRecdRefTmplRoutingBsc ChangeRecordItemRelevance Relevance
ChangeRecordVirtualRefInd I_ChgRecdRefTmplRoutingBsc ChangeRecordVirtualRefInd Virtual Reference
Plant Routing Plant Valuation Area
_ChangeRecordAPITP _ChangeRecordAPITP

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_ChangeRecdRefTmplRoutingTP_2.
-- 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: ICRREFTMPLRTGTP2

CREATE VIEW I_ChangeRecdRefTmplRoutingTP_2 AS
SELECT
  reference_template_routing.ChangeRecordReferenceUUID AS ChangeRecordReferenceUUID,
  reference_template_routing.ChangeRecordUUID AS ChangeRecordUUID,
  reference_template_routing.ChangeRecord AS ChangeRecord,
  reference_template_routing.ChangeRecordReferenceType AS ChangeRecordReferenceType,
  reference_template_routing.ChangeRecordReferenceSubtype AS ChangeRecordReferenceSubtype,
  reference_template_routing.ChangeRecordRefObjectUUID AS ChangeRecordRefObjectUUID,
  reference_template_routing.ChangeRecordReference AS ChangeRecordReference,
  reference_template_routing.ParentChangeRecordRefUUID AS ParentChangeRecordRefUUID,
  reference_template_routing.IsMainReference AS IsMainReference,
  reference_template_routing.CreatedByUser AS CreatedByUser,
  reference_template_routing.CreationDateTime AS CreationDateTime,
  reference_template_routing.LastChangedByUser AS LastChangedByUser,
  reference_template_routing.LastChangeDateTime AS LastChangeDateTime,
  reference_template_routing.ChangeRecordItemRelevance AS ChangeRecordItemRelevance,
  reference_template_routing.ChangeRecordVirtualRefInd AS ChangeRecordVirtualRefInd,
  Routing.Plant AS Plant
FROM I_ChgRecdRefTmplRoutingBsc AS reference_template_routing
LEFT OUTER JOIN E_ChgRecdRefTmplRoutingBsc AS _TmplRoutingExtension ON ChangeRecordReferenceUUID = _TmplRoutingExtension.ChangeRecordReferenceUUID  -- association [0..1]
;