I_Transportation_Zone_Text

DDL: I_TRANSPORTATION_ZONE_TEXT SQL: IV_TZONET_CDS Type: view BASIC Package: VDM_MD_BP_BASE

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)

SourceAliasJoin Type
tzont tzont from

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}