I used the following job to issue another job at a specific time, but it didnt give the desired result.
//STRTJOB JOB CLASS=A,NOTIFY=&SYSUID
//STEP1 EXEC PGM=IEBGENER
//SYSPRINT DD SYSOUT=T
//SYSIN DD=DUMMY
//SYSUT1 DD SYSOUT=(*,INTRDR)
//SYSUT1 DD DATA,DLM=XX
/*$TA10,T=00.00,I=86400,´$VS,´´s JOB,N=MYJOB´´´
//XX
STRTJOB was supposed to start MYJOB at 00.00 every night. I executed STARTJOB at 9:00 am and I expected MYJOB to be issued at 00.00 every night, but what I got was disappointing, MYJOB was implemented just at 09.00 am and it repeated every day at 09.00. What can I do for MYJOB to be executed just at 00.00?