I_Textvalues

DDL: I_TEXTVALUES SQL: TEXTVALUES Type: view

Basic view to get the Text description

I_Textvalues is a CDS View that provides data about "Basic view to get the Text description" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key field Domname.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName TEXTVALUES view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientDependent true view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Basic view to get the Text description view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Domname dd07t domname Domain
Domvalue dd07t domvalue_l Lower Value
Text dd07t ddtext Short text
language Lang.

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_Textvalues.
-- 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: TEXTVALUES

CREATE VIEW I_Textvalues AS
SELECT
  dd07t.domname AS Domname,
  dd07t.domvalue_l AS Domvalue,
  dd07t.ddtext AS Text,
  cast(ddlanguage as sylangu) AS language
FROM dd07t
;