开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

Changing SID


 

I've changed my SID in SYS1.PARMLIB(SMFPRM00).? The new SID displays as expected on the main ISPF menu screen.? However, the TSO logon message that displays prior to the first menu load still welcomes me to TK5R:



How is the system name getting set for this screen and where do I override it?


 

开云体育

On 28/04/2024 13:23, Daniel L. Srebnick via groups.io wrote:
I've changed my SID in SYS1.PARMLIB(SMFPRM00).? The new SID displays as expected on the main ISPF menu screen.? However, the TSO logon message that displays prior to the first menu load still welcomes me to TK5R:



How is the system name getting set for this screen and where do I override it?

That is in a different file AND it is not easy to change. I did look at it some years back and decided it was too much like hard work and not important.

Hopefully some one will give you the name a location for the file.
small? point it does need to get compiled in some way - have forgotten .
?


 

So, in JES2 parms in SYS1.PARMLIB, you may see this parameter:

image.png

Joe

On Sun, Apr 28, 2024 at 9:37?AM Vince Coen via <vbcoen=[email protected]> wrote:
On 28/04/2024 13:23, Daniel L. Srebnick via wrote:
I've changed my SID in SYS1.PARMLIB(SMFPRM00).? The new SID displays as expected on the main ISPF menu screen.? However, the TSO logon message that displays prior to the first menu load still welcomes me to TK5R:



How is the system name getting set for this screen and where do I override it?

That is in a different file AND it is not easy to change. I did look at it some years back and decided it was too much like hard work and not important.

Hopefully some one will give you the name a location for the file.
small? point it does need to get compiled in some way - have forgotten .
?


 

And dont forget to format the SPOOL, a necessary step to change the system ID.

When IPL'ing, at the JES2 request screen:

R 02,Format,noreq

Joe

On Sun, Apr 28, 2024 at 10:22?AM Joe Monk via <joemonk64=[email protected]> wrote:
So, in JES2 parms in SYS1.PARMLIB, you may see this parameter:

image.png

Joe

On Sun, Apr 28, 2024 at 9:37?AM Vince Coen via <vbcoen=[email protected]> wrote:
On 28/04/2024 13:23, Daniel L. Srebnick via wrote:
I've changed my SID in SYS1.PARMLIB(SMFPRM00).? The new SID displays as expected on the main ISPF menu screen.? However, the TSO logon message that displays prior to the first menu load still welcomes me to TK5R:



How is the system name getting set for this screen and where do I override it?

That is in a different file AND it is not easy to change. I did look at it some years back and decided it was too much like hard work and not important.

Hopefully some one will give you the name a location for the file.
small? point it does need to get compiled in some way - have forgotten .
?


 

Joe:

I did already try this on an earlier iteration, including reformatting the spool.

On my TK5 Update 3 system, it is in SYS1.JES2PARM(JES2PARM).

It did not have the desired effect.

On Sun, 2024-04-28 at 10:22 -0500, Joe Monk wrote:
So, in JES2 parms in SYS1.PARMLIB, you may see this parameter:

image.png

Joe


 

image.png

Changing SID parameter in SMF and JES:

image.png
image.png

After RE-IPL and SPOOL Format...

image.png

Joe



On Sun, Apr 28, 2024 at 10:42?AM Daniel L. Srebnick via <dan=[email protected]> wrote:
Joe:

I did already try this on an earlier iteration, including reformatting the spool.

On my TK5 Update 3 system, it is in SYS1.JES2PARM(JES2PARM).

It did not have the desired effect.

On Sun, 2024-04-28 at 10:22 -0500, Joe Monk wrote:
So, in JES2 parms in SYS1.PARMLIB, you may see this parameter:

image.png

Joe


 

Hi again Joe:

Referring back to my original post, the SYSTEM ID as shown on the ISPF main screen is correct without setting &SID in JES2PARM.

Where it is not correct is on the welcome message as shown:




On Sun, 2024-04-28 at 11:29 -0500, Joe Monk wrote:
image.png

Changing SID parameter in SMF and JES:

