I_ChangeDocFieldNames

DDL: I_CHANGEDOCFIELDNAMES SQL: IBCCHANGEFNAME Type: view BASIC

Feldnamen

I_ChangeDocFieldNames is a Basic CDS View that provides data about "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 Fieldname from

Annotations (7)

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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language dd03vt ddlanguage Lang.
KEY DatabaseTable dd03vt tabname Table/Constant Value
KEY Value dd03vt fieldname Feldname
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_ChangeDocFieldNames.
-- 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: IBCCHANGEFNAME

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