I_TranspIATALocationCode
Transportation IATA Location Codes
I_TranspIATALocationCode is a Basic CDS View that provides data about "Transportation IATA Location Codes" in SAP S/4HANA. It reads from 1 data source (/scmtms/c_iatac) and exposes 8 fields with key field LocationIATACode. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /scmtms/c_iatac | /scmtms/c_iatac | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_TranspIATALocationCodeText | _Text | $projection.LocationIATACode = _Text.LocationIATACode |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IIATALOCC | 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 | LocationIATACode | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #NONE | view | |
| EndUserText.label | Transportation IATA Location Codes | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LocationIATACode | iatac | ||
| Country | country | |||
| Region | region | |||
| OrganizationalUnitExternalID | exec_org_id | |||
| Longitude | xpos | |||
| Latitude | ypos | |||
| LocationTimeZone | tzone | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IIATALOCC'
@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: 'LocationIATACode'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #NONE
@EndUserText.label: 'Transportation IATA Location Codes'
define view I_TranspIATALocationCode
as select from /scmtms/c_iatac
association [0..*] to I_TranspIATALocationCodeText as _Text on $projection.LocationIATACode = _Text.LocationIATACode
{
@ObjectModel.text.association: '_Text'
key iatac as LocationIATACode,
country as Country,
region as Region,
exec_org_id as OrganizationalUnitExternalID,
xpos as Longitude,
ypos as Latitude,
tzone as LocationTimeZone,
_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