If statement issue in TI
Posted: Fri Dec 12, 2008 10:03 am
Version 9.0 SP3 Update 9
Having a weird issue with TI. Have the code below in the epilog of TI, both processes are getting executed. Which I think is impossible. Anyone had any issues with this version of TM1 and TI?
Any thoughts welcomed.....
Having a weird issue with TI. Have the code below in the epilog of TI, both processes are getting executed. Which I think is impossible. Anyone had any issues with this version of TM1 and TI?
Code: Select all
If ( Suf @='stop');
ans=ExecuteProcess ('ADMIN - Load MI - Bulk - Period',
'pthToFile', pthToFile,
'nameOfFile', nameOfFile,
'Cycle', Cycle,
'DecimalSep', DecimalSep);
Else;
ans=ExecuteProcess ('ADMIN - Load MI - Bulk - Comma',
'pthToFile', pthToFile,
'nameOfFile', nameOfFile,
'Cycle', Cycle,
'DecimalSep', DecimalSep);
EndIf;
Any thoughts welcomed.....