Search found 2 matches

by bharu1711
Mon Apr 15, 2013 2:36 pm
Forum: TSO, CLIST & REXX
Topic: Rexx To repeat a series of commands
Replies: 3
Views: 5001

Hi Nick,

Could you please let me know how can this can be achieved?

Thanks in advance!
by bharu1711
Thu Mar 07, 2013 12:04 pm
Forum: TSO, CLIST & REXX
Topic: Rexx To repeat a series of commands
Replies: 3
Views: 5001

Rexx To repeat a series of commands

Hi, I'm trying to map a mainframe id to a user and set the password and revoke date using the below rexx. /*REXX*/ CMD="ALU", "userid NAME(SPAREID)"; "ALU userid PASS(SET123) RESUME"; "ALU userid REVOKE(05/30/13)"; ADDRESS TSO CMD; EXIT Is there a possibility to map ids for many users in this same r...