I_AddressGeoloc
Geolocation for Organization and Person
I_AddressGeoloc is a Composite CDS View that provides data about "Geolocation for Organization and Person" in SAP S/4HANA. It reads from 2 data sources (I_AddressGeolocation, adcp) and exposes 7 fields with key field GeolocationID. Part of development package S_ADDRESS_RAP_BO.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_AddressGeolocation | a | from |
| adcp | p | left_outer |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Geolocation for Organization and Person | view | |
| Metadata.allowExtensions | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | GeolocationID | I_AddressGeolocation | GeolocationID | |
| AddressID | I_AddressGeolocation | AddressID | ||
| AddressPersonID | ||||
| Latitude | I_AddressGeolocation | Latitude | ||
| Longitude | I_AddressGeolocation | Longitude | ||
| Altitude | I_AddressGeolocation | Altitude | ||
| AddressGeoPoint | I_AddressGeolocation | AddressGeoPoint |
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Geolocation for Organization and Person'
@Metadata.allowExtensions: true
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #XXL,
dataClass: #MIXED
}
@VDM.viewType: #COMPOSITE
@ObjectModel.semanticKey: [ 'GeolocationID' ]
define view entity I_AddressGeoloc
as select from I_AddressGeolocation as a
left outer join adcp as p on a.AddressID = p.addrnumber
and p.comp_pers = 'P'
{
key a.GeolocationID,
a.AddressID as AddressID,
coalesce( p.persnumber, ' ' ) as AddressPersonID,
a.Latitude as Latitude,
a.Longitude as Longitude,
a.Altitude as Altitude,
a.AddressGeoPoint as AddressGeoPoint
}
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