ARO_DDL_Domain_Text

DDL: ARO_DDL_DOMAIN_TEXT SQL: V_ARO_DDTEXT Type: view

Texts for Domain Fixed Values

ARO_DDL_Domain_Text is a CDS View that provides data about "Texts for Domain Fixed Values" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field domvalue_l.

Data Sources (1)

SourceAliasJoin Type
dd07t _text from

Parameters (1)

NameTypeDefault
p_DOMNAME domname

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName V_ARO_DDTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Texts for Domain Fixed Values view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY domvalue_l dd07t domvalue_l Lower Value
ddtext dd07t ddtext Short text

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 ARO_DDL_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: V_ARO_DDTEXT
-- Parameters: p_DOMNAME : domname

CREATE VIEW ARO_DDL_Domain_Text AS
SELECT
  _text.domvalue_l AS domvalue_l,
  _text.ddtext AS ddtext
FROM dd07t AS _text
;