Skip to content

Commit 677d017

Browse files
committed
MCM - Update UnusedBenefit to UnusedSavingsPlan refs
1 parent b222869 commit 677d017

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

articles/cost-management-billing/savings-plan/charge-back-costs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: cost-management-billing
88
ms.subservice: savings-plan
99
ms.custom: ignite-2022
1010
ms.topic: how-to
11-
ms.date: 10/12/2022
11+
ms.date: 06/14/2023
1212
ms.author: banders
1313
---
1414

@@ -63,7 +63,7 @@ Information in the following table about metric and filter can help solve common
6363
| **Usage that got savings plan discount** | Request for an ActualCost report. <br><br> Once you've ingested all of the usage, look for records with ChargeType = 'Usage' and PricingModel = 'SavingsPlan'. |
6464
| **Usage that didn't get savings plan discount** | Request for an ActualCost report.<br><br> Once you've ingested all of the usage, filter for usage records with PricingModel = 'OnDemand'. |
6565
| **Amortized charges (usage and purchases)** | Request for an AmortizedCost report. |
66-
| **Unused savings plan report** | Request for an AmortizedCost report.<br><br> Once you've ingested all of the usage, filter for usage records with ChargeType = 'UnusedBenefit' and PricingModel ='SavingsPlan'. |
66+
| **Unused savings plan report** | Request for an AmortizedCost report.<br><br> Once you've ingested all of the usage, filter for usage records with ChargeType = 'UnusedSavingsPlan' and PricingModel ='SavingsPlan'. |
6767
| **Savings plan purchases** | Request for an AmortizedCost report.<br><br> Once you've ingested all of the usage, filter for usage records with ChargeType = 'Purchase' and PricingModel = 'SavingsPlan'. |
6868
| **Refunds** | Request for an AmortizedCost report.<br><br> Once you've ingested all of the usage, filter for usage records with ChargeType = 'Refund'. |
6969

articles/cost-management-billing/savings-plan/utilization-cost-reports.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: cost-management-billing
88
ms.subservice: savings-plan
99
ms.custom: ignite-2022
1010
ms.topic: how-to
11-
ms.date: 02/03/2023
11+
ms.date: 06/14/2023
1212
ms.author: banders
1313
---
1414

