- Obviously, if you got to the screen in your post you found how to get there, even if you did it accidentally.
- It is considered bad form to post these types of screen shots in these forums. They require quite a bit more room in the web site than a screen shot built by copy and paste from your emulator window and quite a bit more time to send to your browser window. There is an example later in this post.
- An unanswered question is whether the screen you show permits updates to the configuration, or just shows the configuration.
- A more common way to handle this type of configuration update is through any Rexx execs run when you logon. That way it is run when you logon rather than manually after you're logged on. Look there. Hint: See if they test for a userid.CLIST or userid.SYEXEC data set and automatically add them to any SYSPROC or SYSEXEC DD in your logon proc. Also these EXECs frequently automatically run a CLIST or Rexx exec with a standard name like #LOGON or something similar. Check that, too.
I'm sure you're next question is how do I find out what is run automatically? Look in your login proc. You should see something like this.//SYSUSER EXEC PGM=IKJEFT01,REGION=64M,DYNAMNBR=100,
// PARM='EX ''SYSFAN.REXXLIB(ISP)'''
The startup proc is member ISP in SYSFAN.REXXLIB at this installation. Yours will almost certainly be different. Your next question is how do I determine the name of the logon proc and where is it. The name of the logon proc is in your TSO/E LOGON screen -
------------------------------- TSO/E LOGON -----------------------------------
Enter LOGON parameters below: RACF LOGON parameters:
Userid ===> ADUMMY
Password ===> New Password ===>
Procedure ===> SYSUSER Group Ident ===>
Acct Nmbr ===> 12345678
Size ===> 24000
Perform ===>
Command ===> ex (start)
Enter an 'S' before each option desired below:
-Nomail -Nonotice -Reconnect -OIDcard
PF1/PF13 ==> Help PF3/PF15 ==> Logoff PA1 ==> Attention PA2 ==> Reshow
You may request specific help information by entering a '?' in any entry field
It is in the Procedure area. Technically you can change it, but don't. Where is it? That's harder. Start by looking in SYS1.PROCLIB or your system's primary PROCLIB. Hint: Look in the JESYSMSG data set in the SDSF for your TSO session which you can access through the DA option in the SDSF PRIMARY OPTION MENU. Look for IEFC001I PROCEDURE xxx WAS EXPANDED USING SYSTEM LIBRARY yyyyy in this data set.