Difference between revisions of "Retrieve Job Description Information (QWDRJOBD)"

From MidrangeWiki
Jump to: navigation, search
(References)
Line 24: Line 24:
  
 
== References ==
 
== References ==
* [[ApiErrC — API Error Code]]
+
* [[API Error Code Structure (ApiErrC)]]

Revision as of 22:55, 13 December 2018

Summary

The following is an RPG/LE fully free-form prototype for the IBM QWDRJOBD API to retrieve information for a job description.

For more information on this API, visit Retrieve Job Description Information (QWDRJOBD) API (right-click to open link in a new tab).

Prototype for the QWDRJOBD API

//******************************************************************************
// IBM API to Retrieve a Job Description's information
// https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qwdrjobd.htm
//******************************************************************************
/include qsysinc/qrpglesrc,qwdrjobd         // QWDRJOBD API data structures
dcl-pr IBMAPI_RtvJobDesc          extpgm('QWDRJOBD');
  JobDesc               likeds(QWDD0100)    options(*varsize);
  JobDLen               int(10)   const;
  JobDFmt               char(8)   const;
  JobDName              char(20)  const;
  JobDErrC              likeds(ApiErrC)     options(*varsize);
end-pr;

References