R_ChgRecdRefLabelSetTP_2

DDL: R_CHGRECDREFLABELSETTP_2 Type: view_entity TRANSACTIONAL

Label Assignments to Change Records - TP

R_ChgRecdRefLabelSetTP_2 is a Transactional CDS View that provides data about "Label Assignments to Change Records - TP" in SAP S/4HANA. It reads from 1 data source (I_ChangeRecdRefLabelSetTP_2) and exposes 14 fields with key field ChangeRecordReferenceUUID.

Data Sources (1)

SourceAliasJoin Type
I_ChangeRecdRefLabelSetTP_2 ChangeRecordReferenceLBLTP from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view
EndUserText.label Label Assignments to Change Records - TP view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordReferenceUUID ChangeRecordReferenceUUID UUID
ChangeRecord ChangeRecord Char20
ChangeRecordUUID ChangeRecordUUID NodeID
ChangeRecordReferenceType ChangeRecordReferenceType Object Type
LabelSetSpecification
LabelSetAlternativeNumber I_ChangeRecdRefLabelSetTP_2 LabelSetAlternativeNumber
LabelSetVersionNumber I_ChangeRecdRefLabelSetTP_2 LabelSetVersionNumber
ChangeRecordItemRelevance ChangeRecordItemRelevance Relevance
ChangeRecordItemProcgStatus ChangeRecordItemProcgStatus Processing Status
CreatedByUser CreatedByUser User Name
CreationDateTime CreationDateTime Timestamp
LastChangedByUser LastChangedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp
_ChangeRecord _ChangeRecord

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 R_ChgRecdRefLabelSetTP_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.

CREATE VIEW R_ChgRecdRefLabelSetTP_2 AS
SELECT
  ChangeRecordReferenceUUID,
  ChangeRecord,
  ChangeRecordUUID,
  ChangeRecordReferenceType,
  cast( ChangeRecordReferenceLBLTP.LabelSetSpecification as abap.char( 12 ) ) AS LabelSetSpecification,
  ChangeRecordReferenceLBLTP.LabelSetAlternativeNumber AS LabelSetAlternativeNumber,
  ChangeRecordReferenceLBLTP.LabelSetVersionNumber AS LabelSetVersionNumber,
  ChangeRecordItemRelevance,
  ChangeRecordItemProcgStatus,
  CreatedByUser,
  CreationDateTime,
  LastChangedByUser,
  LastChangeDateTime
FROM I_ChangeRecdRefLabelSetTP_2 AS ChangeRecordReferenceLBLTP
;