I_TransportationLocationTypeT

DDL: I_TRANSPORTATIONLOCATIONTYPET SQL: ITRANSPLOCTPT Type: view BASIC

Transportation Location Type - Text

I_TransportationLocationTypeT is a Basic CDS View that provides data about "Transportation Location Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, LocationType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_TransportationLocationType _TransportationLocationType $projection.LocationType = _TransportationLocationType.LocationType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ITRANSPLOCTPT 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
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey LocationType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
VDM.lifecycle.contract.type #NONE view
VDM.viewType #BASIC view
EndUserText.label Transportation Location Type - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY LocationType
DomainValue dd07t domvalue_l Lower Value
LocationTypeDesc
_TransportationLocationType _TransportationLocationType
_Language _Language

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_TransportationLocationTypeT.
-- 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: ITRANSPLOCTPT

CREATE VIEW I_TransportationLocationTypeT AS
SELECT
  cast( dd07t.ddlanguage as spras preserving type ) AS Language,
  cast(substring(domvalue_l, 1, 4) as /sapapo/tm_loctype preserving type) AS LocationType,
  dd07t.domvalue_l AS DomainValue,
  cast(substring(dd07t.ddtext, 1, 40) as /sapapo/c_loctype_descr40 preserving type ) AS LocationTypeDesc
FROM dd07t
LEFT OUTER JOIN I_TransportationLocationType AS _TransportationLocationType ON LocationType = _TransportationLocationType.LocationType  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;