Search Results ap_invoices_all
Overview
AP_INVOICES_ALL is the central transaction table in the Oracle Payables (AP) module, storing one row for every invoice, credit memo, debit memo, prepayment, and expense report advance processed by the application. Living in the AP schema, it holds the header-level information that drives invoice validation, approval, accounting, and payment. Each record represents the supplier-facing document before its distribution lines, payment schedules, holds, and matches are resolved. AP_INVOICES_ALL is distinct from AP_INVOICE_LINES_ALL, which stores line detail; the header table carries amounts, currency, terms, supplier, and status attributes for the invoice as a whole.
In Oracle EBS 12.1.1 and 12.2.2 the table is a partitioned, multi-organization-aware object, with ORG_ID controlling operating unit access and SET_OF_BOOKS_ID anchoring the ledger. Because virtually every downstream Payables process — validation, accounting, withholding, payments, and accrual reconciliation — refers back to INVOICE_ID, this object behaves as a natural hub in a dimensional or Data Vault model. The metadata's heuristic classification of hub is consistent with that role: the table holds the durable business key of the invoice and the descriptive context for the transaction event.
Key Information Stored
With 191 documented columns, AP_INVOICES_ALL is broad, but a smaller set carries most of its meaning. The surrogate primary key is INVOICE_ID (enforced by AP_INVOICES_PK and the unique index AP_INVOICES_U1), and it is the column to which nearly every child table joins. Business-key candidates documented via unique indexes include DOC_SEQUENCE_ID combined with DOC_SEQUENCE_VALUE (AP_INVOICES_U3), which captures the supplier-facing document sequence number, and the natural identifying combination of VENDOR_ID, INVOICE_NUM, and SET_OF_BOOKS_ID commonly used to detect duplicates.
- INVOICE_ID — surrogate primary key; the join key for lines, distributions, holds, and payments.
- VENDOR_ID / VENDOR_SITE_ID — supplier and supplier site responsible for the invoice.
- INVOICE_NUM — the supplier's invoice number, central to duplicate suppression.
- INVOICE_TYPE_LOOKUP_CODE / SOURCE — invoice type (Standard, Credit, Debit, Prepayment) and origin (e.g., ERS, recurring).
- INVOICE_DATE / GL_DATE — document date and accounting date for the transaction.
- INVOICE_AMOUNT / BASE_AMOUNT / AMOUNT_PAID — entered, ledger-currency, and paid amounts.
- INVOICE_CURRENCY_CODE / PAYMENT_CURRENCY_CODE / EXCHANGE_RATE — currency and conversion context.
- TERMS_ID / TERMS_DATE — payment terms and the date from which due dates are derived.
- PAYMENT_STATUS_FLAG / APPROVAL_STATUS / POSTING_STATUS — lifecycle state of the document.
- ACCTS_PAY_CODE_COMBINATION_ID — the liability account credited on validation.
- SET_OF_BOOKS_ID / ORG_ID / LEGAL_ENTITY_ID — ledger, operating unit, and legal entity context.
- DOC_SEQUENCE_ID / DOC_SEQUENCE_VALUE — the unique business-key document sequence for the invoice.
- BATCH_ID / RECURRING_PAYMENT_ID — grouping when sourced from an invoice batch or recurring template.
- PO_HEADER_ID / PROJECT_ID / TASK_ID — purchasing and project associations where applicable.
Common Use Cases and Queries
Reporting and reconciliation against AP_INVOICES_ALL is routine in Payables and subledger accounting. A typical query joins header to lines and distributions to produce an invoice-level summary. For example, open invoices awaiting payment:
- Filter on PAYMENT_STATUS_FLAG = 'N' and APPROVAL_STATUS = 'A' to list unpaid, approved invoices by supplier.
- Match to PO_HEADERS_ALL via PO_HEADER_ID to compare invoiced versus ordered quantities.
- Aggregate INVOICE_AMOUNT and BASE_AMOUNT by SET_OF_BOOKS_ID and GL_DATE for period close.
- Join AP_PAYMENT_SCHEDULES_ALL.INVOICE_ID = AP_INVOICES_ALL.INVOICE_ID to derive aging and due dates.
- Query AP_HOLDS_ALL by INVOICE_ID to report invoices blocked from payment.
A representative pattern is: SELECT i.INVOICE_NUM, i.INVOICE_DATE, i.INVOICE_AMOUNT FROM AP.AP_INVOICES_ALL i WHERE i.ORG_ID = :org AND i.PAYMENT_STATUS_FLAG = 'N' ORDER BY i.INVOICE_DATE;. Duplicate detection uses VENDOR_ID plus INVOICE_NUM.
Related Objects
AP_INVOICES_ALL sits at the center of a dense foreign-key graph. The most significant dependents and references include:
- AP_INVOICE_LINES_ALL — joins on INVOICE_ID; stores the line-level detail beneath the header.
- AP_INVOICE_DISTRIBUTIONS_ALL — joins on INVOICE_ID; the accounting distributions that post to the GL.
- AP_PAYMENT_SCHEDULES_ALL — joins on INVOICE_ID; defines due dates and payment amounts.
- AP_HOLDS_ALL — joins on INVOICE_ID; records validation and matching holds.
- AP_INVOICE_PAYMENTS_ALL — joins on INVOICE_ID; links invoices to the payments settling them.
- AP_BATCHES_ALL — referenced via BATCH_ID for invoice batching.
- PO_HEADERS_ALL — referenced via PO_HEADER_ID for matched purchase orders.
- PO_VENDORS / AP_SUPPLIER_SITES_ALL — supplier and supplier site master data referenced by VENDOR_ID and VENDOR_SITE_ID.
- GL_CODE_COMBINATIONS — referenced via ACCTS_PAY_CODE_COMBINATION_ID and PA_DEFAULT_DIST_CCID.
- AP_INVOICE_PREPAYS_ALL and FV_INVOICE_RETURNS_ALL — public-sector and prepayment application tables joining on INVOICE_ID.
Together these relationships make AP_INVOICES_ALL the hub through which Payables header data is extended into lines, distributions, payments, and holds.
-
Table: AP_INVOICES_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INVOICES_ALL, object_name:AP_INVOICES_ALL, status:VALID, product: AP - Payables , description: Detailed invoice records , implementation_dba_data: AP.AP_INVOICES_ALL ,
-
Table: AP_INVOICES_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INVOICES_ALL, object_name:AP_INVOICES_ALL, status:VALID, product: AP - Payables , description: Detailed invoice records , implementation_dba_data: AP.AP_INVOICES_ALL ,
-
Table: AP_INVOICE_DISTRIBUTIONS_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INVOICE_DISTRIBUTIONS_ALL, object_name:AP_INVOICE_DISTRIBUTIONS_ALL, status:VALID, product: AP - Payables , description: Invoice distribution line information , implementation_dba_data: AP.AP_INVOICE_DISTRIBUTIONS_ALL ,
-
Table: AP_INVOICE_DISTRIBUTIONS_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INVOICE_DISTRIBUTIONS_ALL, object_name:AP_INVOICE_DISTRIBUTIONS_ALL, status:VALID, product: AP - Payables , description: Invoice distribution line information , implementation_dba_data: AP.AP_INVOICE_DISTRIBUTIONS_ALL ,
-
Table: AP_INVOICE_LINES_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INVOICE_LINES_ALL, object_name:AP_INVOICE_LINES_ALL, status:VALID, product: AP - Payables , description: AP_INVOICE_LINES_ALL contains records for invoice lines entered manually, generated automatically or imported from the Open Interface. , implementation_dba_data: AP.AP_INVOICE_LINES_ALL ,
-
Table: AP_INVOICE_LINES_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INVOICE_LINES_ALL, object_name:AP_INVOICE_LINES_ALL, status:VALID, product: AP - Payables , description: AP_INVOICE_LINES_ALL contains records for invoice lines entered manually, generated automatically or imported from the Open Interface. , implementation_dba_data: AP.AP_INVOICE_LINES_ALL ,
-
Table: AP_INVOICE_PREPAYS_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INVOICE_PREPAYS_ALL, object_name:AP_INVOICE_PREPAYS_ALL, status:VALID, product: AP - Payables , description: Invoice prepayment records , implementation_dba_data: AP.AP_INVOICE_PREPAYS_ALL ,
-
Table: AP_INVOICE_RELATIONSHIPS
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INVOICE_RELATIONSHIPS, object_name:AP_INVOICE_RELATIONSHIPS, status:VALID, product: AP - Payables , description: Relationships between invoices and interest invoices automatically created for overdue invoices , implementation_dba_data: AP.AP_INVOICE_RELATIONSHIPS ,
-
Table: AP_INVOICE_PREPAYS_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INVOICE_PREPAYS_ALL, object_name:AP_INVOICE_PREPAYS_ALL, status:VALID, product: AP - Payables , description: Invoice prepayment records , implementation_dba_data: AP.AP_INVOICE_PREPAYS_ALL ,
-
Table: AP_INVOICE_RELATIONSHIPS
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INVOICE_RELATIONSHIPS, object_name:AP_INVOICE_RELATIONSHIPS, status:VALID, product: AP - Payables , description: Relationships between invoices and interest invoices automatically created for overdue invoices , implementation_dba_data: AP.AP_INVOICE_RELATIONSHIPS ,
-
Table: AP_EXPENSE_REPORT_HEADERS_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_EXPENSE_REPORT_HEADERS_ALL, object_name:AP_EXPENSE_REPORT_HEADERS_ALL, status:VALID, product: AP - Payables , description: Header information about employee expense reports , implementation_dba_data: AP.AP_EXPENSE_REPORT_HEADERS_ALL ,
-
Table: AP_EXPENSE_REPORT_HEADERS_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_EXPENSE_REPORT_HEADERS_ALL, object_name:AP_EXPENSE_REPORT_HEADERS_ALL, status:VALID, product: AP - Payables , description: Header information about employee expense reports , implementation_dba_data: AP.AP_EXPENSE_REPORT_HEADERS_ALL ,
-
View: AP_DOCUMENT_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_DOCUMENT_LINES_V, object_name:AP_DOCUMENT_LINES_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_DOCUMENT_LINES_V ,
-
View: AP_DOCUMENT_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_DOCUMENT_LINES_V, object_name:AP_DOCUMENT_LINES_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_DOCUMENT_LINES_V ,
-
View: AP_INVOICES_READY_TO_PAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_INVOICES_READY_TO_PAY_V, object_name:AP_INVOICES_READY_TO_PAY_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_INVOICES_READY_TO_PAY_V ,
-
View: AP_VIEW_PREPAYS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_VIEW_PREPAYS_V, object_name:AP_VIEW_PREPAYS_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_VIEW_PREPAYS_V ,
-
View: AP_VIEW_PREPAYS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_VIEW_PREPAYS_V, object_name:AP_VIEW_PREPAYS_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_VIEW_PREPAYS_V ,
-
View: AP_INVOICES_READY_TO_PAY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_INVOICES_READY_TO_PAY_V, object_name:AP_INVOICES_READY_TO_PAY_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_INVOICES_READY_TO_PAY_V ,
-
View: AP_WFAPPROVAL_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_WFAPPROVAL_HISTORY_V, object_name:AP_WFAPPROVAL_HISTORY_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_WFAPPROVAL_HISTORY_V ,
-
View: AP_INVOICE_PAYMENT_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_INVOICE_PAYMENT_HISTORY_V, object_name:AP_INVOICE_PAYMENT_HISTORY_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_INVOICE_PAYMENT_HISTORY_V ,
-
View: AP_INVOICE_PAYMENT_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_INVOICE_PAYMENT_HISTORY_V, object_name:AP_INVOICE_PAYMENT_HISTORY_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_INVOICE_PAYMENT_HISTORY_V ,
-
Table: AP_TRIAL_BAL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_TRIAL_BAL, object_name:AP_TRIAL_BAL, status:VALID, product: AP - Payables , description: No longer used , implementation_dba_data: AP.AP_TRIAL_BAL ,
-
Table: AP_UNSELECTED_INVOICES_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_UNSELECTED_INVOICES_ALL, object_name:AP_UNSELECTED_INVOICES_ALL, status:VALID, product: AP - Payables , description: This table holds invoices that could not be paid by a payment batch. , implementation_dba_data: AP.AP_UNSELECTED_INVOICES_ALL ,
-
View: AP_INVOICE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_INVOICE_LINES_V, object_name:AP_INVOICE_LINES_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_INVOICE_LINES_V ,
-
Table: AP_HOLDS_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_HOLDS_ALL, object_name:AP_HOLDS_ALL, status:VALID, product: AP - Payables , description: Invoice hold information , implementation_dba_data: AP.AP_HOLDS_ALL ,
-
Table: AP_HOLDS_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_HOLDS_ALL, object_name:AP_HOLDS_ALL, status:VALID, product: AP - Payables , description: Invoice hold information , implementation_dba_data: AP.AP_HOLDS_ALL ,
-
Table: AP_TRIAL_BALANCE
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_TRIAL_BALANCE, object_name:AP_TRIAL_BALANCE, status:VALID, product: AP - Payables , description: Denormalized information about posted invoices for your accrual set of books , implementation_dba_data: AP.AP_TRIAL_BALANCE ,
-
Table: AP_TRIAL_BAL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_TRIAL_BAL, object_name:AP_TRIAL_BAL, status:VALID, product: AP - Payables , description: No longer used , implementation_dba_data: AP.AP_TRIAL_BAL ,
-
Table: AP_AWT_TAX_RATES_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_AWT_TAX_RATES_ALL, object_name:AP_AWT_TAX_RATES_ALL, status:VALID, product: AP - Payables , description: Withholding tax rates , implementation_dba_data: AP.AP_AWT_TAX_RATES_ALL ,
-
Table: AP_AWT_TAX_RATES_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_AWT_TAX_RATES_ALL, object_name:AP_AWT_TAX_RATES_ALL, status:VALID, product: AP - Payables , description: Withholding tax rates , implementation_dba_data: AP.AP_AWT_TAX_RATES_ALL ,
-
Table: AP_PURGE_INVOICE_LIST
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_PURGE_INVOICE_LIST, object_name:AP_PURGE_INVOICE_LIST, status:VALID, product: AP - Payables , description: Temporary storage of invoice IDs for invoice purge candidates , implementation_dba_data: AP.AP_PURGE_INVOICE_LIST ,
-
Table: AP_UNSELECTED_INVOICES_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_UNSELECTED_INVOICES_ALL, object_name:AP_UNSELECTED_INVOICES_ALL, status:VALID, product: AP - Payables , description: This table holds invoices that could not be paid by a payment batch. , implementation_dba_data: AP.AP_UNSELECTED_INVOICES_ALL ,
-
Table: AP_PAYMENT_SCHEDULES_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_PAYMENT_SCHEDULES_ALL, object_name:AP_PAYMENT_SCHEDULES_ALL, status:VALID, product: AP - Payables , description: Scheduled payment information on invoices , implementation_dba_data: AP.AP_PAYMENT_SCHEDULES_ALL ,
-
Table: AP_DOC_SEQUENCE_AUDIT
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_DOC_SEQUENCE_AUDIT, object_name:AP_DOC_SEQUENCE_AUDIT, status:VALID, product: AP - Payables , description: Voucher numbers assigned to invoices and payments , implementation_dba_data: AP.AP_DOC_SEQUENCE_AUDIT ,
-
Table: AP_DOC_SEQUENCE_AUDIT
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_DOC_SEQUENCE_AUDIT, object_name:AP_DOC_SEQUENCE_AUDIT, status:VALID, product: AP - Payables , description: Voucher numbers assigned to invoices and payments , implementation_dba_data: AP.AP_DOC_SEQUENCE_AUDIT ,
-
Table: AP_PURGE_INVOICE_LIST
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_PURGE_INVOICE_LIST, object_name:AP_PURGE_INVOICE_LIST, status:VALID, product: AP - Payables , description: Temporary storage of invoice IDs for invoice purge candidates , implementation_dba_data: AP.AP_PURGE_INVOICE_LIST ,
-
Table: AP_TRIAL_BALANCE
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_TRIAL_BALANCE, object_name:AP_TRIAL_BALANCE, status:VALID, product: AP - Payables , description: Denormalized information about posted invoices for your accrual set of books , implementation_dba_data: AP.AP_TRIAL_BALANCE ,
-
Table: AP_AWT_TEMP_DISTRIBUTIONS_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_AWT_TEMP_DISTRIBUTIONS_ALL, object_name:AP_AWT_TEMP_DISTRIBUTIONS_ALL, status:VALID, product: AP - Payables , description: Withholding tax temporary distributions , implementation_dba_data: AP.AP_AWT_TEMP_DISTRIBUTIONS_ALL ,
-
Table: AP_AWT_TEMP_DISTRIBUTIONS_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_AWT_TEMP_DISTRIBUTIONS_ALL, object_name:AP_AWT_TEMP_DISTRIBUTIONS_ALL, status:VALID, product: AP - Payables , description: Withholding tax temporary distributions , implementation_dba_data: AP.AP_AWT_TEMP_DISTRIBUTIONS_ALL ,
-
View: AP_INVOICE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_INVOICE_LINES_V, object_name:AP_INVOICE_LINES_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_INVOICE_LINES_V ,
-
Table: AP_BATCHES_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_BATCHES_ALL, object_name:AP_BATCHES_ALL, status:VALID, product: AP - Payables , description: Summary invoice batch information , implementation_dba_data: AP.AP_BATCHES_ALL ,
-
Table: AP_PAYMENT_SCHEDULES_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_PAYMENT_SCHEDULES_ALL, object_name:AP_PAYMENT_SCHEDULES_ALL, status:VALID, product: AP - Payables , description: Scheduled payment information on invoices , implementation_dba_data: AP.AP_PAYMENT_SCHEDULES_ALL ,
-
Table: AP_SUPPLIER_SITES_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_SUPPLIER_SITES_ALL, object_name:AP_SUPPLIER_SITES_ALL, status:VALID, product: AP - Payables , description: AP_SUPPLIER_SITES_ALL stores information about your supplier site level attributes. , implementation_dba_data: AP.AP_SUPPLIER_SITES_ALL ,
-
Table: AP_INV_APRVL_HIST_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INV_APRVL_HIST_ALL, object_name:AP_INV_APRVL_HIST_ALL, status:VALID, product: AP - Payables , description: AP_INV_APRVL_HIST_ALL contains the approval and rejection history of each invoice that passes through the Invoice Approval Workflow process. The process inserts a record for each approver assigned to review an invoice. , implementation_dba_data: AP.AP_INV_APRVL_HIST_ALL ,
-
Table: AP_INV_APRVL_HIST_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_INV_APRVL_HIST_ALL, object_name:AP_INV_APRVL_HIST_ALL, status:VALID, product: AP - Payables , description: AP_INV_APRVL_HIST_ALL contains the approval and rejection history of each invoice that passes through the Invoice Approval Workflow process. The process inserts a record for each approver assigned to review an invoice. , implementation_dba_data: AP.AP_INV_APRVL_HIST_ALL ,
-
Table: AP_BATCHES_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_BATCHES_ALL, object_name:AP_BATCHES_ALL, status:VALID, product: AP - Payables , description: Summary invoice batch information , implementation_dba_data: AP.AP_BATCHES_ALL ,
-
Table: AP_AWT_GROUPS
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_AWT_GROUPS, object_name:AP_AWT_GROUPS, status:VALID, product: AP - Payables , description: Withholding tax groups , implementation_dba_data: AP.AP_AWT_GROUPS ,
-
Table: AP_RECURRING_PAYMENTS_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_RECURRING_PAYMENTS_ALL, object_name:AP_RECURRING_PAYMENTS_ALL, status:VALID, product: AP - Payables , description: Recurring invoice parameters , implementation_dba_data: AP.AP_RECURRING_PAYMENTS_ALL ,
-
Table: AP_RECURRING_PAYMENTS_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_RECURRING_PAYMENTS_ALL, object_name:AP_RECURRING_PAYMENTS_ALL, status:VALID, product: AP - Payables , description: Recurring invoice parameters , implementation_dba_data: AP.AP_RECURRING_PAYMENTS_ALL ,
-
Table: AP_AWT_GROUPS
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_AWT_GROUPS, object_name:AP_AWT_GROUPS, status:VALID, product: AP - Payables , description: Withholding tax groups , implementation_dba_data: AP.AP_AWT_GROUPS ,