How Do you run/execute the Program/Job in a specific time/date in CICS?

Showing Answers 1 - 18 of 18 Answers

Shailendra Kumar Dewangan

  • Oct 24th, 2007
 

use command
asktime

Manikant

  • Oct 26th, 2007
 

I don't think that ASKTIME command is going to work here as this only gives you the current date and time. If you want to start the task at a particular time you can use

EXEC CICS START
TIME(HHMMSS)
END-EXEC.

This will start the CICS task at the time specified. But I have no idea about giving the dates. If any one knows it please post it.

Thanks,
Manikant

sayferoz

  • Jul 31st, 2008
 

You can't do this in COBOL program. You have to use some scheduler for it. You can use any specific date & time or any other instance as initiator.

Regards,
Feroz

  Was this answer useful?  Yes

EXEC CICS START TRANSACTION(xxxx) AT.....

Note: You !WILL! shoot yourself in the foot if you don't understand application interval control.? What you end up coding for HOURS will probably much different than you expect.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions