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 IamaSherpa 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. tolearnrexx

    Using BPXWDYN with C for Z/Os

    Hi .. I have a requirement where I need to create a VSAM file on Z/Os from a C program. After some research I am thinking I will be able to do that using BPXWDYN utility of IBM. But when I try to run the same am getting some exception so want to reach to you guys and see if anyone is already...
  2. tolearnrexx

    Define VSAM file using REXX.

    Cool .. Thanks a lot .. this works. Am very sorry for bugging you so many times on this. Guess I need to try and understand error messges more carefully. Thanks again Ramesh.
  3. tolearnrexx

    Define VSAM file using REXX.

    Hi .. Tried that and am still getting the same. /* REXX */ VSAMF = "ETPDBKR.SAMPLE.KSDS2" "DEFINE CLUSTER (NAME('"VSAMF"')) ", "DATA ", "((RECORDS(500 100) ", "EXCEPTIONEXIT(DATEXIT) ", "ERASE "...
  4. tolearnrexx

    Define VSAM file using REXX.

    am trying the same way /* REXX */ VSAMF = "ETPDBKR.SAMPLE.KSDS2" "DEFINE CLUSTER (NAME('"VSAMF"'))", "DATA ", "((RECORDS(500 100) ", "EXCEPTIONEXIT(DATEXIT) ", "ERASE "...
  5. tolearnrexx

    Define VSAM file using REXX.

    Hi.. Thanks a lot for the responses. I have tried the same something like /* REXX */ VSAMF = "ETPDBKR.SAMPLE.KSDS2" "DEFINE CLUSTER (NAME('"VSAMF"'))", "DATA", "((RECORDS(500 100)", "EXCEPTIONEXIT(DATEXIT)"...
  6. tolearnrexx

    Define VSAM file using REXX.

    Hi Rexxhead, I am trying the syntax you have mentioned as /* REXX */ "DEFINE CLUSTER (NAME(ETPDBKR.SAMPLE.KSDS2)) - DATA - (RECORDS(500 100) - EXCEPTIONEXIT(DATEXIT) -...
  7. tolearnrexx

    Define VSAM file using REXX.

    Thanks Rexxhead and mainframe boy for educating me on this. I am new to REXX so could not really judge whether it is a rexx question or not. Thanks.
  8. tolearnrexx

    Define VSAM file using REXX.

    Hi, I have a requirement where I need to define a KSDS using REXX. I have seen examples where a VSAM is searched using REXX but for my requirement I need the VSAM dataset to be defined through REXX. Any help with coding examples is very much needed. Thanks a lot in anticipation.

Part and Inventory Search

Back
Top