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 derfloh 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: rexx

  • Order by relevance
  1. mkmc

    OO Rexx and DB2 LUW

    Has anyone written a rexx that uses data stored in DB2 LUW?
  2. Kavya55

    /* REXX */ ADDRESS TSO "D IPLINFO"

    /* REXX */ ADDRESS TSO "D IPLINFO" "ALLOC DD(SYSOUT) DA(OUTPUT.DATASET) SHR REUSE" "EXECIO * DISKR SYSOUT (STEM OUTPUT. FINIS)" DO I = 1 TO OUTPUT.0 IF POS("Load address", OUTPUT.I) > 0 THEN DO LOAD_ADDRESS = STRIP(SUBSTR(OUTPUT.I, POS("Load address", OUTPUT.I) + 12)) END IF...
  3. Jongskie M.

    REXX Loop conditional statement not working

    Hi am neophyte here, can you check the script below on how to declare loops in the conditional statement which start from the highlighted below. Call ZocCls login = ZocAsk(" What is your name:? ") IF login = "##CANCEL##" THEN DO answer = ZocRequest(" Command Cancelled , Retry?"...
  4. firedotwater

    REXX data manipulation

    Hello everyone I have a small rexx data manipulation issue. I have a huge file with a lot of information and I want to only print / save the my necessary information from the file. /*REXX*/ file = "my.dsn.to.file" "ALLOC FI(file)...
  5. Monica C.

    REXX program skips an input record

    I am running a REXX program within an Endevor processor. The REXX reads through a PDS member that contains JCL to execute a DB2 bind. The REXX reads each line of the JCL and makes modifications before queueing it. After it has read through all of the ddccards, it submits the job. The REXX is not...
  6. dothy

    REXX Overview

    Hi Can we ask for a brief overview of REXX. What is the primary function of REXX? How does REXX help the programmers in creating the SQL statements? Thank you dothy
  7. sun82

    Rexx PPT

    Hi All, I am new to Rexx. If any one know where i can find some REXX powerpoint presentations, it will be great. Thanks in Advance, - Sunder
  8. rexxhead

    Running REXX on a PC

    Is anybody running REXX on their PC and willing to help me get to that point? Frank Clarke --America's source for adverse opinions since 1943.
  9. Tweak

    REXX reference

    In OS/2 Warp4, reference is made to "OS/2 Procedures Language 2/REXX Reference"<br> <br> I suppose this is an .INF file. Anyone know where I can download this? I'm trying to find out the syntax for array variables. Just beginning in REXX.<br> Thanks<br> Tweak
  10. Truusvlugindewind

    REXX losing ground?

    It's all about REXX on the mainframe on this forum isn't it? It used to be a SAA language for all platforms. I've coded REXX on OS/2 and I remember when you installed DB/2 on WinNT4, you would get REXX installed automaticly. Recently I've installed DB2V8 on XP, but no REXX came along... So...
  11. tatoriver

    Passing aprameters from a REXX to another Rexx

    Hello everyone, I am trying to pass in a isredit macro a parameter from a rexx to another independet rexx(not a rutine) I would like to start the first rexx save some values into a system variable if is there any variiable for this. And then read it from another rexx. Is this possible or i am...
  12. dietmar0609

    rexx on LINUX

    What do I have do install to run rexx pgms on LINUX, especially how to I launch (run) exiting rexx pgms Thx for your help Dietmar
  13. raj55401

    REXX ISSUE

    Hi, I am new for the REXX. I have a sequential file which is having 10 records. I have read this file and display the contents on the Panel. I have tried to read the file using the STEM variable but I am not able to display on the panel. Some one help me the panel code and REXX code? Thanks Raj
  14. Paolast

    Rexx Problem

    I have a simple Rexx program. This program only has a sentence: SAY 'HELLO WORLD' I compiled it, and its return code was 0. By the way, I have a JCL that executes Rexx program, and the return code was 0. I can't see the words HELLO WORLD in the screen. Can anybody help me? What's wrong...
  15. swosty8879

    rexx + jcl

    Hi all , I m submitting a jcl/job with my rexx,and the output dataset of the job is used down the line. Need a way to make the rexx wait till the job completes. Used a wait function to do that ,but need an alternative to it. Is there a command to check whether the particular job has completed...
  16. senthiljith

    REXX file system

    Hi all I am trying to code panels via rexx wherein, i encountered this RFS(rexx file system) but i don't have details abt it, can anyone help me on this thanks for help
  17. jimlocigno4

    Several REXX Batch Questions

    Hi I'm a little rusty on Rexx but have written A REXX program that reads two input files, does some manipulation on them and writes a third file. The rexx works fine when executed in the forground. My question is about Running REXX in batch. 1) Currently I have the rexx coded to allocate the...
  18. tidyboy

    REXX SCRIPT

    Just wondered if anyone had an example of a REXX script that converts space allocation for DSN between Tracks and bytes. Thanks in advance.
  19. dgjoyce

    Rexx stored procedure

    I have a Cobol/DB2 program that is calling a Rexx Stored Procedure. Within the Rexx I am trying to execute a SUBMIT command but receive error IKJ79204I - You attempted to run an unsupported function in a dynamic TSO environment. Has anybody encountered this before?
  20. tomwaites

    REXX help

    REXX - Can someone help please :) I just need a simple code to output random numbers and letters, about 10 lines but they need to be unique! i.e. 1234abcd56789efghij Thanks in advance

Part and Inventory Search

Back
Top