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 Mike Lewis 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. jivetrky

    Calling Cobol DB2 from REXX (ISPF panel)

    Have you tried this? x=msg('off') "CALL 'LMG.TEST.LOAD(NDVREMER)' '"ndvparm"'" x=msg(x) This will turn messages off for this call. Or you could use outtrap if you need to process the message. x=OUTTRAP("mymsg.") "CALL 'LMG.TEST.LOAD(NDVREMER)' '"ndvparm"'" x=outtrap(off) A positive...
  2. jivetrky

    CALLING MACRO IN BATCH

    I found the problem. It was a region size issue. I increased my region and it worked like a champ. I would like to thank everyone who posted.
  3. jivetrky

    CALLING MACRO IN BATCH

    OK, I tried something a little different. I'm building my edit macro on the fly and then calling it. I am storing my macro in the same library as my EXEC (SYSSU.REXX.EXEC). It is coded as follows: /* REXX */ Say "<<<<<<CMNEDIT REXX EXEC WAS...
  4. jivetrky

    CALLING MACRO IN BATCH

    Also, I'm following this article from TSO/Times to the tee. http://www.tsotimes.com/articles/archive/summerfall98/ispf.html
  5. jivetrky

    CALLING MACRO IN BATCH

    It works like a champ in the foregroup. When I run a trace, I get an RC(4). 11 *-* ADDRESS ISPEXEC "EDIT DATASET('"FILENAME"') MACRO("MACRO1")" >>> "EDIT DATASET('TEST.PDF') MACRO(##CMDS)" +++ RC(4) +++ 12 *-*...
  6. jivetrky

    CALLING MACRO IN BATCH

    I don't think that is the problem. I have quotes around the dataset name and feeding a variable. (i.e. '"FILENAME"') I renamed my dataset from TEST.PDF to S743SS.TEST.PDF and reran my job. I got a return code of 990 with the following errror. * Data set not cataloged -/-'TEST.PDF' was...
  7. jivetrky

    CALLING MACRO IN BATCH

    I'm trying to run an edit macro from batch. Below is the JCL, edit macro, and REXX. It works online but not in batch. It appears the edit macro is not being called. What am I doing wrong? Also, I'm attaching the output of my JCL. *******************************************************...
  8. jivetrky

    Clean-up the unwanted datasets

    Are you trying to do this in MVS?
  9. jivetrky

    Send email through REXX

    Have you looked at XMITIP? http://www.lbdsoftware.com/xmitip.html
  10. jivetrky

    Program hang with REXX

    That was it rexxhead. I knew it was something simple. Thanks for everyones help.
  11. jivetrky

    Program hang with REXX

    I have a REXX using panels to gather information from the user to build JCL for them. I'm running into a problem. After the user enters their information, they have to press the enter key twice to have it to go on. I've tried to use the following: "ISPEXEC CONTROL DISPLAY LOCK" before...
  12. jivetrky

    ADDING MSGLINE

    Its been awhile since I've worked in REXX. I'm trying to remeber how to add a message line to a dataset when I'm in edit mode. For example ==MSG> MESSAGE GOES HERE ==MSG> MESSAGE CONTINUES ETC ETC 00001 00002 00003 Anyones help would be appreciated.
  13. jivetrky

    outtrap issue

    I'm thinking its vendor supplied program. I can't find it in my concat libraries. It is basically checking dataset enques.
  14. jivetrky

    outtrap issue

    I am having issues with outtrap. I am using the following code to trap dsnenq command. Trapping is not working because it lists the DSNENQ command output and if you list var.0 command it is zero. Any ideas? do i=1 to info.0 dsn=strip(substr(info.i,1,46),t) x =...
  15. jivetrky

    CONCAT private libraries to SYSPROC

    Thks rxusr it worked great.
  16. jivetrky

    CONCAT private libraries to SYSPROC

    Is there a way to concat my private command library to the default SYSPROC concatenation with REXX. This way I can enter TSO appname instead of TSO EX 'LIB.NAME(APPNAME)'
  17. jivetrky

    New to Python

    I'm trying to install pygtk 2.10.4 on my Linux box (ubuntu). When I run the ./configure, I get the following error: configure: error: could not find Python headers What package do I need to add to get pygtk to install?
  18. jivetrky

    $_SERVER['REMOTE USER']

    roadcone20 I got it to work using .htaccess for apache. I had a typo in the thread. I was using $user=$_SERVER['REMOTE_USER']; It gave me the logon name I used for .htaccess. What I need is to gather the local user name from their PC. This way I can build an email address from it. The PHP...
  19. jivetrky

    $_SERVER['REMOTE USER']

    jpadie, I got .htaccess to work. I have another question. Do you know away through PHP I can get the remote user userid? What I'm trying to do is gather the remote user id and build an email address from the logon id. I have a request form built with mySQL & PHP. When the user submits...
  20. jivetrky

    $_SERVER['REMOTE USER']

    Thanks for pointing me in the right direction.

Part and Inventory Search

Back
Top