I_ChangeDocFieldNamesT

DDL: I_CHANGEDOCFIELDNAMEST SQL: IBCCHANGEFNAMET Type: view BASIC

Text für Feldnamen

I_ChangeDocFieldNamesT is a Basic CDS View that provides data about "Text für Feldnamen" in SAP S/4HANA. It reads from 1 data source (dd03vt) and exposes 4 fields with key fields Language, DatabaseTable, Value.

Data Sources (1)

SourceAliasJoin Type
dd03vt FieldNameText from

Annotations (6)

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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language dd03vt ddlanguage Lang.
KEY DatabaseTable dd03vt tabname Table/Constant Value
KEY Value dd03vt fieldname UI Group FieldName
Text dd03vt scrtext_l Feldname

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_ChangeDocFieldNamesT.
-- 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: IBCCHANGEFNAMET

CREATE VIEW I_ChangeDocFieldNamesT AS
SELECT
  FieldNameText.ddlanguage AS Language,
  FieldNameText.tabname AS DatabaseTable,
  FieldNameText.fieldname AS Value,
  FieldNameText.scrtext_l AS Text
FROM dd03vt AS FieldNameText
;