- Use Cases
- Allocation
- Verify accuracy of provider invoices aka invoice reconciliation
Verify accuracy of provider invoices aka invoice reconciliation
FOCUS Versions
v1.2
v1.3
v1.4
Context
Aggregate provider billing data for each period and reconcile it against provider invoices to validate charge accuracy, flag discrepancies, and strengthen financial accountability.
FOCUS SQL Query
SELECT
InvoiceIssuerName,
InvoiceId,
SUM(BilledCost) AS TotalBilledCost
FROM focus_data_table
WHERE ChargePeriodStart >= ? and ChargePeriodEnd < ?
GROUP BY
InvoiceIssuerName,
InvoiceId