I_ChangeDocFieldText

DDL: I_CHANGEDOCFIELDTEXT SQL: IBCCHANGEFNTXT Type: view BASIC

Text für Feldnamen

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

Data Sources (1)

SourceAliasJoin Type
ddftx Fieldtextddic from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName IBCCHANGEFNTXT 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 ddftx ddlanguage Lang.
KEY DatabaseTableName ddftx tabname Table/Constant Value
KEY FieldName ddftx fieldname Feldname
Text ddftx 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_ChangeDocFieldText.
-- 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: IBCCHANGEFNTXT

CREATE VIEW I_ChangeDocFieldText AS
SELECT
  Fieldtextddic.ddlanguage AS Language,
  Fieldtextddic.tabname AS DatabaseTableName,
  Fieldtextddic.fieldname AS FieldName,
  Fieldtextddic.scrtext_l AS Text
FROM ddftx AS Fieldtextddic
;