Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. karao76

    Wildcard in Listcat

    I probably did not make my question clear. LISTCAT LEVEL only allows you to specify up to a complete node but doesnt allow for wildcard characters like '*' . Am I right? I have datasets like this NODE1.NODE2.NODE3.VSA32441 . If I specify LISTCAT LEVEL ("NODE1.NODE2.NODE3") , it returns a very...
  2. karao76

    REXX Member list

    Here is a sample code to list out members from a PDS that match your criteria /*rexx*/ dsn = "MY.PDS" DUMMY =OUTTRAP("MEMB.","*") "LISTDS '"dsn"' MEMBERS" do i = 1 to memb.0 if SUBSTR(strip(memb.i),1,3) = 'LIS' then say "memeber :" memb.i end Hope this helps
  3. karao76

    Wildcard in Listcat

    How can I use a wildcard to get a subset of the dataset listing? The dataset naming is such that they differ only a few characters in the last node and I dont want to loop thru 10000 datasets to find a few.
  4. karao76

    calling assembler pgm

    I have an assembler pgm (load module) that takes an input record which is in binary and translates it into a character based record. The binary record is 64 bytes and the translated record is about 900 bytes. I am trying to call this assembler program from my REXX program but I dont know how to...

Part and Inventory Search

Back
Top