z/OS TSO/E Administration
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


Examples

z/OS TSO/E Administration
SA32-0977-00

Simplest UADS Entry: Add the user ID USER1, and have the user ID use PROC00 as a LOGON procedure. Do not define a password or account number for USER1.
add (user1 * * proc00)
Password and Account Number: Add the user ID USER2, and have the user ID use PROC00 as a LOGON procedure. Give the user ID the password XYZABC, and associate PROC00 with the account number D721234. Do not assign any minimum region size or any device to the LOGON procedure.
add (user2 xyzabc d721234 proc00)
MAXSIZE, SIZE, and UNIT: Add the user ID USER3, with LOGON procedure PROC00, password XYZABC, and account number D721234. Include the following other attributes:
  • MAXSIZE: Set to 200
  • SIZE: Set to 100
  • UNIT: Set to SYSDA
add (user3 xyzabc d721234 proc00) maxsize(200) size(100) unit(sysda)
DEST, HOLD, JOBCLASS, MSGCLASS, and SYSOUT: Add the user ID USER4, with LOGON procedure PROC00, password XYZABC, and account number D721234. Include the following other attributes:
  • DEST: Set to node NYNET
  • HOLD: Set to class H
  • JOBCLASS: Set to class G
  • MSGCLASS: Set to class A
  • SYSOUT: Set to class A
add (user4 xyzabc d721234 proc00) dest(nynet) hold(h) jobclass(g)+ 
 msgclass(a) sysout(a)
ACCT, JCL, MOUNT, OPER, and RECOVER: Add the user ID USER5, with LOGON procedure PROC00, password XYZABC, and account number D721234. Give the user authority to:
  • Use the ACCOUNT command (ACCT)
  • Use the SUBMIT, STATUS, CANCEL, and OUTPUT commands (JCL)
  • Make allocation requests requiring volume mounting (MOUNT)
  • Use the OPERATOR command (OPER)
  • Use the EDIT recovery facility (RECOVER).
add (user5 xyzabc d721234 proc00) acct jcl mount oper recover
PERFORM and USERDATA: Add the user ID USER6, with LOGON procedure PROC00, password XYZABC, and account number D721234. Include the following other attributes:
  • Allow the user to request one of the performance groups 4, 10, 30, 45, or 100 (PERFORM)
  • Pass the data 1F09 (USERDATA).
add (user6 xyzabc d721234 proc00) perform(4,10,30,45,100)+ 
userdata(1F09)

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014