I_Transportation_Zone_Text

DDL: I_TRANSPORTATION_ZONE_TEXT SQL: IV_TZONET_CDS Type: view BASIC

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.

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 Transport Zone
KEY CountryCode land1 Trip Ctry/Reg
KEY Language spras Off. Language
TransportZoneDescription vtext Transport Zone Description

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_Transportation_Zone_Text.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IV_TZONET_CDS

CREATE VIEW I_Transportation_Zone_Text AS
SELECT
  zone1 AS TransportZone,
  land1 AS CountryCode,
  spras AS Language,
  vtext AS TransportZoneDescription
FROM tzont
;