good morning,
with mainframe express I could launch 3 jobs A, B, C and they were executed one in queue to the other
MFECL /RUNEXE %PRJ% MFJCL.EXE %JCLDIR%\\A.JCL /SUBMIT
MFECL /RUNEXE %PRJ% MFJCL.EXE %JCLDIR%\\B.JCL /SUBMIT
MFECL /RUNEXE %PRJ% MFJCL.EXE %JCLDIR%\\C.JCL /SUBMIT
in enterprise developer i have found command cassub (already present in mfe):
cassub -j %JCLLIB%\\A.JCL -R%REGION_NAME%
cassub -j %JCLLIB%\\B.JCL -R%REGION_NAME%
cassub -j %JCLLIB%\\C.JCL -R%REGION_NAME%
in this case the jobs start almost simultaneously, isn't there a system to launch jcls in sequence so that the next one starts only if the previous one is finished?
thanks
#EnterpriseDeveloper
