I_LstMiUIRteCheckOutPaymentTP

DDL: I_LSTMIUIRTECHECKOUTPAYMENTTP Type: view_entity TRANSACTIONAL

Last Mile UI Route Checkout Payment

I_LstMiUIRteCheckOutPaymentTP is a Transactional CDS View that provides data about "Last Mile UI Route Checkout Payment" in SAP S/4HANA. It reads from 1 data source (lmd_com_cocipays) and exposes 7 fields with key field LastMileRouteCOCIPaymentUUID.

Data Sources (1)

SourceAliasJoin Type
lmd_com_cocipays payments from

Annotations (7)

NameValueLevelField
EndUserText.label Last Mile UI Route Checkout Payment view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #MANDATORY view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY LastMileRouteCOCIPaymentUUID lmd_com_cocipays coci_payment_uuid Payment COCI UUID
LastMileRouteStopUUID lmd_com_cocipays stop_uuid Stop UUID
LastMileRouteUUID lmd_com_cocipays route_uuid Route UUID
LastMileRouteCOCIPaymentType lmd_com_cocipays payment_type Payment Type
LstMiRouteCOCIPaymentAmount lmd_com_cocipays amount Value Amount
LstMiRouteCOCIPaymentCurrency lmd_com_cocipays currency Valuation Crcy
_Route _Route

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_LstMiUIRteCheckOutPaymentTP.
-- 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_LstMiUIRteCheckOutPaymentTP AS
SELECT
  payments.coci_payment_uuid AS LastMileRouteCOCIPaymentUUID,
  payments.stop_uuid AS LastMileRouteStopUUID,
  payments.route_uuid AS LastMileRouteUUID,
  payments.payment_type AS LastMileRouteCOCIPaymentType,
  payments.amount AS LstMiRouteCOCIPaymentAmount,
  payments.currency AS LstMiRouteCOCIPaymentCurrency
FROM lmd_com_cocipays AS payments
;