View previous topic :: View next topic |
Author |
Message |
pete Beginner
Joined: 02 Dec 2002 Posts: 22 Topics: 9 Location: www.state.ct.us
|
Posted: Wed Jun 08, 2005 7:18 am Post subject: DSLIST: Bring up user list and set SCRNAME to list name |
|
|
From just about any ISPF screen, is there a way to issue on the command line something like and my personal data set list name is listed in 3.4 with the scrname set to the list name ? Example tasklist: Code: | ID Name Panelid Applid Session Type
1- PLIST1 ISRUDSL0 ISR 3270
2 FLSNJSPJ TFL 3270 |
_________________ Regards,
Pete. |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12380 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
pete Beginner
Joined: 02 Dec 2002 Posts: 22 Topics: 9 Location: www.state.ct.us
|
Posted: Wed Jun 08, 2005 8:02 am Post subject: |
|
|
kolusu,
Yes I did. What I want is the scrname set to the list name, Not DSLISTC.
Following the fine example, If I issue "DSLIST REFLIST", I get the correct list but the SCRNAME is set to DSLISTC. Please see below:
Code: | ID Name Panelid Applid Session Type
1 XPLIST ISRUDSL0 ISR 3270
2* DSLISTC ISRUDSL0 ISR 3270
|
_________________ Regards,
Pete. |
|
Back to top |
|
 |
warp5 Intermediate

Joined: 02 Dec 2002 Posts: 429 Topics: 18 Location: Germany
|
Posted: Thu Jun 09, 2005 1:10 am Post subject: |
|
|
You do know that you can set the scrname yourself? In any case, you could write a small rexx that calls your DSL and then sets the screen name (perhaps by queueing the scrname command). Most of our products are called from a panel and I set the scrname then:
CA11,'CMD(C11IEXEC) NEWAPPL(CA11) SCRNAME(CA11)'
or out of a rexx:
'SELECT CMD(OPSVIEW' sel') NEWAPPL(OPS) PASSLIB',
'SCRNAME(OPS)' |
|
Back to top |
|
 |
|
|