Analytics Catalog/Oracle Fusion ERP/Payables/AP Vendor Financing Batch Creation Inquiry Report
Explore the catalogReportsModulesEnterprise modelOTBI subject areasBICC PVOs
Oracle Fusion · Payables

AP Vendor Financing Batch Creation Inquiry Report

Payables

An inquiry into vendor-financing (supply-chain finance) batches — which approved invoices were offered for early payment or financing, the discount taken, and the financed amount by supplier and bank.

Sample build of the AP Vendor Financing Batch Creation Inquiry Report — reconciled, and rendered tool-neutral so it runs in Power BI, ThoughtSpot, or Tableau.

AP Vendor Financing Batch Creation Inquiry Report
Sample build · illustrative
Filters
Business Unit
APAC
Currency
USD
Supplier Name
Globex Holdings
420
Financed invoices
$6.10M
Financed value
$92K
Discount captured
SupplierInvoiceOriginal DueFinanced AmountDiscountSettlement Date
Acme IndustrialSampleSample$1,240,500.00Sample2026-04-30
Northwind Trading$842,150.752026-03-31
Globex HoldingsSampleSample$96,400.00Sample2026-02-28
Initech LLC$1,005,233.102026-01-31
Umbrella CorpSampleSample$58,720.40Sample2025-12-31
Acme IndustrialSampleSample$1,240,500.00Sample2026-04-30
AI Analyst · active
reading

The report reads financed invoices and their settlement against AP payments, by supplier and bank.

flag

A block of invoices was financed at a discount rate higher than the company's cost of capital — the financing cost more than holding the cash would have.

root cause & next step

Set the financing-discount threshold to the cost of capital so the program only finances invoices where early payment actually pays.

Illustrative data. The live interactive version — drill-through, filters, export, and the AI Analyst — runs on your warehouse. See it live →

This is the report's BI Publisher data model — the SQL data set BI Publisher runs against Oracle tables to produce the output. The same SQL becomes a dbt model in your warehouse, so one definition drives both the formatted report and the analytics layer.

Data sources

How it interconnects: this data set reads the physical tables above. Those same tables surface in OTBI as subject areas and in BICC as PVOs — three lenses on one source. Open any table to trace its subject areas and View Objects.
SQL data set · genericized · parameterized · no hardcoded segments
Show / hide SQL
SELECT KEY KEY,
'SFTP' TEMPLATE,
'en-us' LOCALE,
'CSV' OUTPUT_FORMAT,
'BOAMAP-'||SYSDATE OUTPUT_NAME,
'EMAIL' DEL_CHANNEL,
'' parameter1, --TO
--'' parameter2, --CC
'' parameter3,--FROM
'CUSTOM AP Vendor Financing' parameter4, --SUBJECT
'true' parameter6
FROM
(SELECT distinct '1' KEY,AIA.INVOICE_NUM INVOICE_NUMBER
          ,AIA.INVOICE_CURRENCY_CODE CURRENCY_CODE
	  ,AIA.INVOICE_AMOUNT invoice_amount
	  ,to_char(ACA.CHECK_DATE,'YYYYMMDD') MATURITY_DATE
	  ,POZ.SEGMENT1 SUPPLIER_NUMBER
	  ,POZ.VENDOR_NAME SUPPLIER_NAME
	  ,' CUSTOM Asia Pacific Sourcing Limited' BUYER_NAME
	  ,HAOU.NAME PAYING_AGENT
  FROM AP_INVOICES_ALL AIA 
          ,AP_INVOICE_PAYMENTS_ALL AIPA
	  ,AP_CHECKS_ALL ACA
	  ,POZ_SUPPLIERS_V POZ
          --,POZ_SUPPLIER_SITES_ALL_M PSSA
	  ,HR_ALL_ORGANIZATION_UNITS HAOU
WHERE AIA.INVOICE_ID = AIPA.INVOICE_ID
  AND AIPA.CHECK_ID = ACA.CHECK_ID
  --AND POZ.VENDOR_iD = PSSA.VENDOR_ID
  --AND PSSA.PAY_GROUP_LOOKUP_CODE = 'BOADIRECT'
  AND (HAOU.NAME IN (:P_BUSINESS_UNIT) OR 'All' IN ('All'||:P_BUSINESS_UNIT))
  AND (POZ.VENDOR_NAME IN (:P_SUPPLIER_NAME) OR 'All' IN ('All'||:P_SUPPLIER_NAME))
  AND (AIA.INVOICE_CURRENCY_CODE IN (:P_CURRENCY) OR 'All' IN ('All'||:P_CURRENCY))
  AND POZ.VENDOR_ID = AIA.VENDOR_ID
  AND HAOU.ORGANIZATION_ID = AIA.ORG_ID
  ORDER BY POZ.VENDOR_NAME,AIA.INVOICE_NUM)
