I_RegionText

DDL: I_REGIONTEXT Type: view_entity BASIC

Region - Text

I_RegionText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_RegionText is a Basic CDS View that provides data about "Region - Text" in SAP S/4HANA. It reads from 1 data source (t005u) and exposes 7 fields with key fields Country, Region, Language. It has 3 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentBC-SRV-ADR
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Language-Dependent Text
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t005u t005u from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Region _Region $projection.Region = _Region.Region and $projection.Country = _Region.Country
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_Country _Country $projection.Country = _Country.Country

Annotations (13)

NameValueLevelField
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IREGIONTEXT view
ObjectModel.representativeKey Region view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Region - Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Country t005u land1 Country/Region Key
KEY Region t005u bland Region (State, Province, County)
KEY Language t005u spras Off. Language
RegionName t005u bezei TrContType name
_Region _Region
_Language _Language
_Country _Country

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_RegionText.
-- 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.

CREATE VIEW I_RegionText AS
SELECT
  t005u.land1 AS Country,
  t005u.bland AS Region,
  t005u.spras AS Language,
  t005u.bezei AS RegionName
FROM t005u
LEFT OUTER JOIN I_Region AS _Region ON Region = _Region.Region AND Country = _Region.Country  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_Country AS _Country ON Country = _Country.Country  -- association [0..1]
;