I_LstMiRldReqRefStopVH

DDL: I_LSTMIRLDREQREFSTOPVH Type: view_entity COMPOSITE

LMD Reload Request Reference Stop

I_LstMiRldReqRefStopVH is a Composite CDS View that provides data about "LMD Reload Request Reference Stop" in SAP S/4HANA. It reads from 1 data source (I_LstMiRouteStop) and exposes 10 fields with key fields LastMileRouteUUID, LastMileRouteStopUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_LstMiRouteStop RouteStop from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_LstMiRldReqLocationTxt _LocationText $projection.LastMileReferenceStopLocation = _LocationText.Location
[0..*] I_LstMiRldReqStopTypeTxt _StopTypeText $projection.LastMileRouteStopType = _StopTypeText.LastMileRouteStopType

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label LMD Reload Request Reference Stop view
Metadata.ignorePropagatedAnnotations false view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey LastMileRouteStopUUID view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #COMPOSITE view
Search.searchable true view
Consumption.ranked true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY LastMileRouteUUID I_LstMiRouteStop LastMileRouteUUID Route UUID
KEY LastMileRouteStopUUID I_LstMiRouteStop LastMileRouteStopUUID Stop UUID
LastMileReferenceStopLocation I_LstMiRouteStop TranspOrdStopLocation Location ID
LastMileRouteStopSequenceValue I_LstMiRouteStop LastMileRouteStopSequenceValue Visit Sequence
LastMileRouteStopType I_LstMiRouteStop LastMileRouteStopType Stop Type
ShipToParty ShipToParty Ship-To Party (obsolete)
_Route _Route
_ShipToPartyVH _ShipToPartyVH
_LocationText _LocationText
_StopTypeText _StopTypeText

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_LstMiRldReqRefStopVH.
-- 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.

CREATE VIEW I_LstMiRldReqRefStopVH AS
SELECT
  RouteStop.LastMileRouteUUID AS LastMileRouteUUID,
  RouteStop.LastMileRouteStopUUID AS LastMileRouteStopUUID,
  RouteStop.TranspOrdStopLocation AS LastMileReferenceStopLocation,
  RouteStop.LastMileRouteStopSequenceValue AS LastMileRouteStopSequenceValue,
  RouteStop.LastMileRouteStopType AS LastMileRouteStopType,
  ShipToParty
FROM I_LstMiRouteStop AS RouteStop
LEFT OUTER JOIN I_LstMiRldReqLocationTxt AS _LocationText ON LastMileReferenceStopLocation = _LocationText.Location  -- association [0..*]
LEFT OUTER JOIN I_LstMiRldReqStopTypeTxt AS _StopTypeText ON LastMileRouteStopType = _StopTypeText.LastMileRouteStopType  -- association [0..*]
;