How to find -IF Process Success
Posted: Sun Apr 10, 2011 2:16 pm
Hi,
I have Created a ProcessC ,having both Process A and ProcessB.
AIM:
When while condition satisfied Execute Process A, If Executed Successfully then Execute ProcessB ,If ProcessA fails Then quit entire process.
I have tried to understand the Globalstringvaribales to do this but couldn't figure what to use and how to use them. Appreciate your time .
Thank you
-Prat
I have Created a ProcessC ,having both Process A and ProcessB.
AIM:
When while condition satisfied Execute Process A, If Executed Successfully then Execute ProcessB ,If ProcessA fails Then quit entire process.
Code: Select all
i=1;
While(i<= condition);
ExecuteProcess(ProcessA);
Only on Success;
ExecuteProcess(ProcessB);
end;
Thank you
-Prat