I_LstMiOvwRouteErrorStatusText
Last Mile Ovw Rte Error Status Text
I_LstMiOvwRouteErrorStatusText is a Basic CDS View that provides data about "Last Mile Ovw Rte Error Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields mandt, LastMileRouteStatus, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILSTMIOVWREST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataExtraction.enabled | false | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Last Mile Ovw Rte Error Status Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | LastMileRouteStatus | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | mandt | |||
| KEY | LastMileRouteStatus | |||
| KEY | Language | |||
| LastMileRouteStatusText | dd07t | ddtext |
@AbapCatalog.sqlViewName: 'ILSTMIOVWREST'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: false
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Last Mile Ovw Rte Error Status Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'LastMileRouteStatus'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.sizeCategory: #S
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
define view I_LstMiOvwRouteErrorStatusText
as select from dd07t
{
key $session.client as mandt,
@ObjectModel.text.element: ['LastMileRouteStatusText']
key cast( dd07t.domvalue_l as lmd_sm_status ) as LastMileRouteStatus,
@Semantics.language: true
key cast( dd07t.ddlanguage as spras preserving type ) as Language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
dd07t.ddtext as LastMileRouteStatusText
}
where
dd07t.domname = 'LMD_OVW_ROUTE_STATUS'
and dd07t.as4local = 'A'
and dd07t.as4vers = '0000'
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