This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
mvsesa-mine [2020/12/28 18:55] prppedro created |
mvsesa-mine [2021/01/02 12:00] (current) prppedro [Some references] |
||
---|---|---|---|
Line 12: | Line 12: | ||
As for the devices, I'm using LCS, because Layer II goodness. So I picked up two CTC(A) devices already defined in IODF (don't know it it's really necessary, perhaps not): 0530-0531. They should be varied online: '' | As for the devices, I'm using LCS, because Layer II goodness. So I picked up two CTC(A) devices already defined in IODF (don't know it it's really necessary, perhaps not): 0530-0531. They should be varied online: '' | ||
+ | |||
+ | Update: it's varied online upon boot. It wasn't that time probably because I've hot plugged them. | ||
===== Data sets ===== | ===== Data sets ===== | ||
Line 17: | Line 19: | ||
Outside of Dmtcat (3.4 in ISPF), remember to always use apostrophes, | Outside of Dmtcat (3.4 in ISPF), remember to always use apostrophes, | ||
+ | ===== VTAM logon screen ===== | ||
+ | |||
+ | The default one is not exactly beautiful. So I wanted to change it. It wasn't quite simple because what we see as logon screen isn't only a frontend. It's actually a VTAM application (and a USS table at it). Luckly, I've came across [[https:// | ||
+ | |||
+ | Now, the JCL he mentions builds and links an USS application which seems to be suitable to the version of MVS he's using. Mine is older, and has a different generation, so I had to find other solution. Again, luckly, I've found a partitioned data set at ' | ||
+ | |||
+ | However, it's only the source, it lacks the JCL part. So, I combined the JCL stuff from the script refered by the post. And ended up with this: | ||
+ | |||
+ | < | ||
+ | //SYSPRG1B JOB (JOBNAME),' | ||
+ | //* TYPRUN=SCAN, | ||
+ | // | ||
+ | //* | ||
+ | // | ||
+ | // | ||
+ | // DD DSN=SYS1.MACLIB, | ||
+ | // | ||
+ | ******************************************************************** | ||
+ | * TESTMVS TCP USSTABLE | ||
+ | ******************************************************************** | ||
+ | USSAEHOO USSTAB | ||
+ | * | ||
+ | TSO USSCMD | ||
+ | | ||
+ | NVAS | ||
+ | | ||
+ | CICS | ||
+ | | ||
+ | IMS USSCMD | ||
+ | | ||
+ | AOF USSCMD | ||
+ | | ||
+ | NETVIEW | ||
+ | | ||
+ | ******************************************************************** | ||
+ | MESSAGE | ||
+ | STDTRANS DC | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | END USSEND | ||
+ | ******************************************************************** | ||
+ | MSG10 DC AL2(MSG10E-MSG10S) | ||
+ | MSG10S | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | * | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC X' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC X' | ||
+ | DC C' REMOTE IP : @@@@@@@@@IPADDR: | ||
+ | DC C' SNA LU : @@LUNAME | ||
+ | DC C' DATE : @@DATE | ||
+ | DC C' TIME : @@TIME | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C'HE OS/390 DEMOPKG SYSTEM: | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC C' | ||
+ | DC X' | ||
+ | DC C' | ||
+ | DC X' | ||
+ | MSG10E | ||
+ | END | ||
+ | //L.SYSLMOD DD DISP=SHR, | ||
+ | // | ||
+ | NAME USSNAEHO(R) | ||
+ | //* | ||
+ | </ | ||
+ | |||
+ | It compiles as USSNAEHO, which can be changed at TCPPROF to the USS. To make it work you should reload the profile by doing this: | ||
+ | |||
+ | < | ||
+ | vary tcpip, | ||
+ | </ | ||
+ | |||
+ | ==== Some references ==== | ||
+ | |||
+ | * https:// | ||
+ | * https:// | ||
+ | ===== Memories ===== | ||
+ | |||
+ | {{: | ||