Search Results payment_sequence_number




Overview

APBV_AP_PAYMENTS is a business (BV) view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It belongs to the Payables (AP) product family and presents payment information maintained in the Oracle Payables module. The view is documented as VALID in the ETRM repository. Its primary design objective is to expose a business-friendly projection of the payment record, mapping internal column names on the underlying payment table to standardized business terminology — for example, CHECK_ID is surfaced as PAYMENT_DOCUMENT_ID, CHECK_NUMBER as PAYMENT_DOCUMENT_NUMBER, CHECK_DATE as PAYMENT_DOCUMENT_DATE, PAYMENT_TYPE_FLAG as PAYMENT_TYPE, and STATUS_LOOKUP_CODE as PAYMENT_STATUS. Because it is a view rather than a table, it carries no storage of its own and reflects the current state of the underlying data at query time.

The view is defined with the WITH READ ONLY clause, indicating that it is intended strictly for query and reporting purposes. This makes it suitable for Oracle Reports, BI Publisher data models, Oracle Discoverer/EBS business views, and custom SQL used in reconciliation and audit reporting. The object is not intended for direct DML and should not be treated as a maintenance interface to Payables.

Underlying Base Objects

Per the documented ETRM metadata, APBV_AP_PAYMENTS is defined over a single referenced base object: AP_CHECKS, accessed through its APPS schema synonym. The view text confirms this relationship, selecting exclusively from AP_CHECKS CH with a WITH READ ONLY restriction. No joins to suppliers, invoices, or payment schedules are included in the view definition, so it is a direct one-to-one projection of AP_CHECKS columns rather than an aggregated or joined business entity. Consequently, row counts and key values in the view correspond exactly to those in AP_CHECKS.

Key Columns

Common Use Cases and Queries

The view is commonly used for payment register reporting, clearing and reconciliation analysis, and stop-payment auditing. A typical query locating a payment by its sequence number follows:

  • SELECT payment_document_id, payment_document_number, payment_document_date, payment_sequence_number, payment_status, amount FROM apbv_ap_payments WHERE payment_sequence_number = :p_seq;
  • Reconciliation of cleared versus uncleared payments by status and cleared date.
  • Extraction of voided payments within a date range for audit trails.
  • Foreign-currency payment analysis using the exchange rate columns.

Because the view is read-only and references only AP_CHECKS, user-supplied WHERE clauses on the columns above are the recommended filtering approach.