- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
Is there a way to show breakup of the fixed cost in reports generated?
We have configured multiple costs at Vapp and VM levels depending on what services user want to purchase. Report is show them all added up.
Thanks,
Savita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Savita,
In a pdf cost report, fixed costs can be seen as separate line items in the details section. Can you please attach a report so that we can understand the issue? Also, details like which CBM version and the entities in question will help.
Thanks,
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am generation xml report using REST API call and customizing it as per our requirement to display on our website. Is there a way to get detailed fixed cost through REST or Java API?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Savita,
PDF reports are nothing but an representation of XML report. I think following XPath is the one what you are looking for:
//Reports/Report/ComputedData/EntityDetail/Entity/Parents/CostModel/FixedCosts/FixedCost
Please refer API guide for details.
Thanks
Diwakar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Diwaker,
Sorry for replying late. I am aware of this XPath but it contain only total price. Even if I have multiple Fixed Cost, it will sum up all and displays as one element. for ex.:
<FixedCosts>
<FixedCost>12460.7857101520</FixedCost>
</FixedCosts>
I want to know the breakup as well as name corresponding to fixed cost applied just like computing resources:
<Resource id="10">
<Name>vCPU</Name>
<Usage>1.000</Usage>
<Cost>3.3599922222</Cost>
</Resource>
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sorry I just figured out I was looking under EntitySummary. Thanks for your help!