I_LstMiRoutePaymentAtCheckIn

DDL: I_LSTMIROUTEPAYMENTATCHECKIN Type: view_entity COMPOSITE

LMD Route Check-In Payment

I_LstMiRoutePaymentAtCheckIn is a Composite CDS View that provides data about "LMD Route Check-In Payment" in SAP S/4HANA. It reads from 1 data source (I_LstMiRouteCOCIPayment) and exposes 8 fields with key field LastMileRteCheckInPaymentUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_LstMiRouteCOCIPayment I_LstMiRouteCOCIPayment from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_LstMiRoute _Route $projection.LastMileRouteUUID = _Route.LastMileRouteUUID
[1..1] I_LastMileRouteCheckIn _CheckInStop $projection.LastMileRouteCheckInUUID = _CheckInStop.LastMileRouteCheckInUUID

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label LMD Route Check-In Payment view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY LastMileRteCheckInPaymentUUID LastMileRouteCOCIPaymentUUID Payment COCI UUID
LastMileRouteCheckInUUID LastMileRouteStopUUID Stop UUID
LastMileRouteUUID LastMileRouteUUID Route UUID
LstMiRouteCheckInPaymentType LastMileRouteCOCIPaymentType Payment Type
LstMiRteCheckInPaymentAmount LstMiRouteCOCIPaymentAmount Value Amount
LstMiRteCheckInPaymentCurrency LstMiRouteCOCIPaymentCurrency Valuation Crcy
_Route _Route
_CheckInStop _CheckInStop

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_LstMiRoutePaymentAtCheckIn.
-- 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_LstMiRoutePaymentAtCheckIn AS
SELECT
  LastMileRouteCOCIPaymentUUID AS LastMileRteCheckInPaymentUUID,
  LastMileRouteStopUUID AS LastMileRouteCheckInUUID,
  LastMileRouteUUID,
  LastMileRouteCOCIPaymentType AS LstMiRouteCheckInPaymentType,
  LstMiRouteCOCIPaymentAmount AS LstMiRteCheckInPaymentAmount,
  LstMiRouteCOCIPaymentCurrency AS LstMiRteCheckInPaymentCurrency
FROM I_LstMiRouteCOCIPayment
LEFT OUTER JOIN I_LstMiRoute AS _Route ON LastMileRouteUUID = _Route.LastMileRouteUUID  -- association [1..1]
LEFT OUTER JOIN I_LastMileRouteCheckIn AS _CheckInStop ON LastMileRouteCheckInUUID = _CheckInStop.LastMileRouteCheckInUUID  -- association [1..1]
;