View previous topic :: View next topic
|
Author |
Message |
veena_nagesh2002 Warnings : 1 Active User
Joined: 07 May 2005 Posts: 110 Location: hyderabad
|
|
|
|
CAN I GIVE ALIAS NAME TO TSO COMMAND WHICH I USE MOST
FREQUENTLY USED EITHER TSO OR OTHER COMMAND , THEN PLEASE
TELL ME HOW |
|
Back to top |
|
|
Dariusz Warnings : 1 New User
Joined: 11 Aug 2005 Posts: 27 Location: POLAND
|
|
|
|
Hi.
I think,you can make it.
I'd create my own command for ISREDIT.
Regards. |
|
Back to top |
|
|
veena_nagesh2002 Warnings : 1 Active User
Joined: 07 May 2005 Posts: 110 Location: hyderabad
|
|
|
|
CAN YOU EXPLAIN IT CLEARLY TO MY QUESTION |
|
Back to top |
|
|
amitava Warnings : 1 Active User
Joined: 30 Oct 2005 Posts: 186 Location: India
|
|
|
|
Hi veena_nagesh2002,
The first thing is I think u can give an alias to a TSO command through REXX routine. Eg:-
/* REXX */
address tso
TSO_COMMAND
return |
|
Back to top |
|
|
Dariusz Warnings : 1 New User
Joined: 11 Aug 2005 Posts: 27 Location: POLAND
|
|
|
|
I suppose,you've got ISPF/PDF and you dont use typical TSO commands
every day.
Alias for me it's alias for some member(program) in a library,
and we use for that standard utility.
Second way it's creation our own command.
How to make it ?
The first,command it's member of library known for TSO.
In every TSO procedure we,ve got DD named CMDPROC,and that library will by good(for example CPAC.CMDPROC or SYS1.CMDPROC).
Our base tool it's CLIST or REXX.
Every story about programming is without sense,because of this example:
PROC 3
RENAME &LIB(&OLDMEM) &LIB(NEWMEM)
END
This CLIST renames meber name for every cataloged library.
PROC 0
ISREDIT CHANGE 'PREFIX' CICS ALL
END
Depend on needs,we can create very much commands like above.
Regards. |
|
Back to top |
|
|
|