-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Documentation Improvement] Convert Cost Management data to FOCUS #1125
Comments
We can clarify this. Your logic is correct for As a starting point, you should copy all rows from the amortized cost dataset and only the commitment purchases and refunds from the actual cost dataset. To identify commitment discount purchases and refunds, look for ChargeType == "Purchase" and PricingModel == "Reservation" or "SavingsPlan". For |
@brianwyka Would you mind taking a look at PR #1153 to see if that helps? |
Thanks @flanakin . I'll take a look at it today! If I understand correctly, I need both the Is there any alternative with just the actual cost data? If we only have the actual, can we only safely calculate |
Correct.
If you don't have any commitment discounts, then using actual cost alone is fine. If you do have commitment discounts, then you won't be able to show an accurate |
Btw, thanks for the review! I love your comments and depth in reviewing this! So awesome to see from the community! 😊 I responded to your comments with some additional suggestions. Take a look and let me know if it'd be better to walk thru this in a call. Happy to find some time. |
Today, the Convert Cost Management data to FOCUS documentation for performing transformation is not 100% clear for cost related columns.
BilledCost
andEffectiveCost
reference this footnote:I understand this as the following for
BilledCost
, but not sure if its correct.However,
EffectiveCost
does not give actual values that should be checked for proper calculation. What is the criteria for knowing a row is amortized and if the row is "commitment purchase or refund"?ContractedCost
has the column asUnitPrice * Quantity
and a description of a lookup required against thePricingUnits
reference data.Is the proper equation
UnitPrice * (Quantity / PricingBlockSize)
?🛠️ Solution
Please clearly document the conversion of
CostInBillingCurrency
forBilledCost
,EffectiveCost
andContractedCost
so there is no guessing in how this is done.🙋♀️ Ask for the community
We could use your help:
The text was updated successfully, but these errors were encountered: