I_ChangeDocChangeInd

DDL: I_CHANGEDOCHANGEIND SQL: IBCCHANGEIND Type: view BASIC

Änderungsart

I_ChangeDocChangeInd is a Basic CDS View that provides data about "Änderungsart" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, Value.

Data Sources (1)

SourceAliasJoin Type
dd07t ChangeType from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName IBCCHANGEIND view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Änderungsart view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.resultSet.sizeCategory #XS view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage Lang.
KEY Value dd07t domvalue_l Änderungsart
Text dd07t ddtext Änderungsart

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_ChangeDocChangeInd.
-- 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: IBCCHANGEIND

CREATE VIEW I_ChangeDocChangeInd AS
SELECT
  ChangeType.ddlanguage AS Language,
  ChangeType.domvalue_l AS Value,
  ChangeType.ddtext AS Text
FROM dd07t AS ChangeType
;