Re: PARM problem - HELP

2008-08-06 Thread Chris Mason
John Not understanding why you still have a problem after all the suggestions you have had! Here is the precise solution for you according to the reference given by Bob Rutledge. 1 2 3 4 5 6 7 8

Re: PARM problem - HELP

2008-08-05 Thread Chris Mason
Bob Rutledge provided the answer - even if it obliged those interested to locate the manual reference. But it's very short so here goes: quote 3.4.1.2 Continuing Parameter Fields Enclosed in Apostrophes To continue a parameter that is enclosed in apostrophes: Extend the parameter to column

Re: PARM problem - HELP

2008-08-05 Thread Lizette Koehler
[mailto:[EMAIL PROTECTED] On Behalf Of Chris Mason Sent: Tuesday, August 05, 2008 8:37 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: PARM problem - HELP Bob Rutledge provided the answer - even if it obliged those interested to locate the manual reference. But it's very short so here goes

Re: PARM problem - HELP

2008-08-05 Thread John Norgauer
Lizette - // SET P1='abc/def/ghi -sh' // SET P2='continue away' //STEP1 EXEC PGM=IEFBR14,PARM=(PARM1,'P1P1') not understanding your statement : PARM=(PARM1,'P1P2') Where does PARM1 get defined? John Norgauer University of California Davis Medical Center 2315 Stockton Blvd ASB 1300

Re: PARM problem - HELP

2008-08-05 Thread Lizette Koehler
To: IBM-MAIN@BAMA.UA.EDU Subject: Re: PARM problem - HELP Lizette - // SET P1='abc/def/ghi -sh' // SET P2='continue away' //STEP1 EXEC PGM=IEFBR14,PARM=(PARM1,'P1P1') not understanding your statement : PARM=(PARM1,'P1P2') Where does PARM1 get defined

PARM problem - HELP

2008-08-04 Thread John Norgauer
Here's my error: 10 //PS082 EXEC PGM=BPXBATCH, // // PARM='SH echo sftp -b /u/bpxbatch/mccheckftp // fis-depot-test.ucdavis.edu |su -s bpxbtch' 11 //SYSPRINT DD SYSOUT=* 12 //STDOUTDD

Re: PARM problem - HELP

2008-08-04 Thread William H. Blair
Your PARM field is too long to fit on one card: // PARM='SH echo sftp -b /u/bpxbatch/mccheckftp // fis-depot-test.ucdavis.edu |su -s bpxbtch' The rules of continuation for the PARM field would ostensibly require that you specify it as follows (that is, the correct

Re: PARM problem - HELP

2008-08-04 Thread Steve Comstock
John Norgauer wrote: Here's my error: 10 //PS082 EXEC PGM=BPXBATCH, // // PARM='SH echo sftp -b /u/bpxbatch/mccheckftp // fis-depot-test.ucdavis.edu |su -s bpxbtch' 11 //SYSPRINT DD

Re: PARM problem - HELP

2008-08-04 Thread Bob Rutledge
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2B670/3.4.1.2?SHELF=EZ2ZO10KDT=20070427231644CASE= Bob John Norgauer wrote: Here's my error: 10 //PS082 EXEC PGM=BPXBATCH, // // PARM='SH echo sftp

Re: PARM problem - HELP

2008-08-04 Thread Dooley, Robert
To: IBM-MAIN@BAMA.UA.EDU Subject: PARM problem - HELP Here's my error: 10 //PS082 EXEC PGM=BPXBATCH, // // PARM='SH echo sftp -b /u/bpxbatch/mccheckftp // fis-depot-test.ucdavis.edu |su -s bpxbtch

Re: PARM problem - HELP

2008-08-04 Thread Paul Gilmartin
On Mon, 4 Aug 2008 18:06:56 -0500, William H. Blair wrote: The rules of continuation for the PARM field would ostensibly require that you specify it as follows (that is, the correct syntax for continuation would be): // PARM=('SH echo sftp -b /u/bpxbatch/mccheckftp', //