image.png
image.png

After RE-IPL and SPOOL Format...

image.png

Joe



On Sun, Apr 28, 2024 at 10:42?AM Daniel L. Srebnick via <dan=[email protected]> wrote:
Joe:

I did already try this on an earlier iteration, including reformatting the spool.

On my TK5 Update 3 system, it is in SYS1.JES2PARM(JES2PARM).

It did not have the desired effect.

On Sun, 2024-04-28 at 10:22 -0500, Joe Monk wrote:
So, in JES2 parms in SYS1.PARMLIB, you may see this parameter:

image.png

Joe



 

On Sun, Apr 28, 2024 at 09:54 AM, Daniel L. Srebnick wrote:
Where it is not correct is on the welcome message as shown:
?
Hello Daniel,

On TK5, the welcome message is produced by a REXX script located in SYS2.EXEC(WELCOME). That? script uses the SMF SID to write its message.

So, I think you need to update SYS1.PARMLIB(SMFPRM00) for your SID.

Cheers,

Rene FERLAND, Montreal


 

It appears that there is an error in SYS.EXEC(WELCOME).

SYS2.EXEC(WELCOME) says:

"tit1="Welcome to the TSO system on " || peeks(smca()+24,4)"

It is using a BREXX function to get the system name.

However, according to IBM, the SMF system id is not at offset 24, but at offset 16.

image.png

So, I changed my SYS2.EXEC(WELCOME) to:

tit1="Welcome to the TSO system on " || peeks(smca()+16,4)

and now my logon shows:

image.png

Joe

On Sun, Apr 28, 2024 at 12:00?PM René Ferland via <ferland.rene=[email protected]> wrote:
On Sun, Apr 28, 2024 at 09:54 AM, Daniel L. Srebnick wrote:
Where it is not correct is on the welcome message as shown:
?
Hello Daniel,

On TK5, the welcome message is produced by a REXX script located in SYS2.EXEC(WELCOME). That? script uses the SMF SID to write its message.

So, I think you need to update SYS1.PARMLIB(SMFPRM00) for your SID.

Cheers,

Rene FERLAND, Montreal


 

On Sun, 28 Apr 2024 12:54:37 -0400, "Daniel L. Srebnick via groups.io"
<dan@...> wrote:

Isn't that "Welcome" message issued by a TSO starting CLIST?


HTH



Hi again Joe:

Referring back to my original post, the SYSTEM ID as shown on the ISPF
main screen is correct without setting &SID in JES2PARM.

Where it is not correct is on the welcome message as shown:




On Sun, 2024-04-28 at 11:29 -0500, Joe Monk wrote:
image.png

Changing SID parameter in SMF and JES:

image.png
image.png

After RE-IPL and SPOOL Format...

image.png

Joe



On Sun, Apr 28, 2024 at 10:42?AM Daniel L. Srebnick via groups.io
<dan@...> wrote:
Joe:

I did already try this on an earlier iteration, including
reformatting the spool.

On my TK5 Update 3 system, it is in SYS1.JES2PARM(JES2PARM).

It did not have the desired effect.

On Sun, 2024-04-28 at 10:22 -0500, Joe Monk wrote:
So, in JES2 parms in SYS1.PARMLIB, you may see this parameter:

image.png

Joe










Roxo

--
---------------- Non luctari, ludare -------------------+ WYSIWYG
Fernando M. Roxo da Motta <mvs@...> | Editor?
Except where explicitly stated I speak on my own behalf.| VI !!
PU5RXO | PX5Q6048 | I see text,
------------ Quis custodiet ipsos custodes?-------------+ I get text!


 

On Mon, Apr 29, 2024 at 08:30 AM, Fernando M. Roxo da Motta wrote:
Isn't that "Welcome" message issued by a TSO starting CLIST?

Actually, on TK5 Update 3, by a REXX script, SYS2.EXEC(WELCOME), which reads a SMF record to get the SID.

Cheers,

Rene FERLAND, Montreal


 

The entry is in SMFPRMxx of parmlib.