View previous topic :: View next topic |
Author |
Message |
coolguy2005 Beginner
Joined: 22 Mar 2005 Posts: 22 Topics: 16
|
Posted: Wed Mar 23, 2005 1:04 am Post subject: Clear the list of files downloaded from the start 6 option |
|
|
I am using START 6 TSO COMMAND to download programs into my local PC.But when i do so ,whatever the programs i have downloaded gets listed out in the dislay .Can i clear this list below so that no one else can see the display of files downloaded by me.
ISPF Command Shell
Enter TSO or Workstation commands below:
===>
Place cursor on choice and press enter to Retrieve command
=> IND$FILE GET 'CLAS.SIG.COB.V00001' ASCII CRLF
=> @filemgr
=> IND$FILE GET 'CLAS.SIG.PRINTOUT' ASCII CRLF
=> @uni2
=> IND$FILE PUT FORM750.TEXT ASCII CRLF RECFM(V) LRECL(133)
=> aafx |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Wed Mar 23, 2005 4:50 am Post subject: |
|
|
Quote: |
Can i clear this list below so that no one else can see the display of files downloaded by me.
|
coolguy,
No one else apart from the system admins can see that list unless the other person knows your password. So you don't have to clear the messages. HOwever if you still want to space them out then follow the below instructions.
Choose the option 7.3
This will bring up the list of ISPF variables. Then scroll down to the field named
Code: | PTCRET01 thru PTCRET10 |
Just space out the contents on the right side and press F3 . Your commands are gone.
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
Bill Dennis Advanced
Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Wed Mar 23, 2005 1:14 pm Post subject: |
|
|
Also, if your option 6 panel has the Action bar items at the top, you can turn the updating of the list OFF during your transfers. Cursor on LIST and press <ENTER>. Select option 2 and <ENTER>. _________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
|
steve_wilson Beginner
Joined: 29 Mar 2005 Posts: 1 Topics: 0
|
Posted: Tue Mar 29, 2005 3:27 pm Post subject: |
|
|
Create a simple CLIST and execute it whenever you want it to be cleared.
Be sure and don't execute it from ISPF option 6.
Code: |
SET &PTCRET01 EQ &STR()
SET &PTCRET02 EQ &STR()
SET &PTCRET03 EQ &STR()
SET &PTCRET04 EQ &STR()
SET &PTCRET05 EQ &STR()
SET &PTCRET06 EQ &STR()
SET &PTCRET07 EQ &STR()
SET &PTCRET08 EQ &STR()
SET &PTCRET09 EQ &STR()
SET &PTCRET10 EQ &STR()
ISPEXEC VPUT (PTCRET01 +
PTCRET02 +
PTCRET03 +
PTCRET04 +
PTCRET05 +
PTCRET06 +
PTCRET07 +
PTCRET08 +
PTCRET09 +
PTCRET10) PROFILE
|
|
|
Back to top |
|
|
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Tue Mar 29, 2005 3:46 pm Post subject: |
|
|
VERASE will do it too, or there is an option on the panel to delete entries in one of the pulldowns. |
|
Back to top |
|
|
bablack Beginner
Joined: 04 Dec 2002 Posts: 71 Topics: 0 Location: Little Falls, NJ
|
Posted: Fri Apr 01, 2005 12:29 pm Post subject: |
|
|
<Also, if your option 6 panel has the Action bar items at the top, you can turn the updating of the list OFF during your transfers. Cursor on LIST and press <ENTER>. Select option 2 and <ENTER>.>
and that same action bar has an entry for MODE, if have list updating turned off, you can select option 3 DELETE and then DELETE the entries in the saved command list. _________________ Bruce A. Black
Senior Software Developer
Innovation Data Processing |
|
Back to top |
|
|
|
|