CNV_2010C_DOMAIN_TEXT

DDL: CNV_2010C_DOMAIN_TEXT SQL: CNV_2010C_DOMV Type: view

Domain Text

CNV_2010C_DOMAIN_TEXT is a CDS View that provides data about "Domain Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields dom, langu.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName CNV_2010C_DOMV view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Domain Text view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY dom domname Domain
KEY langu ddlanguage Lang.
text ddtext Short text
dom_val domvalue_l Lower Value

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 CNV_2010C_DOMAIN_TEXT.
-- 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: CNV_2010C_DOMV

CREATE VIEW CNV_2010C_DOMAIN_TEXT AS
SELECT
  domname AS dom,
  ddlanguage AS langu,
  ddtext AS text,
  domvalue_l AS dom_val
FROM dd07t
;