Page 1 of 1

ExecuteProcess statement

Posted: Thu Mar 09, 2017 6:58 am
by pooja_11284
Hi,
How does multiple execute process statements work in TM1? If I have multiple Execute Process in Prolog of my TI Process. Does it waits for the first statement to finish execution or they all execute in parallel( like even if the first one has not finished executing the second starts)?

Re: ExecuteProcess statement

Posted: Thu Mar 09, 2017 8:02 am
by Edward Stuart
Think about what you are asking here.

Will the second statement in my TI Process before the first one is complete?

No, TM1 will process each statement in order and once completed will move onto the next statement. That's not to say you cannot set loops or conditions in place to control flow within your process.

There are many and varied posts on the forums describing EXECUTEPROCESS and methods to achieve your goals