Page 1 of 1

REXX under USS

PostPosted: Wed Jun 25, 2014 12:53 pm
by morakles
Hi,
I run REXX script under USS, but I need execut TSO AOEXEC (AutoOPERATOR) command. Under TSO native everything is OK, but in UNIX a get rc=-3, what means command not found :(
How can I run AOEXEC (or another) command under USS Rexx script?

Re: REXX under USS

PostPosted: Wed Jun 25, 2014 9:06 pm
by Robert Sample
Have you talked to the vendor? If not, start there.

Re: REXX under USS

PostPosted: Thu Jun 26, 2014 11:04 am
by morakles
I found the solution:

address linkmvs 'AOEXEC SYSINFO'


And works! :D

Re: REXX under USS

PostPosted: Thu Jun 26, 2014 1:05 pm
by morakles
morakles wrote:I found the solution:

address linkmvs 'AOEXEC SYSINFO'


And works! :D


I forgot in .profile add:
STEPLIB=BMCP.MVN.BMCLINK
export STEPLIB

Re: REXX under USS

PostPosted: Thu Jun 26, 2014 1:06 pm
by BillyBoyo
Good for you, thanks for letting us know and thanks for posting your solution, it may help others with the same problem. How did you find it?