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. vhagopian

    REXX + Stored procedure

    Is there a way to kick off a stored procedure on a network drive from a REXX routine located on the mainframe without submitting a batch job?
  2. jonats

    rexx program

    Does anyone know how to do this in rexx? I want to display a text "ANY TEXT", then I want to move this text as i press the enter key (I already have the routine assigning how many spaces the text will move); just want to know how to make the text move. Thanks, Jonathan
  3. Fern7519

    Rexx loop

    Hello, I'm new using REXX. I would like to build a script that will generate jobs that require to loop the Jobname field. For example. I have to copy 500 DSN's but I need to submit the copy jobs five at time. What I have built so far is able to create all 500 copy jobs But upon adding the...
  4. 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.
  5. SowKan

    REXX Member list

    ...all the members starting from LIS like LISPGM, LISCAT,LISTWM, etc,...should be the output. One way to do this is to submit a SRCHFOR job from my REXX EXEC. However I don't want to do this as this would take time and I need to wait until the job finishes. Is there any other way or utility in...
  6. Paolast

    Rexx with DB2 and panels

    Hi, Everybody, I have a Rexx program and I am trying that this rexx program displays the result of a query (DB2) in a panel. I don't know, How can I display all records of that query in the panel?. I will appreciate any example code of panels and Rexx/Sql program. Thanks in advance, Paolast
  7. mrc2

    Rexx calling a cobol pgm

    I have a rexx pgm that calls a cobol program to do some logic. I have display statements in my cobol program. Is there anyway to trap those messages in my rexx program? Using the Outtrap command does not work. Or is there any other way to get messages back to my rexx program? Thanks for any...
  8. ArtGab01

    REXX macro OPEN/VSAM

    good day I found examples of use of macros REXX OPEN/CLOSE/GET/PUT to have access archives vsam inside of the REXX, to put I receive the following message: 7 +++call open ' vsam' , ' invs' , ' (key, seq, to dir) ' irx0043i Error running TSTVSAM, line 7: Routine not found Where I find...
  9. jenkiam

    IMS Commands from REXX

    Hi forum, I'm trying to create a rexx which issues a /DIS A command to an IMS region & interrogate the response but I'm having a problem in that the command response is coming back as an un-solicited message so my rexx cant read it into my loop code. Any advice would be appreciated.. Thanks Andrew
  10. Sreen4u

    Writing to output dataset using REXX

    Hi, I am the REXX beginner and tried the below REXX but not writing the content from input dataset to output dataset. /* REXX */ "alloc shr file(input) dataset('CSCSG1.REXX.INPUT')" "alloc shr file(out) dataset('CSCSG1.REXX.OUTPUT')" "execio *...
  11. cue89

    VBA and rexx

    Hello, I'm trying to execute a rexx programm. I would like to use some vba objects of powerpoint, but some of them do not work. Do someone have any idea? How can i use them?
  12. ivviva

    Rexx & Macro

    Hello, I writed a rexx with inside ADDRESS TSO for deleting and allocating datasets, and ADDRESS ISPEXEC ISREDIT MACRO, for changing string. How I use it....... I open a member and I write in the line command the myrex name and execute it.... and all it's OK! Well, now I would like use the...
  13. iadithot

    Rexx script to execute at Login

    When I worked at a different shop they had a "Rexx Startup" PDS. If you put a Rexx script in this "Rexx Startup" PDS the script would execute when the User logged into TSO. I have looked through the manual and can't find any mention of this "Rexx Startup" PDS. I am not a Systems Programmer...
  14. acriad

    how call rexx from cobol program

    i need call from cics to rexx from exec order to racf . i can from rexx to cobol.
  15. Rexxplorer

    Passing Stem Variables between Rexx execs

    Hi, How do you create a stem variable in a rexx module to be used by another rexx module? I tried "call xxx(stem.)" and "stem.=xxx()" but it didn't work. btw, this is in TSO Rexx. Thanks
  16. ringd

    REXX and Packed Decimal.

    How can I read packed decimal record fields using REXX/MVS?<br>(we don't have the P2D function).
  17. isealey

    Using REXX variables in ISREDIT

    I have a situation where I am extracting information from a REXX function and placing it into a REXX variable, such as: DATE_MONTH = DATE(M) I am using these REXX variables to allocate files which will be used on a monthly basis, such as: "ALLOC DA('xxxxxxxx.CCINP."DATE_MONTH"') NEW...
  18. artheim

    Word documents from Rexx

    Is there a way to access word documents from a Rexx program? I need to build an index based on content within several hundred Word documents, but do not know how to parse out the Word data to be usable with a Rexx exec. This would be using Word from Office 2000 and IBM ObjRexx on Windows 98 and...
  19. mstone08

    abend a rexx in batch

    I am running a rexx in batch through IKJEFT01. If the REXX meets certain criteria I want it to abend. I can force a return code and can then check the RC in my jcl, but I would rather get it to abend. I tried calling a standard utility that forces an ABEND, and it did abend, but the rexx...
  20. ratso

    bad backslash in mvs rexx

    try this in mvs rexx /*rexx*/ say '/' as you would expect you get a '/' displayed on screen. now try /*rexx*/ say '\' note backslash not forward slash, it converts it to ':' this is a problem for me since im trying to NDM files from mainframe to NT shared drives using connect direct, and...

Part and Inventory Search

Back
Top