Re: Custom ISPF command

2024-01-25 Thread Seymour J Metz
/~smetz3 עַם יִשְׂרָאֵל חַי נֵ֣צַח יִשְׂרָאֵ֔ל לֹ֥א יְשַׁקֵּ֖ר From: IBM Mainframe Discussion List on behalf of Mark Zelden Sent: Thursday, January 25, 2024 2:50 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Custom ISPF command On Tue, 23 Jan 2024 16:19:01

Re: Custom ISPF command

2024-01-25 Thread Bob Bridges
Good point. I do the same kind of thing already with dataset names; I keep a table at each client for my own libraries, and no matter where I go my general REXX library is XG, my JCL library is JG, a scratch data library is DG and so on. There are other abbreviations; XT is the "team" exec

Re: Custom ISPF command

2024-01-25 Thread Mark Zelden
On Tue, 23 Jan 2024 16:19:01 -0500, Bob Bridges wrote: >I used to add my own commands to the ISPF command table. But somehow I got >out of the habit; I went to a new site, didn't get around to it, got used to >just putting "TSO" in front of commands, then forgot where to go to do it the

Re: Custom ISPF command

2024-01-23 Thread Bob Bridges
I used to add my own commands to the ISPF command table. But somehow I got out of the habit; I went to a new site, didn't get around to it, got used to just putting "TSO" in front of commands, then forgot where to go to do it the other way. Now I can find the command table again, but why?

Re: Sv: Custom ISPF command

2024-01-23 Thread Willy Jensen
I can offer my ISPCMDU found at https://harders-jensen.com. With it you can update the ISPF command table ISPCMDS in flight, no restart required. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to

Sv: Custom ISPF command

2024-01-23 Thread Lars Höglund
Using this Rexx (from Douglas H Adams), works perfect) Did rewrite some code //Lasse -Ursprungligt meddelande- Från: IBM Mainframe Discussion List För Mark Zelden Skickat: den 23 januari 2024 17:43 Till: IBM-MAIN@LISTSERV.UA.EDU Ämne: Re: Custom ISPF command On Tue, 23 Jan 2024 07:54

Re: Custom ISPF command

2024-01-23 Thread Mark Zelden
On Tue, 23 Jan 2024 07:54:50 -0600, Tom Marchant wrote: >"Obviously, you still need to restart ISPF to enable the new commands." > >It isn't obvious to me. For another example of modifying the command >table dynamically, see Gilbert Saint-Fluor's FASTPATH command on the >CBT tape. I use it

Re: Custom ISPF command

2024-01-23 Thread Radoslaw Skorupka
Thank you, I appreciate it. -- Radoslaw Skorupka Lodz, Poland W dniu 23.01.2024 o 15:03, Robert Prins pisze: Here's the free-of-any errorchecking, I've only ever used it myself, small exec to update command tables using the standard ISPF dialog. Obviously, you still need to restart ISPF

Re: Custom ISPF command

2024-01-23 Thread Lionel B. Dyck
e: Custom ISPF command "Obviously, you still need to restart ISPF to enable the new commands." It isn't obvious to me. For another example of modifying the command table dynamically, see Gilbert Saint-Fluor's FASTPATH command on the CBT tape. I use it regularly. Issuing the FASTPATH comma

Re: Custom ISPF command

2024-01-23 Thread Robert Prins
On Tue, 23 Jan 2024 at 13:55, Tom Marchant < 000a2a8c2020-dmarc-requ...@listserv.ua.edu> wrote: > "Obviously, you still need to restart ISPF to enable the new commands." > > It isn't obvious to me. For another example of modifying the command > table dynamically, see Gilbert Saint-Fluor's

Re: Custom ISPF command

2024-01-23 Thread Tom Marchant
"Obviously, you still need to restart ISPF to enable the new commands." It isn't obvious to me. For another example of modifying the command table dynamically, see Gilbert Saint-Fluor's FASTPATH command on the CBT tape. I use it regularly. Issuing the FASTPATH command within ISPF adds some

Re: Custom ISPF command

2024-01-23 Thread Robert Prins
Here's the free-of-any errorchecking, I've only ever used it myself, small exec to update command tables using the standard ISPF dialog. Obviously, you still need to restart ISPF to enable the new commands. And of course saving them, like I do, in my private EXEC library could be omitted. Enjoy

Re: Custom ISPF command

2024-01-22 Thread Jon Perryman
>Create a site ISPF command table and add your commands to that. An alternative to creating a site ISPF command table is to dynamically add ISPF commands. Command tables are ISPF tables that can be updated using TBADD, TBDEL and TBUPD. ISPCMDS is always open (probably ISRCMDS too). When you

Sv: Custom ISPF command

2024-01-16 Thread Lars Höglund
Dyck Skickat: den 16 januari 2024 16:23 Till: IBM-MAIN@LISTSERV.UA.EDU Ämne: Re: Custom ISPF command Create a site ISPF command table and add your commands to that. See ISPF 3.9 and it will show you the defined ISPF command tables. There is one for each application (i.e. ISR), and then up to 3 user

Re: Custom ISPF command

2024-01-16 Thread Lionel B. Dyck
Character is what you are, reputation merely what others think you are.” - - - John Wooden -Original Message- From: IBM Mainframe Discussion List On Behalf Of Radoslaw Skorupka Sent: Tuesday, January 16, 2024 9:11 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Custom ISPF command (It is bett

Custom ISPF command

2024-01-16 Thread Radoslaw Skorupka
(It is better to ask than to stay uninformed) I have created few simple REXX scripts for other folks. Such script is located in SYSEXEC concatenation, so it can be issued using TSO SCRIPT1 or TSO SCRIPT2 PARM Recently I was asked to "make it ISPF native" - mean no TSO prefix in the command.