I_Transportation_Zone_Text
Transportation Zone Texts
I_Transportation_Zone_Text is a Basic CDS View that provides data about "Transportation Zone Texts" in SAP S/4HANA. It reads from 1 data source (tzont) and exposes 4 fields with key fields TransportZone, CountryCode, Language. Part of development package VDM_MD_BP_BASE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tzont | tzont | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IV_TZONET_CDS | view | |
| VDM.private | false | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| EndUserText.label | Transportation Zone Texts | view | |
| ObjectModel.representativeKey | TRANSPORTZONE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TransportZone | zone1 | ||
| KEY | CountryCode | land1 | ||
| KEY | Language | spras | ||
| TransportZoneDescription | vtext | Transport Zone Description |
@AbapCatalog.sqlViewName: 'IV_TZONET_CDS'
@VDM.private: false
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm : #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.dataCategory: #TEXT
@EndUserText.label: 'Transportation Zone Texts'
@ObjectModel.representativeKey: 'TRANSPORTZONE'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
//Do not release this view. I_Transportation_Zone_Text naming is not compliant to the guidelines.
define view I_Transportation_Zone_Text
as select from tzont
{
key zone1 as TransportZone,
key land1 as CountryCode,
@Semantics.language: true
key spras as Language,
@Semantics.text: true
@EndUserText.label: 'Transport Zone Description'
vtext as TransportZoneDescription
}
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