Deprecated SAP_INTERNAL_API
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

I_BR_Domain

DDL: I_BR_DOMAIN SQL: IBRDOMAIN Type: view BASIC

Brazil Texts for Domain Values

I_BR_Domain is a Basic CDS View that provides data about "Brazil Texts for Domain Values" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Name, Language, DomainValue.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IBRDOMAIN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Brazil Texts for Domain Values view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor view
AbapCatalog.preserveKey true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Name domname Domain
KEY Language ddlanguage Lang.
KEY DomainValue domvalue_l Lower Value
DomainText 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 I_BR_Domain.
-- 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: IBRDOMAIN

CREATE VIEW I_BR_Domain AS
SELECT
  domname AS Name,
  ddlanguage AS Language,
  domvalue_l AS DomainValue,
  ddtext AS DomainText
FROM dd07t
;