Book Image

IBM Cognos TM1 Developer's Certification guide

By : James D. Miller
Book Image

IBM Cognos TM1 Developer's Certification guide

By: James D. Miller

Overview of this book

IBM Cognos TM1 is enterprise planning software that provides a complete, dynamic environment for developing timely, reliable and personalized forecasts and budgets. It is a real time, in memory tool that helps any sized business perform planning, budgeting and forecasting as well as other financial exercises. This book prepares you to master COG-310 certification using an example-driven method that is easy to understand. The IBM Cognos TM1 Developer's Certification guide provides key technical details and background to clear the current IBM Cognos TM1 Developer (test COG-310) certification exam. This certification book covers all the modules of the certification clearly and in depth. The initial chapters cover in detail the components that make up Cognos TM1 and designing and creating dimensions and cubes. The book then dives deep into basic and advanced scripting using TurboIntegrator and then we learn to understand and write basic Rules. We then learn about the drill-through functionality of TM1, virtual and lookup cubes and lastly Time, and presenting and reporting data
Table of Contents (15 chapters)
IBM Cognos TM1 Developer's Certification Guide
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Free Chapter
1
The Components of TM1

Conditional rules


In Chapter 4,Rules, we discussed the idea that Cognos TM1 rules can be written with conditional evaluation (you can use the IF function to force TM1 to evaluate a rule differently depending on a logic test). This feature can be utilized in our virtual cube example.

Using conditional rules within a virtual cube

Sometimes, it might be more realistic to wait until data is in a complete or approved state before making that data available in the consolidation cube, yet it is not desirable to have to intervene for sending or copying the data. One way to accomplish this might be to use conditional logic to modify your rule slightly:

['Current Forecast','Northern']=N:IF(DB('SysCntrl', 'Northern', 'ForecastStatus')=1,DB('Northern','Actual',!Period,!Region,!Product,'Current Forecast'),0);

In the above rule, you can see that an application cube named SysCntrl is used to hold a flag named ForecastStatus. If this flag is set to a value of 1, the forecast information for the region Northern...