Search Results treasury_payment_date




Overview

APFV_AP_PAYMENTS is a Business Intelligence System (BIS) view owned by the APPS schema in Oracle E-Business Suite, registered in FND Design Data under the identifier SQLAP.APFV_AP_PAYMENTS. Its documented status is VALID across EBS 12.1.1 and 12.2.2. The view presents payment records — disbursements issued to a supplier — in a flattened, denormalized form suitable for reporting and downstream integration. Rather than exposing the internal foreign-key structure of the Payables transaction tables, it resolves supplier, bank, currency, clearing, and withholding attributes into a single queryable surface.

Because it is a BIS view, APFV_AP_PAYMENTS is intended primarily for read-only reporting, ad hoc inquiry, and extract-based integration. Concurrent programs, Oracle Business Intelligence Publisher reports, and custom operational reports frequently select from it rather than from the base Payables entities, avoiding the multi-table joins otherwise required to reconstruct a payment record.

Underlying Base Objects

The documented referenced base object for this view is AP_CHECKS, accessed through a synonym in the APPS schema. AP_CHECKS is the core Payables table that stores payment documents — issued checks, electronic funds transfers, wire payments, and clearing transactions — keyed by CHECK_ID. The view projects the majority of its columns from that single table, which explains the presence of the CHECK_ID and CHECK_NUMBER columns and the payment-oriented naming convention throughout the column list.

Supplier identifying information (VENDOR_ID, VENDOR_SITE_ID, VENDOR_NAME, and the address and bank account attributes) is surfaced as already-resolved values. The catalogued column set includes descriptive suffixes such as _LA:PAYMENT_TYPE_DESCR, _LA:PAYMENT_STATUS_DESCR, and _LA:PAYMENT_METHOD_DESCR, indicating lookup-code translation is layered into the view definition.

Key Columns

Common Use Cases and Queries

Typical consumption includes payment registers, cash-requirement analysis, cleared-versus-issued reconciliation, void and stop-payment exception reports, and supplier-level disbursement extracts.

SELECT check_id,
       check_number,
       check_voucher_number,
       check_date,
       amount,
       currency_code,
       payment_status,
       vendor_name,
       bank_account_name
FROM   apps.apfv_ap_payments
WHERE  check_date BETWEEN :p_start_date AND :p_end_date
ORDER  BY check_date, check_number;

Joining results to AP_INVOICE_PAYMENTS on CHECK_ID links each disbursement back to the invoices it settled, enabling payment-to-invoice reconciliation using CHECK_VOUCHER_NUMBER as a cross-reference. Queries should be constrained by date or vendor, as the view spans all payment history and is not indexed independently.