I_Route
Route
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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tvro | tvro | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_RouteText | _Text | $projection.Route = _Text.Route |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Route | route | ||
| TransitDurationInCalendarDays | ||||
| TranspLeadTimeInCalDays | ||||
| TranspLeadTimeInHrsMin | ||||
| RouteFactoryCalendar | spfbk | |||
| _Text | _Text |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'Route'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.supportedCapabilities: [#CDS_MODELING_DATA_SOURCE]
@EndUserText.label: 'Route'
@Search.searchable: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ILEROUTE'
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@Metadata.ignorePropagatedAnnotations:true
define view I_Route
as select from
tvro
association [0..*] to I_RouteText as _Text on $projection.Route = _Text.Route
{
@Search.defaultSearchElement:true
@ObjectModel.text.association: '_Text'
key route as 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,
_Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TVRO"
],
"ASSOCIATED":
[
"I_ROUTETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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