View previous topic :: View next topic |
Author |
Message |
dsonsamuel Beginner
Joined: 25 Mar 2004 Posts: 26 Topics: 16
|
Posted: Tue Oct 26, 2004 7:49 am Post subject: Compilation error-"Submit JCl from CICS" |
|
|
I was trying to submit a JCL from my CICS program. While compilation I got this error:
------------------------
"INTRDR" was not defined as a data-name.
------------------------
My cicsopen looks like this-->
EXEC CICS
SPOOLOPEN OUTPUT NODE('B') USERID(INTRDR)
TOKEN(REPORT-TOKEN) RESP(WS-RESP)
END-EXEC
Any idea about the problem?
Thanks,
Dson. |
|
Back to top |
|
|
Brian Beginner
Joined: 12 Aug 2003 Posts: 95 Topics: 6
|
Posted: Tue Oct 26, 2004 8:27 am Post subject: |
|
|
Dson,
Try USERID('INTRDR ') and it should work.
Cheers
Brian |
|
Back to top |
|
|
dsonsamuel Beginner
Joined: 25 Mar 2004 Posts: 26 Topics: 16
|
Posted: Tue Oct 26, 2004 8:58 am Post subject: |
|
|
Thanks Brian:-)
Its working now.... |
|
Back to top |
|
|
|
|