I_LstMiDifferenceStatusText
Last Mile Distribution Diff. Status Text
I_LstMiDifferenceStatusText is a Basic CDS View that provides data about "Last Mile Distribution Diff. Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, LstMiDifferenceStatusCode. It has 1 association to related views. It is exposed through 2 OData services (LMD_ROUTE_COLLECTED_PAYMENT_SD, UI_LE_LMD_COCIDIFFS). It is used in 1 Fiori application: Check-Out/In Differences.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILSTMIDIFFST | 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 Distribution Diff. Status Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | LstMiDifferenceStatusCode | 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 |
OData Services (2)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| LMD_ROUTE_COLLECTED_PAYMENT_SD | LMD_ROUTE_COL_PAY_SB_UI_V2 | V2 | C1 | NOT_RELEASED |
| UI_LE_LMD_COCIDIFFS | UI_LE_LMD_COCIDIFFS | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F4741 | Check-Out/In Differences | Transactional | An application to analyze check-out/in differences for products / material |
Check-Out/In Differences
Business Role: Transportation Manager - Direct Distribution
This feature enables you to track differences between planned and actual check-out quantities and between expected and actual check-in quantities. Thus, you can analyze the efficiency of the loading process and of the route execution.
@AbapCatalog.sqlViewName: 'ILSTMIDIFFST'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: false
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Last Mile Distribution Diff. Status Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'LstMiDifferenceStatusCode'
@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_LstMiDifferenceStatusText
as select from dd07t
association to parent I_LstMiDifferenceStatus as _DifferenceStatus
on $projection.LstMiDifferenceStatusCode = _DifferenceStatus.LstMiDifferenceStatusCode
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast( dd07t.ddlanguage as spras preserving type ) as Language,
@ObjectModel.foreignKey.association: '_DifferenceStatus'
@ObjectModel.text.element: ['LstMiDifferenceStatusName']
key cast( dd07t.domvalue_l as lmd_com_differences ) as LstMiDifferenceStatusCode,
@Analytics.hidden: true
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
dd07t.ddtext as LstMiDifferenceStatusName,
_DifferenceStatus,
_Language
}
where dd07t.domname = 'LMD_COM_DIFFERENCES'
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