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 strongm 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. bobham

    Using REXX to talk to DBRC

    What is DBRC and how do you run it? Will it run under TSO? bobh
  2. bobham

    send an email with attachment

    In the slick willie gates world, you'll find the answer and much more at www2.hursley.ibm.com check out objrexx bobh
  3. bobham

    yesterday in DATE('S') Format

    woops ; that should have been yesterday_s = Date(s, (date(b) - 1),b) SBT bobh
  4. bobham

    yesterday in DATE('S') Format

    yesterday_s = (s, (date(b) - 1),b) in most flavors of REXX. bobh
  5. bobham

    Need basic REXX help.

    Could I ask WHY ???? bobh
  6. bobham

    TIME calculations...

    The best approach is calculate the number of seconds since some date in history -- 1900-01-01 usually works; then nbr of seconds since is number of whole days*nbr of seconds per day PLUS seconds in current day and calculate for both and subtract. N E ???? bobh
  7. bobham

    REXX GDG outtrap loop

    This will give the next generation nbr for any root - ( base) NEXTGEN: PROCEDURE PARSE ARG ROOT LAST = 0; CALL OUTTRAP 'LINES.' ,, 'NOCONCAT'; ADDRESS TSO "LISTCAT LEVEL("||ROOT||")"; DO I = 1 TO LINES.0 PARSE VAR LINES.I '-- ' JUNK '.G0' NBR 'V00' ; IF (NBR >...
  8. bobham

    bad backslash in mvs rexx

    An ascii blackslash is deceimal 92 whcih is a * in ebcdic; The colon you're getting is REXX... bobh
  9. bobham

    abend a rexx in batch

    Have you checked around www.mvshelp.com; they have an active REXX forum also... bobh
  10. bobham

    How do I convert convert the '-display' command

    What is BMC REXX ? bob hamilton
  11. bobham

    REXX syntax error

    Will the command work in ISPF ? bobh
  12. bobham

    LMMLIST to find out member statistics of a PDS

    There several techniques; go to www.mvshelp.com bobh
  13. bobham

    How to Execute a CLIST in REXX??

    Short answer is: what ever you would type in the tso command line, put it in quotes. REXX has the unique ability to pass to the operating system anything it doesn't understand. bobh
  14. bobham

    RxExecPgm problem

    Try ADDRESS and see what the command environment is. bobh
  15. bobham

    Listening to TCP sockects

    Look at www2.hursley.ibm.com the REXX home... they have some socket stuff.. btw, it would help if you gave more info about computer et c. bobh
  16. bobham

    REXX file system

    GOOGLE came up with this, IBM REXX for CICS/ESA ... 40 cylinders of 3380 DASD are required. For an initial REXX File System (RFS) file pool, an additional 40 cylinders are needed. Additional RFS file pool space ... www2.hursley.ibm.com/rexx/rexxcics.htm - 25k - Cached - Similar pages You might...
  17. bobham

    Sorting Dates

    One thing about Syncsort; you can write the exit pgms in REXX. This is very handy in some cases. bobh
  18. bobham

    Sorting Dates

    A good sort routine is in Charles Daney's book on REXX. bobh
  19. bobham

    Invoking Rexx from IBM HTTP Server

    Also, works on W98. bob hamilton
  20. bobham

    Can REXX be used with HTML or PHP

    I use OBJREXX with Apache server in CGI. bobh

Part and Inventory Search

Back
Top