IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Invoking QW from REXX


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
pshongal

New User


Joined: 14 Jun 2012
Posts: 96
Location: India

PostPosted: Tue Sep 09, 2014 10:24 am
Reply with quote

Hi All,

I have a small rexx utility to get sql error code as below.
If the program abend output shows sql code as 80N, my tool will get proper sqlcode as -805. This is just to help freshers in the team.

Now, I would like to add feature such that, it will take them to Quick reference also. So when they call my tool, it should convert it to proper code (which it is doing now) and then take them directly to QW as if executing "QW -805". How can I do it?

Thanks.
Back to top
View user's profile Send private message
Marso

REXX Moderator


Joined: 13 Mar 2006
Posts: 1353
Location: Israel

PostPosted: Tue Sep 09, 2014 7:21 pm
Reply with quote

It would be easier (and wiser) to teach "freshers in the team" to do:
Code:
01  WS-SQLCODE                    PIC -999.

MOVE SQLCODE TO WS-SQLCODE
DISPLAY '    SQLCODE: ' WS-SQLCODE


If you really want, you can try:
Code:
Address ISPEXEC "SELECT CMD(%QW PRM('-805'))"
Back to top
View user's profile Send private message
pshongal

New User


Joined: 14 Jun 2012
Posts: 96
Location: India

PostPosted: Wed Sep 10, 2014 11:17 am
Reply with quote

Thanks a lot Marso.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts Compile Several JCL JOB Through one r... CLIST & REXX 4
No new posts Running REXX through JOB CLIST & REXX 13
No new posts Error to read log with rexx CLIST & REXX 11
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
No new posts run rexx code with jcl CLIST & REXX 15
Search our Forums:

Back to Top