Search Results cash_payment




Overview

APPS.CE_DOCUMENTS_PAYABLE is a Cash Management (CE) view that presents payment transactions in the standardized Oracle Payments "document payable" format. Its principal purpose is to expose records from the Cash Management payment transactions table to the Oracle Payments funds capture and disbursement engine, exposing each row as a payable document with the calling application identified as "260". The view maps Cash Management transaction attributes onto the generic Payments interface columns — calling application identifiers, payment function, payment date, currency, amount, payment method, bank accounts, and remittance detail — so that the payment instruction subsystem can process cash payments uniformly alongside invoices, expense reports, and other payable sources.

Because the transaction reference number is projected into CALLING_APP_UNIQUE_REF1 and CALLING_APP_DOC_REF_NUMBER, the view supports traceability back to the originating Cash Management transaction. The fixed literal 'CASH_PAYMENT' in the PAYMENT_FUNCTION column is the distinguishing marker that identifies this view as the cash payment integration point; applications and concurrent programs filter on this value to isolate cash payments from other payable document types.

Underlying Base Objects

The view's documented base object is the synonym CE_PAYMENT_TRANSACTIONS, which resolves to the Cash Management payment transactions table in the APPS schema. The view is a straightforward SELECT — it contains no joins to supplier, purchase order, or payment profile tables. Columns that have no Cash Management counterpart, such as PO_NUMBER, DISCOUNT_DATE, PAYMENT_DUE_DATE, SUPPLIER_SITE_ID, and UNIQUE_REMITTANCE_IDENTIFIER, are populated with NULL so that the projected row set conforms exactly to the Payments document payable interface expected by the calling application.

Key Columns

Common Use Cases and Queries

Typical uses include reconciling cash payments fed to Oracle Payments, validating the mapped amounts and dates before payment processing, and building custom reports on cash payment activity by legal entity or bank account.

Listing cash payment documents by currency and legal entity:

SELECT calling_app_unique_ref1, payment_date, payment_currency_code,
       payment_amount, payment_method_code, legal_entity_id
FROM   apps.ce_documents_payable
WHERE  payment_function = 'CASH_PAYMENT'
ORDER BY payment_date;

Auditing the bank account and payee mapping for a specific transaction reference:

SELECT calling_app_unique_ref1, internal_bank_account_id,
       external_bank_account_id, payee_party_id, party_site_id,
       anticipated_value_date
FROM   apps.ce_documents_payable
WHERE  calling_app_id = '260'
AND    calling_app_unique_ref1 = :trxn_reference_number;

Because DOCUMENT_AMOUNT and PAYMENT_AMOUNT are identical and the withholding, discount, and charge columns are NULL, any reconciliation query must source those components from the underlying Cash Management transaction rather than from this view.