View previous topic :: View next topic |
Author |
Message |
Jamylady Beginner
Joined: 04 Nov 2004 Posts: 68 Topics: 22
|
Posted: Wed Apr 12, 2006 8:10 am Post subject: ISPF Command Line |
|
|
Is it possible to have the ISPF command line to apprear as two lines? I need use COMP command with a PDS name which is too long to accomodate in the default single command line space.
I also need to use some options like EXCLUDE etc so the avilable spaces is not enough.
Thanks
JA |
|
Back to top |
|
 |
Mervyn Moderator

Joined: 02 Dec 2002 Posts: 415 Topics: 6 Location: Hove, England
|
Posted: Wed Apr 12, 2006 8:44 am Post subject: |
|
|
Try using option 6 (' COMMAND - Enter TSO command or CLIST') _________________ The day you stop learning the dinosaur becomes extinct |
|
Back to top |
|
 |
Jamylady Beginner
Joined: 04 Nov 2004 Posts: 68 Topics: 22
|
Posted: Wed Apr 12, 2006 8:51 am Post subject: |
|
|
Mervyn
Compare command is not working in option 6 (ISPF command shell- Enter TSO or Workstation commands below:).
COMPARE command is invoked from the ISPF editor (EDIT/VIEW mode)
Thanks
JA |
|
Back to top |
|
 |
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Wed Apr 12, 2006 8:54 am Post subject: |
|
|
There is no way to expand it. You can write an edit macro to do the commands since it can pass longer lines. It can be as simple as (not tested):
Code: | /* rexx */
address isredit
"MACRO"
say "Command?"
parse pull editCommand
editCommand
| Though you'd probably want it to be a little more robust. |
|
Back to top |
|
 |
Jamylady Beginner
Joined: 04 Nov 2004 Posts: 68 Topics: 22
|
Posted: Wed Apr 12, 2006 8:57 am Post subject: |
|
|
Thanks |
|
Back to top |
|
 |
Jamylady Beginner
Joined: 04 Nov 2004 Posts: 68 Topics: 22
|
Posted: Wed Apr 12, 2006 9:04 am Post subject: |
|
|
This looks useful, but I am not very good in REXX . I copied the same code and try to execute it. But seems like it is not doing anything. It just accept the string and that is it. So could you please tell how to make that command to execute.? (Asking too much ah??  |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12380 Topics: 75 Location: San Jose
|
Posted: Wed Apr 12, 2006 9:43 am Post subject: |
|
|
semigeezer,
I remember that you can add delimiter at the end of the command and press enter and on the new command line you type the next line of the command and ISPF treats it as a single command.
However I can't recall what it is now
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
|
|