I_ChangeDocTable

DDL: I_CHANGEDOCTABLE SQL: IBCCHANGETAB Type: view BASIC

Tabellen für Änderungsbelegobjekt

I_ChangeDocTable is a Basic CDS View that provides data about "Tabellen für Änderungsbelegobjekt" in SAP S/4HANA. It reads from 1 data source (dd02t) and exposes 3 fields with key fields Value, Language.

Data Sources (1)

SourceAliasJoin Type
dd02t Table from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName IBCCHANGETAB view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Tabellen für Änderungsbelegobjekt view
VDM.viewType #BASIC view
ObjectModel.resultSet.sizeCategory #XS view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Value dd02t tabname Tabelle
KEY Language dd02t ddlanguage Lang.
Text dd02t ddtext Tabelle

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_ChangeDocTable.
-- 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: IBCCHANGETAB

CREATE VIEW I_ChangeDocTable AS
SELECT
  Table.tabname AS Value,
  Table.ddlanguage AS Language,
  Table.ddtext AS Text
FROM dd02t AS Table
;