I_CountryGeoPoint
Geographical Location of a Country/Region
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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| geot005_loc | geot005_loc | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Country | _Country | $projection.Country = _Country.Country |
| [0..*] | I_CountryText | _Text | $projection.Country = _Text.Country |
Annotations (18)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Country | land1 | ||
| CountryCenterGeoPoint | geo_location | |||
| _Text | _Text | |||
| _Country | _Country |
@AbapCatalog.sqlViewName: 'ICTYGEOPOINT'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@AccessControl.authorizationCheck: #NOT_REQUIRED // #CHECK
@Analytics.internalName:#LOCAL
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: false
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Geographical Location of a Country/Region'
@ObjectModel.representativeKey: 'Country'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.compositionRoot:true
@ObjectModel.supportedCapabilities: [ #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE]
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true
@Metadata.allowExtensions:true
@VDM.viewType: #BASIC
define view I_CountryGeoPoint
as select from geot005_loc
association [1..1] to I_Country as _Country on $projection.Country = _Country.Country
association [0..*] to I_CountryText as _Text on $projection.Country = _Text.Country
{
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
@ObjectModel.text.association: '_Text'
key land1 as Country,
@Semantics.spatialData.srid.value: '3857'
@Semantics.spatialData.type: [ #POINT ]
geo_location as CountryCenterGeoPoint,
@ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
_Text,
_Country
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"GEOT005_LOC"
],
"ASSOCIATED":
[
"I_COUNTRY",
"I_COUNTRYTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA