How Do I Use Conditional Feeders in IBM Planning Analytics to Create More Efficient Feeding Logic?

One of IBM Planning Analytics (PA) biggest advantages over other applications is the ability to use feeders. When it comes to issues of sparsity within cubes, feeders improve performance by giving developers a way to prevent Planning Analytics from trying to look through millions of intersections to find all the data to consolidate. Essentially, feeders…

Read More

When and How Do I Use the ExecuteProcess Function in IBM Planning Analytics to Run TurboIntegrator Processes?

The EXECUTEPROCESS function is used to call and run a TurboIntegrator (TI) processe from within another TurboIntegrator processes. This function will run the process identified within the parentheses along with any specified parameters that follow.     The first argument in the function will be the process that is going to be executed. The only…

Read More

How Do I Use the WHILE Loop in a TurboIntegrator (TI) Process to Control Iterations in IBM Planning Analytics?

While is a Turbo Integrator (TI) function that is widely used to “loop” through data repeatedly, without wrapping multiple processes together to accomplish the same goal. Below is the syntax: Define loop iteration element WHILE ( logical expression ); Statements; loop iteration; END; Let’s illustrate it by using a simple WHILE loop example: We want…

Read More