C_RegionTextVHTemp

DDL: C_REGIONTEXTVHTEMP SQL: CREGIONTEXT Type: view CONSUMPTION

C_RegionTextVHTemp is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_RegionText) and exposes 5 fields with key fields Country, Language, Region. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_RegionText I_RegionText from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Country _Country $projection.Country = _Country.Country

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CREGIONTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.representativeKey Region view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Country Country Venue: Ctry/Reg
KEY Language Language Report Text Language
KEY Region Region Venue Region
RegionName RegionName Region Name
_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 C_RegionTextVHTemp.
-- 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: CREGIONTEXT

CREATE VIEW C_RegionTextVHTemp AS
SELECT
  Country,
  Language,
  Region,
  RegionName
FROM I_RegionText
LEFT OUTER JOIN I_Country AS _Country ON Country = _Country.Country  -- association [0..1]
;