Tagged Questions

3
votes
2answers
85 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 ...
2
votes
3answers
103 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
423 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 ...
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
926 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 ...
0
votes
1answer
60 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
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
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
581 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
476 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
717 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 ...