How do I pass parms to my ISPF Edit macro
Answers were Sorted based on User's Feedback
Answer / shakila vinayagam
From command line calls use ISPEXEC "MACRO (parms)"
| Is This Answer Correct ? | 6 Yes | 3 No |
Answer / albert n
On the command line in the editor, just use the name of the
macro and list the paramters behind it. E.g. if you have a
macro called FINDALL and it expects 3 parameters you would
specify in the commandline: FINDIT parm1 parm2 parm3
When you code the MACRO the first line should be like:
Address ISREDIT "MACRO (parm1 , parm2, parm3)".
Since you are working with REXX you could have used:
Address ISREDIT "MACRO ( parm )"
You then parse the parm like this:
Parse (UPPER) Arg parm parm1 parm2 parm3
| Is This Answer Correct ? | 3 Yes | 3 No |
Is it possible to port existing applications from the mainframe or os/2? Are there major changes required to do this?
is oorexx compatible with ibm object rexx?
I want to code a REXX Program in order to load many tables in a database simultaneously in a batch fashion. Currently batch codes ar available in which only one job is submitted at a time and this loads only one table. My requirement is that many tables should be loaded at a time when one Job is submitted and can this be done using REXX Tool???
How to run my rexx exec?
can I port my existing applications from the mainframe or os/2? Will there be extensive changes required to do this?
what if I need to have the same application running on multiple platforms, such as unix and the mainframe? Does that mean I have to maintain two separate sources?
Can I cleanly uninstall oorexx?
can I redistribute oorexx freely with commercial software?
i want to code a rexx program in order to get the inputfile and output files of jcl. i want code snippet or the coding for this , please
What do unusual return codes such as -3 and 0196 mean?
What are various loop types supported by rexx?
How do I access data held on the JES spool?