I want to do some user management on the mainframe using rexx.
I allready managed to create a user with the following
/*REXX*/
adduser username
exit
I figured out this works because the rexx interpreter passes on every command that is not a rexx command to tso by default and adduser is both a racf command and a tso command with is mapped to racf. With the address command it should be possible to issue commands directly to racf. but when i try
/*REXX*/
address racf search username
exit
i'm getting +++ RC(-3) +++ IBM's TSO/E Reference says "The -3 return code indicates that the host command environment could not locate the command you issued." Since "search" is a valid racf command i think racf is not registered as a command environment. Using sysvar(sysracf) in rexx i allready checked that racf is infact installed and running. Does anyone know how to set up racf as a command environment for rexx or check if it is? Thanks in advance