UNION
SELECT KEY KEY,
'SFTP' TEMPLATE,
'en-us' LOCALE,
'CSV' OUTPUT_FORMAT,
'AP Vendor Financing For:- '||SUPPLIER_NAME OUTPUT_NAME,
'EMAIL' DEL_CHANNEL,
'' parameter1, --TO
--'' parameter2, --CC
'' parameter3,--FROM
'CUSTOM AP Vendor Financing' parameter4, --SUBJECT
'true' parameter6
FROM
(SELECT distinct '1' KEY,AIA.INVOICE_NUM INVOICE_NUMBER
          ,AIA.INVOICE_CURRENCY_CODE CURRENCY_CODE
	  ,AIA.INVOICE_AMOUNT invoice_amount
	  ,to_char(ACA.CHECK_DATE,'YYYYMMDD') MATURITY_DATE
	  ,POZ.SEGMENT1 SUPPLIER_NUMBER
	  ,POZ.VENDOR_NAME SUPPLIER_NAME
	  ,' CUSTOM Asia Pacific Sourcing Limited' BUYER_NAME
	  ,HAOU.NAME PAYING_AGENT
  FROM AP_INVOICES_ALL AIA 
          ,AP_INVOICE_PAYMENTS_ALL AIPA
	  ,AP_CHECKS_ALL ACA
	  ,POZ_SUPPLIERS_V POZ
          --,POZ_SUPPLIER_SITES_ALL_M PSSA
	  ,HR_ALL_ORGANIZATION_UNITS HAOU
WHERE AIA.INVOICE_ID = AIPA.INVOICE_ID
  AND AIPA.CHECK_ID = ACA.CHECK_ID
  --AND POZ.VENDOR_iD = PSSA.VENDOR_ID
  --AND PSSA.PAY_GROUP_LOOKUP_CODE = 'BOADIRECT'
  AND (HAOU.NAME IN (:P_BUSINESS_UNIT) OR 'All' IN ('All'||:P_BUSINESS_UNIT))
  AND (POZ.VENDOR_NAME IN (:P_SUPPLIER_NAME) OR 'All' IN ('All'||:P_SUPPLIER_NAME))
  AND (AIA.INVOICE_CURRENCY_CODE IN (:P_CURRENCY) OR 'All' IN ('All'||:P_CURRENCY))
  AND POZ.VENDOR_ID = AIA.VENDOR_ID
  AND HAOU.ORGANIZATION_ID = AIA.ORG_ID
  ORDER BY POZ.VENDOR_NAME,AIA.INVOICE_NUM)
:P_BUSINESS_UNIT :P_CURRENCY :P_SUPPLIER_NAME

The data-warehouse model — one fact surrounded by conformed dimensions (what you slice by) and measures (what you aggregate), expressed as dbt so it migrates with you. Grain: one row per source transaction.

AP_INVOICE_PAYMENTS_ALLdimensionAP_CHECKS_ALLdimensionPOZ_SUPPLIERS_VdimensionPOZ_SUPPLIER_SITES_ALL_MdimensionAP_INVOICES_ALLfact · one row per source transactionFinanced Amount
●— fact → dimension join
ElementTypeDefinition
AP_INVOICE_PAYMENTS_ALLdimensiondimension
AP_CHECKS_ALLdimensiondimension
POZ_SUPPLIERS_Vdimensiondimension
POZ_SUPPLIER_SITES_ALL_Mdimensiondimension
Financed Amountmeasuremeasure
Runs on your cloud warehouse — Snowflake, BigQuery, Redshift, or Synapse on AWS, Google Cloud, Azure, or any provider. Reconciled to the source control total — 0% variance by design. You own the code, the model, and the data.
How the data gets here: a BICC bulk extract of the source tables above, on the same pattern for every report. See the extraction pattern & data flow →
See the complete model
How this report's fact and dimensions fit the full picture, via conformed keys.
Payables data model →Enterprise model →

Every source object behind this report. Each linked table has its own page with full column descriptions, drawn from the Oracle BICC lineage and articulated for practitioners.

TableReporting columnsSubject areas
AP_INVOICES_ALL6315
AP_INVOICE_PAYMENTS_ALL222
AP_CHECKS_ALL446
POZ_SUPPLIERS_V224
POZ_SUPPLIER_SITES_ALL_M17956
Reporting columns = fields the report selects that are exposed as analytics attributes; subject areas = the OTBI subject areas the table appears in. Setup and configuration tables (master data, ledger and book setup, lookups) are referenced by the report's joins but aren't exposed as analytics columns or subject areas — that's expected, not a gap.