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

    from which library tso commands are picked up from?

    Why not just use the TSO ISRFIND command?
  2. superk01

    Writing to output dataset using REXX

    Can you help me what's wrong in the above REXX? First, get into the habit of properly allocating DD's in TSO. There's no reason NOT to always use the REUSE keyword. So, re-do your allocations: alloc shr reu fi(input) da('CSCSG1.REXX.INPUT') alloc shr reu fi(out) da('CSCSG1.REXX.OUTPUT')...
  3. superk01

    REXX Batch unable to allocate sortin and sysin dd for calling external

    RC=8 and RC=12 on basic TSO commands? Are you sure that TSO is available?
  4. superk01

    Unable to find the cursor position values.. Please help..

    Just copy you macro into your site-specfied ISPF macro library and be done with it. If you must use your own library, then talk to your site support team to find out how to include your library into your ISPF library concatenation.
  5. superk01

    ISPF commands invoked from a Rexx Exec

    I know that you can use REXX, like any other language, to invoke ISPF Services using the ISPEXEC address, or from within an ISPF Edit Macro using the ISREDIT address. I personally don't know of any other Address type that's relevant to the ISPF envitronment, but I'm not an ISPF expert.
  6. superk01

    RC -12

    Don't really know what to say. Did it ever work calling it from TSO? I'm wondering if that program is specifically designed to not be executable from within a TSO session. What have your Sysprogs said about it?
  7. superk01

    Redisplaying table at certain row

    This was a quick test to figure out how to display the panel on the row where it was last displayed: crp = 1 "ISPEXEC TBTOP tbl0" "ISPEXEC TBSKIP tbl0 NUMBER("crp")" Do Forever...
  8. superk01

    QUEUE Command Converting Hex Character

    Well, obviously, TSO SUBMIT is converting the non-display (i.e. transparent) characters to other values. I don't see anything in the command documentation to prevent that. Have you considered NOT using TSO SUMBIT and trying another method? I noticed that this doesn't happen with an ISPF Edit SUB...
  9. superk01

    ISPEXEC RC -3????

    Actually, the RC (-3) usualy means that the Address environment is not available. If, in your, case, you find I'm right and ISPF isn't active, then you need to address these issues: 1. Before, you can use ISPF, you must have TSO/E available. 2. Once TSO/E is available, you have to start ISPF...
  10. superk01

    ISPEXEC RC -3????

    Not exactly a REXX problem, but anyway ... Whenever I see a RC(-3) for an ISPF Service call, I immediately get suspicious that ISPF is not available. Is it? You can use a PARSE SOURCE SRC command at the top, and see if within the SRC variable is the keyword ISPF. If should look something like...
  11. superk01

    Execio and JCL Proc to write PDS members

    Create the output in IEBUPDTE format. Then, the next step could actually run IEBUPDTE and create the members that way.

Part and Inventory Search

Back
Top