Create a drill rule
A drill rule is a unique type of rule that associates view cells with related data. The related data, which is opened through a TurboIntegrator process, can be a cube view or an ODBC source.
About this task
There can be some interplay between business rules and drill rules. For example, you might have a Cube A that uses business rules to pull values from a separate Cube B. You might then create a drill rule (and an accompanying drill process) that lets users drill-through from Cube A to Cube B to review the source values in full context.
Similarly, if the values in a cube were imported from an ODBC source, you could create a drill rule and process that lets users drill-through from the cube to a grid-formatted view of the ODBC source.
A drill rule uses the syntax
['area_definition']=S:'drill_process_name';
.
area_definition is the section of the cube in which you want to enable
drill-through. drill_process_name is the name of the TurboIntegrator process that
is executed when you execute a drill-through from a cell that is included in the
area_definition. You can learn more about setting up drill processes in Create a drill process.
Procedure
Results
If you initiate drill-through from a cell that is associated with multiple drill processes, you can choose which process you want to run.
Example
[ ]=S:'PriceDrill';
this drill rule runs the PriceDrill
drill
process when you initiate drill-through from any cell in the cube.
['Price']=S:'ODBCSourceDrill';
this drill rule runs the
ODBCSourceDrill
drill process when you initiate drill-through from any cell in the
cube that is identified by the Price
member.
['Jan']=S:'PriceDrill, ODBCSourceDrill';
this drill rule lets you choose to run
either the PriceDrill
or ODBCSourceDrill
drill process when you
initiate drill-through from any cell in the cube that is identified by the Jan
member.
['Price','France','Jan']=S:'PriceDrill';
this drill rule runs the
PriceDrill
drill process when you initiate drill-through from any cell in the cube
that is identified by the Price
, France
, and Jan
members.