I am trying to display a simple Profit/Loss in Cognos Express ...The view has been created with the income lines and 12 months display of numbers.
When i create an ActiveForm out of that view...the numbers are ALL incorrect !! The DBRW() fomula points to the correct dimension parameters but all the months are displayed as "zero" when there correct values in the original cube views. The last month (June) is displaying the values for "All Periods" which that column (like others) are showing "zeros" when there should be values.
Has anyone encountered such a problem....
Thx
ActiveForm display of numbers incorrect from TM1
-
- Posts: 36
- Joined: Tue Sep 07, 2010 11:34 am
- OLAP Product: Cognos TM1
- Version: 10-2-2
- Excel Version: 2014
-
- Posts: 3
- Joined: Thu Jul 19, 2012 12:32 pm
- OLAP Product: TM1
- Version: 9.4.1
- Excel Version: 2003
Re: ActiveForm display of numbers incorrect from TM1
Hi!
Can you tell a little bit more about your issue? Did you create your view from CubeViewer and didn't modify anything?
If you modify few things, then it may be for multiple reasons.
When you edit your formula in Excel (F2) and then validate your formula, do you get your number?
If yes, check your TM1RptView formula for that.
Cheers,
Can you tell a little bit more about your issue? Did you create your view from CubeViewer and didn't modify anything?
If you modify few things, then it may be for multiple reasons.
When you edit your formula in Excel (F2) and then validate your formula, do you get your number?
If yes, check your TM1RptView formula for that.
Cheers,
-
- Posts: 78
- Joined: Wed Jul 31, 2013 4:32 am
- OLAP Product: Cognos TM1, EP, Analyst
- Version: 10.2.2
- Excel Version: 2013
- Location: Sydney AU
Re: ActiveForm display of numbers incorrect from TM1
First, I would check if your formulas are picking up the correct dimension element references, by changing the DBRW to DBR. If values are showing with DBRs then read on...
A tricky thing about activeforms is that generally requires you to include all relevant elements in your cubeview.
For example, if you have created a cube view that has limited your version/scenario element to Budget only. The TM1RPTTITLE part in the TM1RPTVIEW formula cuts down on the cube slice, to get better performance.
But after bringing this cubeview to an activeforms (with only budget scenario), you have decided to look up for values from the forecast scenario, then dbrw fomulas will return 0.
If that's the case, there are a couple of options:
1. Remove the TM1RptTitle component from the TM1RptView formula that has restricted the data to be retrieved. Beware though, this will have an impact on the performance.
2. Instead of using DBRW, change to DBR for those columns that are getting data from outside of the restricted cube slice.
A tricky thing about activeforms is that generally requires you to include all relevant elements in your cubeview.
For example, if you have created a cube view that has limited your version/scenario element to Budget only. The TM1RPTTITLE part in the TM1RPTVIEW formula cuts down on the cube slice, to get better performance.
But after bringing this cubeview to an activeforms (with only budget scenario), you have decided to look up for values from the forecast scenario, then dbrw fomulas will return 0.
If that's the case, there are a couple of options:
1. Remove the TM1RptTitle component from the TM1RptView formula that has restricted the data to be retrieved. Beware though, this will have an impact on the performance.
2. Instead of using DBRW, change to DBR for those columns that are getting data from outside of the restricted cube slice.
MK
-
- Posts: 36
- Joined: Tue Sep 07, 2010 11:34 am
- OLAP Product: Cognos TM1
- Version: 10-2-2
- Excel Version: 2014
Re: ActiveForm display of numbers incorrect from TM1
Thanks ..will have a go with your suggestion.