Deprecated SAP_INTERNAL_API
This CDS view is deprecated in S/4HANA. Use I_ChangeDocChangeInd instead. View all deprecated CDS views →

I_ChangeDocItemChangeType

DDL: I_CHANGEDOCITEMCHANGETYPE SQL: ICHGDOCITMCT Type: view BASIC

Change Document Item Change Type

I_ChangeDocItemChangeType is a Basic CDS View (Dimension) that provides data about "Change Document Item Change Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ChangeDocItemChangeType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChgDocItemChangeTypeText _Text $projection.ChangeDocItemChangeType = _Text.ChangeDocItemChangeType

Annotations (13)

NameValueLevelField
ObjectModel.representativeKey ChangeDocItemChangeType view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Change Document Item Change Type view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ICHGDOCITMCT view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ChangeDocChangeInd view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ChangeDocItemChangeType
_Text _Text

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_ChangeDocItemChangeType.
-- 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: ICHGDOCITMCT

CREATE VIEW I_ChangeDocItemChangeType AS
SELECT
  cast ( substring( domvalue_l, 1, 2 ) as cdchngind ) AS ChangeDocItemChangeType
FROM dd07l
LEFT OUTER JOIN I_ChgDocItemChangeTypeText AS _Text ON ChangeDocItemChangeType = _Text.ChangeDocItemChangeType  -- association [0..*]
;