You need to use the Global Variables. The syntax for the Global Variable is:
NumericGlobalVariable('VariableName'); Use this function to declare a numeric global variable.
StringGlobalVariable('VariableName'); Use this function to define a string global variable.
The global variables are available to all other processes that are part of the chore. For example you have 2 process, Process A and Process B. Where Process B is calling Process A within its code. In this case these process will have following code:
*PROCESS A:*
StringGlobalVariable( 'MyProcessName');
MyProcessName='loadMyCube';
*PROCESS B:*
StringGlobalVariable( 'MyProcessName');
Then in the Process B you can use the variable MyProcessName in any way you like, as it will have the value loadMyCube stored in it.