I_ChangeDocTableNames

DDL: I_CHANGEDOCTABLENAMES SQL: IBCCHANGETNAME Type: view BASIC

Text für Tabellen

I_ChangeDocTableNames is a Basic CDS View that provides data about "Text für Tabellen" 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 TableText from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName IBCCHANGETNAME view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text für Tabellen view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Value dd02t tabname Table/Constant Value
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_ChangeDocTableNames.
-- 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: IBCCHANGETNAME

CREATE VIEW I_ChangeDocTableNames AS
SELECT
  TableText.tabname AS Value,
  TableText.ddlanguage AS Language,
  TableText.ddtext AS Text
FROM dd02t AS TableText
;