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 Chriss Miller 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: *

  • Users: Tzu
  • Order by date
  1. Tzu

    accessing DB2 with REXX

    Hello, Yes, you can use a product like REXXTOOLS (Open Software Technologies, Inc). Web : WWW.OPEN-SOFTECH.COM Regards, Tzu.
  2. Tzu

    Calling PL/I

    Hello Rexxhead, Can not you just change the logon proc and add your library ? Regards, Tzu
  3. Tzu

    rexx + jcl

    Hello swosty8879, You can use the COND code in your jcl, if the previous step is ok then submit your next JCL. Regards, Tzu
  4. Tzu

    Multi data-set editor

    Hi BrembM3, The DSNINFO does not send any display by itself, so you should have something which does it. If you want us to have a look just poste the complete code. Regards, Tzu.
  5. Tzu

    USER ABEND CODE 0999 REASON CODE 00015020

    Hello KiwiREXXDude, If you read it correctly, I wrote that my ISPPROF was duplicated, so there is no risk of contentions. But your solution work too, thanks KiwiREXXDude. For suchatterjee the last time I got an abend u0999, it was because I tried to access one table which was already old by...
  6. Tzu

    USER ABEND CODE 0999 REASON CODE 00015020

    Hi suchatterjee, I use the ISPPROF to simulate one TSO session, so my ISPPROF is one copy of my logonid.ISPF.ISPPROF. I can see that yours is with disp=new. Here is one of my JCL : //S1 EXEC PGM=IKJEFT01,DYNAMNBR=45,REGION=2048K //ISPPROF DD DSN=XXXX.BATCH.ISPPROF,DISP=SHR...
  7. Tzu

    USER ABEND CODE 0999 REASON CODE 00015020

    Hello Suchatterjee, I think you have to give us more informations, can you for example show us the complet JCL ? I noticed that you use IKJEFT1A is it a clone of IKJEFT01 ? Are you using also the card ISPPROF ? I use the LM command myself on batch and it works find, so something should be...
  8. Tzu

    REXX SCRIPT

    Hello tidyboy, First you should know the kind of dasd you are working with. For example if you are working with 3390 mode, your track will be 56664 bytes. Second you should know the LRECL length. If the length of your LRECL is 27998 bytes then you will be able to put two of them on one...
  9. Tzu

    Complete Beginner's Guide to MVS Assembler?

    Hello Tpms2000, You can try the book of Carmine a. Cannatello Advanced Assembler Language and MVS Interfaces. It is a good book with a lot samples, you can even buy the complet set of programmes given in this book. Regards, Tzu.
  10. Tzu

    Delete duplicate records

    Hello Newbie2u, You can just use a SORT jcl like : //* //*=================================================================== //* //* EXCLUDE DOUBLES IN...
  11. Tzu

    rexx tool waits for user input

    Hello Gopi, You just open the file, but you do not read read them. The manual say : If you specify a value of zero (0), no I/O operations are performed unless you also specify either OPEN, FINIS, or both OPEN and...
  12. Tzu

    How do I compress a PDS

    Hello Daryani, Try this code : /* REXX */ MESSAGE_SETTING = MSG(&quot;OFF&quot;) DATASET1 = USERID()!!'.COMP.LIST' DATASET2 = XXXX.XXXX.XXXX <=== Library you want to compress DATASET3...
  13. Tzu

    copy Dataset to pds without using Copy

    Hi Daryani, Try this one : /* REXX */ ADDRESS TSO FICH = The name of your sequential file WHY = ' ALLOC BIB1'...
  14. Tzu

    need a utitlity to concatenate all dataset having common node

    Hi deveshjogal, Sorry for my late reply, You can try this code : /* REXX */ /* TRACE I */ MESSAGE_SETTING = MSG(&quot;OFF&quot;) ADDRESS ISPEXEC &quot;CONTROL ERRORS...
  15. Tzu

    need a utitlity to concatenate all dataset having common node

    Hi Devesh, How big are your files ? Could you give me one sample of the name you use ? Regards,
  16. Tzu

    ISPF editing

    Hello, Try this code: ADDRESS ISREDIT &quot;MACRO PROCESS&quot; ADDRESS ISPEXEC &quot;CONTROL ERRORS RETURN&quot...

Part and Inventory Search

Back
Top