Page 1 of 1

Removing parameter from the parallel job

Posted: Thu Aug 22, 2013 11:44 am
by soumya5891
Assuming I have one sequence job which is triggering one parallel job.

In the parallel job I have four parameters and all the parameters have been mapped through the sequence job.

Now let say I have removed one parameter from the parallel job and consider the below two scenario.

1. Compiled the sequence : Now that particular parameter is absent from the job activity stage,triggered the sequence and it completed successfully.


2. Did not compile the sequence: Now also that particular parameter is absent from the job activity stage, triggered the sequence the sequence job aborted due to unknown parameter.


The second one failed due to the reason that though design has been changed but the executable didn't change and it holds the deleted parameter is it the conclusion?

Posted: Thu Aug 22, 2013 11:47 am
by ArndW
Yes, that is what is going to happen; the sequence will need to be recompiled after the parameter has been removed so that it won't mistakenly attempt to set a non-existent parameter.

Posted: Thu Aug 22, 2013 11:50 am
by soumya5891
Thanks a lot for your valuable response. I am marking it as resolved.