Trying to create an alert to run execCommand function and insert of a predefined job. It seems the command to insert job needs all the details about the job. Can one insert non-selected jobs (predefined jobs), if so what is the command?
ESP dSeries Workload Automation 12.x, 24.0
You can use below syntax;
execCommand( 'all', APPL._name + "." + APPL._gen, "ACTION INSERTNONSELECTEDJOBS JobList\(\"JOB0\"\) DefinedApplName\(\"INSERT\"\)" );
execCommand( 'all', APPL._name + "." + APPL._gen, "ACTION INSERTNONSELECTEDJOBS JobList\(\"TASK0\"\) DefinedApplName\(\"INSERT\"\)" );
Here application name is INSERT and jobs to insert are JOB0 and TASK0.