A_ChangeRecordDescription

DDL: A_CHANGERECORDDESCRIPTION Type: view_entity COMPOSITE

Change Record Description

A_ChangeRecordDescription is a Composite CDS View that provides data about "Change Record Description" in SAP S/4HANA. It reads from 1 data source (I_ChangeRecordDescriptionTP_2) and exposes 4 fields with key fields ChangeRecordUUID, Language.

Data Sources (1)

SourceAliasJoin Type
I_ChangeRecordDescriptionTP_2 Description from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Change Record Description view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ChangeRecordUUID view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordUUID I_ChangeRecordDescriptionTP_2 ChangeRecordUUID NodeID
KEY Language I_ChangeRecordDescriptionTP_2 Language Report Text Language
ChgRecordDescriptionText I_ChangeRecordDescriptionTP_2 ChgRecordDescriptionText
_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 A_ChangeRecordDescription.
-- 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 A_ChangeRecordDescription AS
SELECT
  Description.ChangeRecordUUID AS ChangeRecordUUID,
  Description.Language AS Language,
  Description.ChgRecordDescriptionText AS ChgRecordDescriptionText
FROM I_ChangeRecordDescriptionTP_2 AS Description
;