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

FileManager using a REXX proc can't handle a non-zero return


IBM Mainframe Forums -> IBM Tools
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Ed Goodman

Active Member


Joined: 08 Jun 2011
Posts: 556
Location: USA

PostPosted: Sat Feb 09, 2013 3:57 am
Reply with quote

I have a Batch Edit in File Manager for IMS that I want to use a REXX proc.

Everything seemed to be going OK until I tried to read in a flat file one line at a time using EXECIO 1. That gets a return code of 2 at end of file and that's what all of the examples in the REXX manual use to check for EOF.

HOWEVER, when I use this in the IEB proc, the whole thing bails out when the RC of 2 occurs:

Code:

      8 *-* DO UNTIL RC=2                           
      9 *-*  ADDRESS MVS "EXECIO 1 DISKR FILEIN "   
        >>>    "EXECIO 1 DISKR FILEIN "             
        +++ RC(2) +++                               
     36 *-* exbad:                                   
        *-* EXIT "BAD" RC                           
0FMNBB382 REXX exec terminated with RC 2             
0FMNIB426 Function terminated                       


That line 36 is NOT mine. It seems to be coming from something between my code and the system.

Is there some other way to find the EOF with using the EXECIO *? Or maybe a way to trap that bad RC before the hidden layer kicks in?
Back to top
View user's profile Send private message
Ed Goodman

Active Member


Joined: 08 Jun 2011
Posts: 556
Location: USA

PostPosted: Sat Feb 09, 2013 4:14 am
Reply with quote

Found a temporary workaround:
Code:

MY_EOF = 0                             
DO UNTIL MY_EOF=2                     
  ADDRESS MVS "EXECIO 1 DISKR FILEIN "
  PARSE PULL INREC                     
  say INREC                           
  IF SUBSTR(INREC,1,3) = 'EOF' THEN   
  DO                                   
    MY_EOF = 2                         
  END                                 
  ELSE                                 
  DO                                   
    REC_CNT = REC_CNT + 1             
  END                                 
END                                   


Added an extra line that reads 'EOF' and check for that. Not the best thing in the world, but this is a personal utility.
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 -> IBM Tools

 


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