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 |
I want to open particular list of members inside pds.Let me know whether below code will work.if not tell me how it works INPUT='DDM.DATASET(AAA*)' X = OUTTRAP(MEMS.)
What is the difference between ooRexx and IBM's Object REXX for Windows?
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.
I want to set position for a particular text in a certain position in several of my cics maps.Please provide me with a solution. Ex: If "F1-Help" has to be set to pos(4,27) always in all the maps within a PDS.
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?
is oorexx compatible with rexx?
What do unusual return codes such as -3 and 0196 mean?
for which platforms is uni-rexx available?
can oorexx run normal rexx programs?
Enlist the features of rexx as a programming language.
How do I find or access the current level of a GDG?