- Use Cases
- Allocation
- Identify sources of billed cost
Identify sources of billed cost
FOCUS Versions
v1.3
v1.4
Context
Reconcile billing data from Service Providers, Host Providers, and Invoice Issuers to pinpoint true spend and eliminate duplicate charges.
FOCUS SQL Query
SELECT
ServiceProviderName,
HostProviderName,
InvoiceIssuerName,
InvoiceId,
SUM(BilledCost) AS TotalBilledCost
FROM focus_data_table
WHERE ChargePeriodStart >= ? and ChargePeriodEnd < ?
GROUP BY
ServiceProviderName,
HostProviderName,
InvoiceIssuerName,
InvoiceId