Tagged Questions
REXX is a (most of the time) interpreted programming language developed by IBM in the end of 70's and beginning of 80's.
4
votes
3answers
579 views
How can I parse REXX code in Java?
I'd like to parse REXX source so that I can analyse the structure of the program from Java.
I need to do things like normalise equivalent logic structures in the source that are syntactically ...
3
votes
2answers
65 views
File tailoring without ISPF
I'm currently attempting to write a simpler external interface to a mainframe ISPF panel, however it makes use of ISPF file tailoring to modify JCL scripts before execution, and ISPF services ...
3
votes
5answers
380 views
Resources To Learn REXX
I want to travel in the past and learn REXX, but I don't know where to start, then I want some help from someone that can point me to the right place to start.
2
votes
3answers
84 views
Calling particular functions in an external Rexx script
I have a Rexx script which functions standalone, and I wish to use another Rexx script to call particular functions within it. I am aware I can call both an entire external Rexx file and internal Rexx ...
2
votes
2answers
409 views
Is there a way to do associative arrays in REXX?
I have some Perl code (for performance analysis) first developed under Linux which now needs to be ported to the mainframe. Apparently REXX is the scripting language of choice on that platform but ...
2
votes
1answer
323 views
REXX / z/OS question
I'm wondering one thing with REXX-language, how it handles data set locks.
The situation:
- I have sequential data set open in my ISPF-editor
- I start REXX-program what updates (makes changes) that ...
2
votes
0answers
114 views
Is there a more modern regexp handler for Open Object Rexx
The regular expression class (rxregexp.dll) that comes with ooRexx (I'm on 4.0.0) is relatively low on function compared, say, with Python's re module (even at 2.5.2).
It appears to have no ...
1
vote
1answer
65 views
Anyone know of Milsted rexx for windows? Open-rexx?
CA's automation point product has an embedded rexx interpreter. I've used other Rexx interpreters before back to the original on CMS. I'm trying to access the external data queue to allow the AP ...
1
vote
1answer
123 views
Executing mainframe REXXes in RDz 8.0.1 under Windows XP
We're running IBM's Rational Developer for zOS (RDz) in a Windows XP Professional environment. Great product, but not being able to run REXXes is a big hindrance.
Searches using Bing and ...
1
vote
1answer
201 views
1
vote
2answers
3k views
Is there a TSO command written in REXX or CLIST that can determine WHO has enqueued a dataset?
I need to write a REXX Exec or Clist to identify WHO has enqueued a Dataset and display a user friendly message on an ISPF dialog application. Due to system configuration issues, the %WHOHAS command ...
1
vote
3answers
3k views
How to pass arguments to REXX program through JCL
Can we pass arguments to a REXX program from JCL?
I suppose, JCL PARM can be used as we use for passing arguments to COBOL programs.. Do put your ideas here...
1
vote
2answers
874 views
How do I copy a member with a REXX/CLIST batch program (no ISPF)?
Under z/OS, I want to write a REXX or CLIST script to copy one sequential data set to another and then run another script (REXX). The other script expects a specific SDS to exist and I want to be able ...
1
vote
5answers
447 views
What is the processing overhead of length() in REXX?
How does the processing overhead of the length() function in REXX change with the length of the string?
Update: I'm using:
uni-REXX (R) Version 297t
Open-REXX
(TM) Copyright (C) iX Corporation
...
0
votes
1answer
51 views
Any tools on mainframe to compare xmls?
As i work with xmls on Mainframe, I would require a tool to compare which helps me in comparing and identifying missing/new tags found in an xmls when compared with base/source. Do we have any ready ...
0
votes
1answer
1k views
How do I display a table to an ISPF panel with Rexx then retrieve back updated user input?
I have a piece of Rexx that uses data from a PDS member to put together and display a table of fields along with default values. The values field is an input field, designed to allow the user to ...
0
votes
2answers
103 views
Get other than error level from exe
Is it possible to get a return value other than error level from .net exe? The exe is to be called from a script, batch or rexx.
If not, can you invoke a method in an assembly from batch or rexx and ...
0
votes
2answers
2k views
How to list out a GDG base properties through REXX
How to know GDG base properties through REXX code; Of course we can view the GDG limit thru File-aid 3.2 option But need to list the properties on the fly and may be used in consecutive ...
0
votes
1answer
126 views
Is REXX available in .NET?
Is anyone aware of a REXX implementation for .NET? Or plans for one, perhaps using the DLR?
0
votes
3answers
1k views
How to write a HEX string into a file as HEX using REXX
I have a string 'RAJA' which should be written into a file as HEX data.
Here are sample codes which help me to describe the issue.
Case(a)
name = 'RAJA'
name = C2X(name) /* Hex value = '52414A41' ...
0
votes
1answer
558 views
Any certifications for Mainframe experience? Please suggest
I'm having experience of 3years in Mainframe and working in India, for a reputed US Telecom MNC. I have expertise on COBOL, JCL, REXX and DB2. Can somebody suggest on doing some certifications. I know ...
0
votes
3answers
467 views
What are the relative merits of REXX and CLISTs under z/OS?
What are the advantages and disadvantages of using either REXX or CLISTs in TSO for z/OS?
My understanding is that CLISTs are just an older command language but we seem to receive a lot of new ...
0
votes
1answer
694 views
Problems using REXX to access both Teradata output and DB2 output
I have a REXX job that needs to read from both Teradata (using BTEQ) and DB2. At present, I can get it to either read from Teradata or DB2, but not both. When I try to read from both, the Teradata one ...