Search Results future_dated_payments_flag




Overview

AP_PBATCH_SET_LINES_V is an APPS-owned, VALID database view in the Oracle E-Business Suite Payables (AP) module. It presents the configuration rows that make up payment batch sets — the reusable rule groups that control how a payment batch selects, sequences, and formats the payments it will produce. Each row in the view corresponds to a single batch set line (BATCH_SET_LINE_ID) belonging to a named batch set (BATCH_SET_ID), combined with foreign-key-derived descriptive information from the underlying bank account, check stock, and exchange rate tables. The view therefore serves as the primary reporting and integration surface for payment batch set definitions in releases 12.1.1 and 12.2.2.

The user's search term “vendor_pay_group” maps directly to the VENDOR_PAY_GROUP column exposed by this view, which is the principal filtering attribute used by the Payables payment batch programs when building batch sets.

Underlying Base Objects

The view is defined over five documented base objects in the APPS schema:

The inner joins on bank account and check stock mean a batch set line is only returned when a valid bank account and check stock are defined; the outer joins to conversion types and vendors allow lines without a specific rate type or vendor to remain visible. ROW_ID is exposed for row-level locking in interactive forms.

Key Columns

Common Use Cases and Queries

Typical uses include auditing which payment documents and bank accounts a batch set will use, reviewing priority and amount thresholds before running a payment batch, and reporting vendor pay group selections across operating units.

To list all lines for a given pay group:

  • SELECT batch_set_id, batch_set_line_id, batch_name, vendor_pay_group, bank_account_name, document_name, low_payment_priority, hi_payment_priority, max_payment_amount, pay_only_when_due_flag, payment_currency_code, org_id
  • FROM apps.ap_pbatch_set_lines_v
  • WHERE vendor_pay_group = :p_pay_group
  • AND org_id = :p_org_id
  • AND (inactive_date IS NULL OR inactive_date > SYSDATE);

To retrieve the full definition of one batch set line, selecting by batch_set_line_id returns every descriptive and flexfield column, supporting both report generation and interface programs that seed or replicate payment batch set configurations between environments.