I_TranspUNLocationCode
Transportation UN Location Codes
I_TranspUNLocationCode is a Basic CDS View that provides data about "Transportation UN Location Codes" in SAP S/4HANA. It reads from 1 data source (/scmtms/c_unloc) and exposes 5 fields with key field LocationUNCode. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /scmtms/c_unloc | /scmtms/c_unloc | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_TranspUNLocationCodeText | _Text | $projection.LocationUNCode = _Text.LocationUNCode |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ITUNLOCC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.representativeKey | LocationUNCode | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #NONE | view | |
| EndUserText.label | Transportation UN Location Codes | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LocationUNCode | unlocode | ||
| OrganizationalUnitExternalID | exec_org_id | |||
| ResourcePositionLongitude | xpos | |||
| ResourcePositionLatitude | ypos | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'ITUNLOCC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.representativeKey: 'LocationUNCode'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #NONE
@EndUserText.label: 'Transportation UN Location Codes'
define view I_TranspUNLocationCode
as select from /scmtms/c_unloc
association [0..*] to I_TranspUNLocationCodeText as _Text on $projection.LocationUNCode = _Text.LocationUNCode
{
@ObjectModel.text.association: '_Text'
key unlocode as LocationUNCode,
exec_org_id as OrganizationalUnitExternalID,
xpos as ResourcePositionLongitude,
ypos as ResourcePositionLatitude,
_Text
}
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