I_CountryGeoPoint

DDL: I_COUNTRYGEOPOINT SQL: ICTYGEOPOINT Type: view BASIC

Geographical Location of a Country/Region

I_CountryGeoPoint (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_CountryGeoPoint is a Basic CDS View (Dimension) that provides data about "Geographical Location of a Country/Region" in SAP S/4HANA. It reads from 1 data source (geot005_loc) and exposes 4 fields with key field Country. It has 2 associations to related views.

SAP Help Documentation

CategoryBasic CDS Views
Purpose
This CDS view retrieves data for the geographical location of a country.

Prerequisites
Authorizations No authorization objects are assigned to this CDS view.

Structure
Further Important Fields Important fields in this view include the following: Field Name Description CountryCenterGeoPoint Geographical location of a country

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentLO-RFM-ARN
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view retrieves data for the geographical location of a country.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
geot005_loc geot005_loc from

Associations (2)

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

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName ICTYGEOPOINT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.internalName #LOCAL view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled false view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Geographical Location of a Country/Region view
ObjectModel.representativeKey Country view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.compositionRoot true view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Country land1 Country/Region Key
CountryCenterGeoPoint geo_location GEOM_EWKB
_Text _Text
_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_CountryGeoPoint.
-- 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: ICTYGEOPOINT

CREATE VIEW I_CountryGeoPoint AS
SELECT
  land1 AS Country,
  geo_location AS CountryCenterGeoPoint
FROM geot005_loc
LEFT OUTER JOIN I_Country AS _Country ON Country = _Country.Country  -- association [1..1]
LEFT OUTER JOIN I_CountryText AS _Text ON Country = _Text.Country  -- association [0..*]
;