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

REXX execution in batch has error


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

New User


Joined: 20 Sep 2005
Posts: 17

PostPosted: Fri May 09, 2014 9:18 am
Reply with quote

Code:

/* REXX */                           
PARSE ARG SECONDS                     
SAY "SECONDS WAITING :" SECONDS       
SAY "CURRENT TIME :" TIME()           
IF SECONDS = "" THEN SECONDS = 5     
SECONDS = ABS(SECONDS)               
SECONDS = TRUNC(SECONDS,0)           
"CALL *(AOPBATCH) 'SLEEP "SECONDS"'" 
SAY "RELEASE TIME :" TIME()           
EXIT 0                               


When I execute this REXX from TSO using

Code:
 TSO REXXWAIT  10


it works fine. but when I want to execute in batch under

EXEC PGM=IKJEFT01

it gives error

Code:
AOP003E SLEEP: EDC5129I No such file or directory., errno2=53b006c


Any idea ?

Thanks,
Sena
Back to top
View user's profile Send private message
Stefan

Active User


Joined: 12 Jan 2006
Posts: 110
Location: Germany

PostPosted: Fri May 09, 2014 1:07 pm
Reply with quote

I don't know what function you are calling but I assume that you want to wait for a specific period of time in your REXX program (for whatever strange reason).
I prefer this approach to wait for 1 second:
Code:
call syscalls 'ON'       
address syscall 'SLEEP 1'

That is easy to understand and does not rely on any additional software than pure REXX.
By the way: In my opinion a request for a WAIT is in nearly every case a strong indication of poor (or at least inappropriate) design. Please rethink your approach.
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Fri May 09, 2014 4:12 pm
Reply with quote

Note that the error message is coming from the AOPBATCH program, not the Rexx interpreter. The program is probably attempting to use OMVS inappropriately.
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 Running REXX through JOB CLIST & REXX 13
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Error when install DB2 DB2 2
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