|
|
| Author |
Message |
Balaji.helios
New User
Joined: 12 Jun 2007 Posts: 7 Location: chennai
|
|
|
|
I'm checking 10 members in a PDS. In each member I'm issuing a CHANGE command and I write some information to output file. After then when I issue an END command in my MACRO it's not coming out !!! For each and every member I need to press F3, to do check for the next member and so on, until all the members in the PDS are checked. Is there any way to execute without pressing F3. |
|
| Back to top |
|
 |
References
|
Posted: Tue Jul 22, 2008 1:53 am Post subject: Re: Problem in EDIT MACRO |
 |
|
|
 |
Moved: Tue Jul 22, 2008 4:10 am by superk From CLIST & REXX to TSO/ISPF |
Pedro
Senior Member
Joined: 01 Sep 2006 Posts: 313 Location: work
|
|
|
|
| Can you show your macro? (if it is longer than a dozen or so lines, please abbreviate the macro). END should cause to leave editor. |
|
| Back to top |
|
 |
Balaji.helios
New User
Joined: 12 Jun 2007 Posts: 7 Location: chennai
|
|
|
|
Hi...please see my simple macro
i tried it with simple change command.
I DONT WANT TO SAVE THE CHANGES
ADDRESS ISREDIT
'ISREDIT MACRO'
'ISREDIT CHANGE ALL "&" ""'
'ISREDIT 'END'
Thank you in advance |
|
| Back to top |
|
 |
dbzTHEdinosauer
Senior Member
Joined: 20 Oct 2006 Posts: 1388 Location: germany
|
|
|
|
an END with out automatic save, requires that you perform 2 ENDs.
try using CANCEL, since you do not want to save the changes. |
|
| Back to top |
|
 |
ofer71
Global Moderator
Joined: 27 Dec 2005 Posts: 1867 Location: Israel
|
|
|
|
Or use "SAVE" followed by "END" if you do want to save the changes.
By the way, you can always test the RC of the END command and get a clearer information regarding why the command has failed.
O. |
|
| Back to top |
|
 |
Balaji.helios
New User
Joined: 12 Jun 2007 Posts: 7 Location: chennai
|
|
|
|
Thanks everybody..
I tried ISREDIT CANCEL command,And it worked perfect.Thanks a lot |
|
| Back to top |
|
 |
|
|