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'm getting error while editing macro, its not even entering into the macro, getting error like 31 *-* "EDIT DATASET('"DSN"("MEM")') MACRO("CHGLINE")" +++ RC(-3) +++ ? any idea why?
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.
How do I find or access the current level of a GDG?
If I have limited experience with Rexx or it's been a long time since I've used it, what kind of help is available to get me started?
How to code the db2 queries using rexx, and also plz send some link and examples using db2 queries?
what is uni-rexx?
What do unusual return codes such as -3 and 0196 mean?
have you already used rexx - even for limited purposes? Do you need to maintain a high level of productivity during your transition to unix?
I have one input file and some 40 tables, I want to read input file and compare the input file value with the table value if it is present then we have to update with new value, this should be repeated for all 40 tables and we are reading only one input file, for this is there any REXX program or job or routine to accomplish above requirement. components of the requirements; 1. One input file 2. 40 DB2 tables 3. we have to read from the input file and compare with table value, if present then update with new value (this should be recurssive for all 40 tables for every record of input file). 4. quick help is appreciated.
Can anyone provide me the source code for LOC(lines of code) counter written in REXX language which can run on IBM mainframe z/OS V1R4. The LOC counter should be able to count the comments,lines of code,blank lines in a COBOL program and JCL's
can I redistribute oorexx freely with commercial software?
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?