View previous topic :: View next topic
|
Author |
Message |
Lynne
Active User
Joined: 15 Jan 2015 Posts: 107 Location: USA
|
|
|
|
is there a way to reset/clear All profile variables for an ISPF application you are testing?
like
VERASE (*) PROFILE
or
VDELETE (*) PROFILE
or do you have to put all the application variable names in the namelist?
Thanks. |
|
Back to top |
|
|
prino
Senior Member
Joined: 07 Feb 2009 Posts: 1315 Location: Vilnius, Lithuania
|
|
|
|
Just delete the entire profile, it will automatically be recreated. |
|
Back to top |
|
|
Pedro
Global Moderator
Joined: 01 Sep 2006 Posts: 2594 Location: Silicon Valley
|
|
|
|
The profile is a member of a PDS which is allocated to the ISPPROF DD name. The member name is the four character profile ID with a 'PROF' suffix. I think you need to be out of your application when you delete the member. As Prino says, ISPF will recreate it the next time you start the application.
If this is for ongoing testing, perhaps just allocated some temporary data set to ISPPROF DD name, rather than using your normal profile data set. |
|
Back to top |
|
|
Lynne
Active User
Joined: 15 Jan 2015 Posts: 107 Location: USA
|
|
|
|
Thank you!! Makes total sense. So much easier than writing a rexx to clean things up. |
|
Back to top |
|
|
|