I_LstMiUIRteStatusActivityText
Last Mile UI Route Status Activity Text
I_LstMiUIRteStatusActivityText is a Basic CDS View that provides data about "Last Mile UI Route Status Activity Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key field DomainValuePosition.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | CategoryTextProvider | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILMDRUISTACTTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Last Mile UI Route Status Activity Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | DomainValuePosition | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DomainValuePosition | dd07t | domvalue_l | |
| ddlanguageasLanguage | ||||
| ddtextasDomainValue |
@AbapCatalog.sqlViewName: 'ILMDRUISTACTTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Last Mile UI Route Status Activity Text'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'DomainValuePosition'
@Search.searchable: true
@VDM.viewType: #BASIC
@ObjectModel: { usageType: { serviceQuality: #C,
sizeCategory: #S,
dataClass: #TRANSACTIONAL}
}
@ClientHandling.algorithm: #SESSION_VARIABLE
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_LstMiUIRteStatusActivityText as select from dd07t as CategoryTextProvider
{
key CategoryTextProvider.domvalue_l as DomainValuePosition,
@Semantics.language: true -- identifies the language
key CategoryTextProvider.ddlanguage as Language,
@Semantics.text: true -- identifies the text field
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Consumption.filter.hidden: true -- don't show field as additional Filter in the 'Adapt Filter' Dialog
CategoryTextProvider.ddtext as DomainValue
}
where
domname = 'LMD_SM_ACTIVITY'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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