iSeries stored procedure - how to get handle on the spool file output? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T01:02:28Zhttp://stackoverflow.com/feeds/question/708528http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/708528/iseries-stored-procedure-how-to-get-handle-on-the-spool-file-output0iSeries stored procedure - how to get handle on the spool file output?oidsman2009-04-02T06:34:37Z2009-10-02T03:00:02Z
<p>We have a stored procedure written using a CL and RPG program combination. When called locally on the iSeries all is fine. When called externally (for example from a SQL frontend) the RPG program cannot get a hadle on the spool file it produces because the spool file appears under a different (random?) job number and user.
The jobs run as QUSER in the QUSRWRK subsystem but the spool file gets the user id of which the connection was made externally in the connection pool (i.e USERA).</p>
<p>Is there a way of being able reliably to get a handle on the correct sppol file as the job runs (rather than relying on picking the last spool fiel from that queue etc).</p>
http://stackoverflow.com/questions/708528/iseries-stored-procedure-how-to-get-handle-on-the-spool-file-output/710451#7104510Answer by Mike Wills for iSeries stored procedure - how to get handle on the spool file output?Mike Wills2009-04-02T16:17:30Z2009-04-02T16:17:30Z<p>I need a bit more information, but I'll make some assumptions. Please clarify if I assumed wrong.</p>
<p>The QUSER in QUSRWRK behavior is correct. You are now running through the SQL server (or similar server). All connections run under these settings.</p>
<p>There are a couple approaches. </p>
<p>1) Assuming that this all runs in one job. Using '*" for the job information should work.</p>
<p>2) The other option is to use RTVJOBA CURUSER(&ME). The current user is the person that is logged in. USER would not work in this case.</p>
http://stackoverflow.com/questions/708528/iseries-stored-procedure-how-to-get-handle-on-the-spool-file-output/731578#7315780Answer by Paul Morgan for iSeries stored procedure - how to get handle on the spool file output?Paul Morgan2009-04-08T19:59:04Z2009-04-08T19:59:04Z<p>If you can modify the RPG program you can retrieve job information from the <a href="http://publib.boulder.ibm.com/iseries/v5r1/ic2924/books/c092508381.htm" rel="nofollow">Program Status Data Structure</a> while the <a href="http://publib.boulder.ibm.com/iseries/v5r1/ic2924/books/c092508378.htm" rel="nofollow">File Information Data Structure</a> has the spool file number from the open feedback area. However I'm not sure the job information will be for the QUSER job (not what you need) or for the USERA job (what you need). The spool file number could be enough of a handle for subsequent <a href="http://publib.boulder.ibm.com/infocenter/iseries/v5r3/index.jsp?topic=/apis/print1.htm" rel="nofollow">Print API</a> calls.</p>
http://stackoverflow.com/questions/708528/iseries-stored-procedure-how-to-get-handle-on-the-spool-file-output/798540#7985400Answer by Allen for iSeries stored procedure - how to get handle on the spool file output?Allen2009-04-28T15:28:16Z2009-04-28T15:28:16Z<p>The job itself knows or can find out (see previous answers) so, if all else fails, modify the program to place a message on a queue that provides the information you need. Read it off at your leisure.</p>
<p>. </p>
http://stackoverflow.com/questions/708528/iseries-stored-procedure-how-to-get-handle-on-the-spool-file-output/957201#9572010Answer by for iSeries stored procedure - how to get handle on the spool file output?2009-06-05T17:51:16Z2009-06-05T17:51:16Z<p>If you're running a stored procedure (running in job QZDASOINIT), you will no be able to access the spooled output via the program status data structure. Those spooled files reside in a job named, user/QPRTJOB, where user is the "current user" running the stored procedure. To access the spooled files, run api QSPRILSP to obtain a structure that points you to the spooled file. </p>
<p>Both the behavior and API is well documented in IBM's infocenter.</p>