Inside Activate
Development
Creating child jobs
0 min
creating child jobs to create a child job in activate //create new job object job newjob = new job(); //set task newjob task = evaluator getobject(“=//tasks/user/create user”) as task; //set argumentsnewjob arguments setvalue(“ ”, ) //submit job as child, job in this context is the parent job job submit(newjob); note calling newjob setinfo() will create the job without some important attributes set and job will not be executed call submit as above instead of using setinfo();