I_CountryText

DDL: I_COUNTRYTEXT SQL: IFICOUNTRYTEXT Type: view BASIC

Country/Region - Text

I_CountryText (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_CountryText is a Basic CDS View that provides data about "Country/Region - Text" in SAP S/4HANA. It reads from 1 data source (t005t) and exposes 8 fields with key fields Country, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentBC-SRV-ADR
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Language-Dependent Text
PackageCross Applications for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to the country-names in different languages.</p> <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul><li><p>Which is the english country name?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
t005t t005t from

Associations (2)

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

Annotations (19)

NameValueLevelField
Analytics.dataExtraction.enabled true view
AbapCatalog.sqlViewName IFICOUNTRYTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 2 view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Country/Region - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Country view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Country land1 Country/Region Key
KEY Language spras Off. Language
CountryName landx50 Country/Region Name
NationalityName natio Nationality
NationalityLongName natio50 Nationality (Max. 50 Characters)
CountryShortName landx Name of Country/Region (Short)
_Country _Country
_Language _Language

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_CountryText.
-- 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: IFICOUNTRYTEXT

CREATE VIEW I_CountryText AS
SELECT
  land1 AS Country,
  spras AS Language,
  landx50 AS CountryName,
  natio AS NationalityName,
  natio50 AS NationalityLongName,
  landx AS CountryShortName
FROM t005t
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]
;