LMD_COM_COCIPAYS

Transparent Table Application Table

Last Mile Distribution COCI Payments

LMD_COM_COCIPAYS is an SAP database table in S/4HANA. Last Mile Distribution COCI Payments. It contains 11 fields. 4 CDS views read from this table.

CDS Views using this table (4)

ViewTypeJoinVDMDescription
I_LstMiRouteCOCIPayment view from BASIC Last Mile Route Basic View for COCI Paym
I_LstMiUIRoutePaymentTP view_entity union_all TRANSACTIONAL Last Mile UI Route Payment
I_LstMiUIRteCheckInPaymentTP view_entity from TRANSACTIONAL Last Mile UI Route Checkout Payment
I_LstMiUIRteCheckOutPaymentTP view_entity from TRANSACTIONAL Last Mile UI Route Checkout Payment

Fields (11)

KeyField Data ElementDescription DomainTypeLength
KEY client abap.clnt
KEY coci_payment_uuid LMD_ROUTE_PAYMENT_COCI_UUID Payment COCI UUID
route_uuid LMD_ROUTE_UUID Route UUID
stop_uuid LMD_ROUTE_STOP_UUID Stop UUID
payment_type LMD_COM_PAYMENT_TYPE Payment Method
amount LMD_COM_AMOUNT Amount
currency LMD_COM_CURRENCY Currency
fiscal_year LMD_COM_FISCAL_YEAR Fiscal Year
company_code LMD_COM_COMPANY_CODE Company Code
accounting_document LMD_COM_ACCOUNTING_DOCUMENT Accounting Document
eew_lmd_com_coci_pay DUMMY Dummy function in length 1

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Last Mile Distribution COCI Payments
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE LMD_COM_COCIPAYS (
    CLIENT,                -- abap.clnt
    COCI_PAYMENT_UUID,     -- Payment COCI UUID [LMD_ROUTE_PAYMENT_COCI_UUID]
    ROUTE_UUID,            -- Route UUID [LMD_ROUTE_UUID]
    STOP_UUID,             -- Stop UUID [LMD_ROUTE_STOP_UUID]
    PAYMENT_TYPE,          -- Payment Method [LMD_COM_PAYMENT_TYPE]
    AMOUNT,                -- Amount [LMD_COM_AMOUNT]
    CURRENCY,              -- Currency [LMD_COM_CURRENCY]
    FISCAL_YEAR,           -- Fiscal Year [LMD_COM_FISCAL_YEAR]
    COMPANY_CODE,          -- Company Code [LMD_COM_COMPANY_CODE]
    ACCOUNTING_DOCUMENT,   -- Accounting Document [LMD_COM_ACCOUNTING_DOCUMENT]
    EEW_LMD_COM_COCI_PAY,  -- Dummy function in length 1 [DUMMY]
    PRIMARY KEY (CLIENT, COCI_PAYMENT_UUID)
);