Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
72 views

Python clist widget not returning expected list, returns only the first character of each item

I wrote a simple program to print out all non-hidden files and subdirectories in a given directory. I am now trying to migrate my code into a clist widget example I found on Google. Other than ...
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
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 ...
0
votes
1answer
76 views

CLISTs in Objective C

I have cpp code where the struct objects are put into the CLISTS. I am porting this code into Objective C. CLIST is similar to a doubly linked list with .RemoveAt , .GetAt , .InsertBefore , .GetNext ...
0
votes
1answer
220 views

Can CLIST access PDS member and GDG file?

I need to check a string in a GDG file, for example, to check 'ABCDEFG' in file : AAA.BBB.CCC.DDD(0). IF YES, append this string 'ABCDEFG' to the bottom of a PDS member: ABD.EFG.HIG(NAMES). IF ...
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 ...