I_ChangeRecordTypeText

DDL: I_CHANGERECORDTYPETEXT SQL: ICHGRCDTYPT Type: view BASIC

Change Record Type Text

I_ChangeRecordTypeText is a Basic CDS View that provides data about "Change Record Type Text" in SAP S/4HANA. It reads from 1 data source (/iam/c_issuetypt) and exposes 5 fields with key fields Language, ChangeRecordType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/iam/c_issuetypt /iam/c_issuetypt from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ChangeRecordType _ChangeRecordType $projection.ChangeRecordType = _ChangeRecordType.ChangeRecordType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICHGRCDTYPT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Change Record Type Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ChangeRecordType view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY ChangeRecordType issue_type Issue Type
ChangeRecordTypeDesc description Well Code Des.
_ChangeRecordType _ChangeRecordType
_Language _Language

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_ChangeRecordTypeText.
-- 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: ICHGRCDTYPT

CREATE VIEW I_ChangeRecordTypeText AS
SELECT
  langu AS Language,
  issue_type AS ChangeRecordType,
  description AS ChangeRecordTypeDesc
FROM /iam/c_issuetypt
LEFT OUTER JOIN I_ChangeRecordType AS _ChangeRecordType ON ChangeRecordType = _ChangeRecordType.ChangeRecordType  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;