THE LINUX FOUNDATION PROJECTS
Docs navigation
On this page

    2.18 Service Provider Services

    2.18.1 Description

    FOCUS supports service providers specifying the services and product offerings that they provide their customers that align with the names practitioners are familiar with. This empowers practitioners to analyze cost by service, report service costs by subaccount, forecast based on historical trends by service, and verify accuracy of services charged across service providers.

    2.18.2 Directly Dependent Columns

    2.18.3 Supporting Columns

    2.18.4 Example SQL Query

    Example SQL Query

    SELECT
      BillingPeriodStart,
      ServiceProviderName,
      SubAccountId,
      SubAccountName,
      ServiceName,
      SUM(BilledCost) AS TotalBilledCost,
      SUM(EffectiveCost) AS TotalEffectiveCost
    FROM focus_data_table
    WHERE ServiceName = ?
      AND BillingPeriodStart >= ? AND BillingPeriodStart < ?
    GROUP BY
      BillingPeriodStart,
      ServiceProviderName,
      SubAccountId,
      SubAccountName,
      ServiceName
    ORDER BY MonthlyCost DESC