Ok, problem figured out...
I updated my code with Barbara's suggested changes. From QSH I set the
classpath and called the Java class that uses PCML to call the RPG program.
I was signed on as a user I want to use for this (AM2000). Even though I
had my library list set up it started the job with the initial library list
of the user (sans the physical file in the program).
I will now be figuring out best practices for setting the LIBL of the job.
Thanks Barbara!
Kristen
Here is the RPG code with Barbara's changes in it:
FAMLUD IF E K DISK usropn
*
D QCMDEXC PR EXTPGM('QCMDEXC')
D cmd 3000a const
D cmd_len 15p 5 const
D theCommand S 3000a varying
D coname S 30a
/free
monitor;
open(e) amlud;
eval coname = 'test';
chain coname amlud;
on-error *all;
exsr *pssr;
endmon;
*inlr = '1';
begsr *pssr;
theCommand = 'DSPJOB OUTPUT(*PRINT)';
callp(e) qcmdexc (theCommand : %len(theCommand));
theCommand = 'DSPJOBLOG OUTPUT(*PRINT)';
callp(e) qcmdexc (theCommand : %len(theCommand));
dump(a);
*inlr = '1';
endsr;
/end-free
-----Original Message-----
From: java400-l-bounces@xxxxxxxxxxxx [
mailto:java400-l-bounces@xxxxxxxxxxxx]
On Behalf Of Barbara Morris
Sent: Thursday, May 10, 2007 9:08 AM
To: java400-l@xxxxxxxxxxxx
Subject: Re: PCML Problem
Kristen, to debug this, try changing your program temporarily so you can
output the joblog and job information. (Or maybe not temporarily; if
you don't have any exception handling in your RPG program, it would be
waiting for a reply to an inquiry message. So it's a good idea to avoid
the possibility of an inquiry message.)
As an Amazon Associate we earn from qualifying purchases.