Exploring TM1 - a Chartertech Company
Search
Close this search box.

ExecuteProcess TM1 Function: How to Use, Example and Syntax

What ExecuteProcess Does

ExecuteProcess (not ProcessExecute!) calls one process from within another process in TM1. It also allows you to pass parameters to the called process.


Syntax

The syntax of ExecuteProcess is:

ExecuteProcess ( 'ProcessName' , 'Parameter1name' , Parameter1value , 'Parameter2name' , Parameter2value , 'ParameterNname' , ParameterNvalue ); 

where:

  • ProcessName is the process you want to call
  • Parameter1name is the name first parameter you want to pass a value to the called process.
  • Parameter1value is the value of the first parameter
  • Parameter2name is the name second parameter you want to pass a value to the called process.
  • Parameter2value is the value of the second parameter
  • ParameterNname is the name Nth parameter you want to pass a value to the called process.
  • ParameterNvalue is the value of the Nth parameter

Note that when describing ExecuteProcess above, we have listed the ProcessName and ParameterNames in single inverted commas. This is because we are assuming that this is how you will code the TI. If you have stored these in variables, then you will probably know to remove them!


Usage of ExecuteProcess

ExecuteProcess is used to call one process from another.  There are two primary uses that I can think of here:

  1. Having a master process that then calls a series of processes in order to rebuild dimensions and then load data into a cube.  This would then normally be set up as a chore and assigned a schedule.
  2. Having a standard process that can be called as required to execute a common task. For example, to clear out a target view in a cube before loading data into it. We do this extensively with a standard TI that we use to clear out a view prior to loading data.

Example

### Zaps Budget
ExecuteProcess ( 'zInfoCube.CubeViewBuild'  ,'pCubeName', cCube  ,'pViewName', 'zClearOut Budget'  ,'pAction', 'ClearOut'    ,'pDestroy', 'Y'  ,'pDim1', 'Customers'    ,'pDimElement1', cCustomer  ,'pDim2', 'Sales Measures'    ,'pDimElement2', cMeasure  ,'pDim3', 'Warehouse'    ,'pDimElement3', cWarehouse  ,'pDim4', 'Supplier'    ,'pDimElement4', cSupplier ) ;

Here we are using ExecuteProcess on a process called zInfoCube.CubeViewBuild and then passing a series of parameters. zInfoCube.CubeViewBuild uses those parameters to zap a section of data in a view defined by the dimensions. Obviously, we have set the variable earlier in the process.

(Just quietly, this process we use is a really cool way of defining and zapping a target view. If you’d like a copy, just hit us up on the form below and, if we like you ;), we’ll send you a copy!)


Notes

ExecuteProcess can only be used in Turbo Integrator processes.


Exploring TM1 – Contact Us

  • This field is for validation purposes and should be left unchanged.
  • This field is for validation purposes and should be left unchanged.

Post Sections

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *

Log In