Difference between revisions of "List User Jobs (QUSLJOB)"

From MidrangeWiki
Jump to: navigation, search
(Summary)
 
Line 31: Line 31:
 
end-pr;
 
end-pr;
 
</pre>
 
</pre>
 +
 +
== Example ==
 +
See the [[Get Job List]] service procedure.
  
 
== References ==
 
== References ==
 
* [[API Error Code Structure (ApiErrC)]]
 
* [[API Error Code Structure (ApiErrC)]]

Latest revision as of 17:22, 17 December 2018

Summary

The following is an RPG/LE fully free-form prototype for the IBM QUSLJOB API to create a list of user jobs into a user space.

For more information on this API, visit List Job (QUSLJOB) API (right-click to open link in a new tab).

By Dave Clark

Prototype for the QUSLJOB API

//******************************************************************************
// IBM API to List User Job information into a User Space
// https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qusljob.htm
//******************************************************************************
dcl-pr IBMAPI_ListUserJobs        extpgm('QUSLJOB');
  UsrJobSpace           char(20)  const;
  UsrJobLFmt            char(8)   const;
  UsrJobName            char(26)  const;
  UsrJobStat            char(10)  const;
// optional parm group 1
  UsrJobErrC            likeds(ApiErrC)     options(*nopass:*varsize);
// optional parm group 2
  UsrJobType            char(1)   const     options(*nopass);
  UsrJobFldN            int(10)   const     options(*nopass);
  UsrJobFldK            int(10)   dim(1)    const  options(*nopass:*varsize);
// optional parm group 3
  UsrJobChdl            char(48)  const     options(*nopass);
end-pr;

Example

See the Get Job List service procedure.

References