mallikiran
Active User
Joined: 07 Sep 2005 Posts: 52
|
|
|
|
You can do this using TDQs. The entire job needs to be written to a TDQ.
The JCL that brings up the CICS region must have a file with similar definition:
//DDNAME SYSOUT=(A,INTRDR)
And the TDQ to which you would be writing the job must have the same DDNAME defined in Ddn.
As the same TDQ can be used by multiple tasks running in CICS, it would be a good idea to ENQ the resource, write the entire job and then DEQ the resource.
Before DEQing the resource, ensure that the last the line written to the TDQ is /*EOF. |
|