@@ -45,7 +45,7 @@ Comparison of two data sets:
4545
| --- | --- | --- |
4646
| Savings plan purchases | To get the data filter on `ChargeType` = `Purchase`.<br><br> Refer to `BenefitID` or `BenefitName` to know which savings plan the charge is for. | Purchase costs aren't provided in amortized data. |
4747
| `EffectivePrice` | The value is zero for usage that gets savings plan discount. | The value is per-hour prorated cost of the savings plan for usage that has the savings plan discount. |
48-
| Unused benefit (provides the number of hours the savings plan wasn't used in a day and the monetary value of the waste) | Not applicable in the view. | To get the data, filter on `ChargeType` = `UnusedBenefit`.<br><br> Refer to `BenefitID` or `BenefitName` to know which savings plan was underutilized. It's how much of the savings plan was wasted for the day. |
48+
| Unused benefit (provides the number of hours the savings plan wasn't used in a day and the monetary value of the waste) | Not applicable in the view. | To get the data, filter on `ChargeType` = `UnusedSavingPlan`.<br><br> Refer to `BenefitID` or `BenefitName` to know which savings plan was underutilized. It's how much of the savings plan was wasted for the day. |
4949
| `UnitPrice` (price of the resource from your price sheet) | Available | Available |
5050

5151
## Get Azure consumption and savings plan cost data using API
@@ -61,7 +61,7 @@ Information in the following table about metrics and filters can help solve for
6161
Once you've ingested all the usage, look for records with ChargeType = `Usage` and `PricingModel` = `SavingsPlan`. |
6262
| Usage that didn't get savings plan discount | Request for an ActualCost report. <br><br> Once you've ingested all the usage, filter for usage records with `PricingModel` = `OnDemand`. |
6363
| Amortized charges (usage and purchases) | Request for an AmortizedCost report. |
64-
| Unused savings plan report | Request for an AmortizedCost report.<br><br> Once you've ingested all of the usage, filter for usage records with ChargeType = `UnusedBenefit` and `PricingModel` =`SavingsPlan`. |
64+
| Unused savings plan report | Request for an AmortizedCost report.<br><br> Once you've ingested all of the usage, filter for usage records with ChargeType = `UnusedSavingsPlan` and `PricingModel` =`SavingsPlan`. |
6565
| Savings plan purchases | Request for an ActualCost report. <br><br> Once you've ingested all the usage, filter for usage records with `ChargeType` = `Purchase` and `PricingModel` = `SavingsPlan`. |
6666
| Refunds | Request for an ActualCost report. <br><br> Once you've ingested all the usage, filter for usage records with `ChargeType` = `Refund`. |
6767

@@ -105,7 +105,7 @@ Savings plan purchase costs are available in Actual Cost data. Filter for `Charg
105105

106106
### Get underutilized savings plan quantity and costs
107107

108-
Get Amortized Cost data and filter for `ChargeType` = `UnusedBenefit` and `PricingModel` = `SavingsPlan`. You get the daily unused savings plan quantity and the cost. You can filter the data for a Savings Plan or Savings Plan order using `BenefitId` and `ProductOrderId` fields, respectively. If a Savings Plan was 100% utilized, the record has a quantity of 0.
108+
Get Amortized Cost data and filter for `ChargeType` = `UnusedSavingsPlan` and `PricingModel` = `SavingsPlan`. You get the daily unused savings plan quantity and the cost. You can filter the data for a Savings Plan or Savings Plan order using `BenefitId` and `ProductOrderId` fields, respectively. If a Savings Plan was 100% utilized, the record has a quantity of 0.
109109

110110
### Amortize savings plan costs
111111

@@ -138,15 +138,15 @@ To determine the savings percentage from the discounted price:
138138
1. Subtract `PayGPrice` from `Cost` to get the savings from the savings plan against discounts.
139139
1. Divide `Cost` by `PayGPrice` and then divide by 100 to get the discount percentage applied, per line item.
140140

141-
Keep in mind that if you have an underutilized savings plan, the `UnusedBenefit` entry for `ChargeType` becomes a factor to consider. When you have a fully utilized savings plan, you receive the maximum savings possible. Any `UnusedBenefit` quantity reduces savings.
141+
Keep in mind that if you have an underutilized savings plan, the `UnusedSavingsPlan` entry for `ChargeType` becomes a factor to consider. When you have a fully utilized savings plan, you receive the maximum savings possible. Any `UnusedSavingsPlan` quantity reduces savings.
142142

143143
### Savings plan purchases and amortization in cost analysis
144144

145145
Savings plan costs are available in [cost analysis](https://aka.ms/costanalysis). By default, cost analysis shows  **Actual cost** , which is how costs will be shown on your bill. To view savings plan purchases broken down and associated with the resources that used the benefit, switch to **Amortized cost**. Here's an example.
146146

147147
:::image type="content" source="./media/utilization-cost-reports/portal-cost-analysis-amortized-view.png" alt-text="Example showing where to select amortized cost in cost analysis." lightbox="./media/utilization-cost-reports/portal-cost-analysis-amortized-view.png" :::
148148

149-
Group by **Charge Type** to see a breakdown of usage, purchases, and refunds; or by **Pricing Model** for a breakdown of savings plan and on-demand costs. You can also group by **Benefit** and use the **BenefitId** and **BenefitName** associated with your savings plan to identify the costs related to specific savings plan purchases. The only savings plan costs you'll see when looking at actual cost are purchases. Costs will be allocated to the individual resources that used the benefit when looking at amortized cost. You'll also see a new **UnusedBenefit** plan charge type when looking at amortized cost.
149+
Group by **Charge Type** to see a breakdown of usage, purchases, and refunds; or by **Pricing Model** for a breakdown of savings plan and on-demand costs. You can also group by **Benefit** and use the **BenefitId** and **BenefitName** associated with your savings plan to identify the costs related to specific savings plan purchases. The only savings plan costs you'll see when looking at actual cost are purchases. Costs will be allocated to the individual resources that used the benefit when looking at amortized cost. You'll also see a new **UnusedSavingsPlan** plan charge type when looking at amortized cost.
150150

151151
## Next steps
152152

0 commit comments

Comments
 (0)