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 |
Enlist the features of rexx as a programming language.
Suppose if there are a set of statements and each has a word “value” in it, if I want to display all these statements so that the word “value” is aligned, then how do I code this in rexx?
can I redistribute oorexx freely with commercial software?
What do unusual return codes such as -3 and 0196 mean?
I want to remove a duplicates form a given input field using rexx program. please Any one help me out to solve this ... Thanks in Advance.
Suppose 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?
How to code the db2 queries using rexx, and also plz send some link and examples using db2 queries?
If there are a set of statements and each has a word "value" in it, If I want to display all these statements so that the word "value" is aligned, then how do I code this in REXX. e.g - The value of X is Y. Wot is its value? Do u know its value? I want to know its value.
How to run my rexx exec?
How to code the db2 queries using rexx?
Is it possible to combine uni-rexx with a compiled language in any application? What applications interfaces are there?
What is the difference between ooRexx and IBM's Object REXX for Windows?