I_Route

DDL: I_ROUTE SQL: ILEROUTE Type: view BASIC

Route

I_Route (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Manufacturing

I_Route is a Basic CDS View that provides data about "Route" in SAP S/4HANA. It reads from 1 data source (tvro) and exposes 6 fields with key field Route. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentLE-TRA
CapabilitiesData Source for Defining CDS Entities
PackageManufacturing for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tvro tvro from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_RouteText _Text $projection.Route = _Text.Route

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey Route view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Route view
Search.searchable true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ILEROUTE view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Route route Vehicle route
TransitDurationInCalendarDays LE-TRA duration
TranspLeadTimeInCalDays Trans.Lead Time
TranspLeadTimeInHrsMin LE-TRA Transportation Lead Time in Hours/Minutes Work Time
RouteFactoryCalendar spfbk Factory calendar key
_Text _Text

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_Route.
-- 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: ILEROUTE

CREATE VIEW I_Route AS
SELECT
  Route,
  cast(traztd as vdm_letra_duration preserving type ) AS TransitDurationInCalendarDays,
  cast(tdvztd as vdm_letra_duration preserving type ) AS TranspLeadTimeInCalDays,
  cast(tdvznd as vdm_letra_leadtime preserving type ) AS TranspLeadTimeInHrsMin,
  spfbk AS RouteFactoryCalendar
FROM tvro
LEFT OUTER JOIN I_RouteText AS _Text ON Route = _Text.Route  -- association [0..*]
;