Disbursement Payment File Formats
The disbursement payment file formats configured in Payments — the electronic formats (ISO 20022 pain.001, NACHA, BACS, regional schemes) used to transmit payments to each bank, with their mapping and status.
Sample build of the Disbursement Payment File Formats — reconciled, and rendered tool-neutral so it runs in Power BI, ThoughtSpot, or Tableau.
| Format | Scheme | Bank | Payment Method | Status |
|---|---|---|---|---|
| Sample | Sample | Sample | Standard | Open |
| — | — | — | Corporate | Posted |
| Sample | Sample | Sample | Standard | Validated |
| — | — | — | Default | Open |
| Sample | Sample | Sample | Standard | Paid |
| Sample | Sample | Sample | Standard | Open |
The report reads the configured disbursement formats and their bank and payment-method assignments.
Two banks have a payment method with no format assigned — electronic payments to them won't generate a file and will fail the run.
Assign a format to each active bank-and-method pair; an unmapped method is a guaranteed payment-file failure.
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
- IBY_TRXN_DOCUMENTS
- IBY_FORMATS_VL
- IBY_PAYMENT_METHODS_TL
Show / hide SQL
SELECT XMLTYPE(DOCUMENT, NLS_CHARSET_ID('UTF8'))
FROM IBY_TRXN_DOCUMENTS WHERE TRXN_DOCUMENT_ID =:TRXN_DOCUMENT_IDThe 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.
| Element | Type | Definition |
|---|---|---|
| IBY_FORMATS_VL | dimension | dimension |
| IBY_PAYMENT_METHODS_TL | dimension | dimension |
| Amount | measure | measure |
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.
| Table | Reporting columns | Subject areas |
|---|---|---|
| IBY_TRXN_DOCUMENTS | Setup / configuration table — joined for reference, not exposed for analytics | |
| IBY_FORMATS_VL | Setup / configuration table — joined for reference, not exposed for analytics | |
| IBY_PAYMENT_METHODS_TL | 3 | 9 |