Difference between revisions of "Retrieve Job Description Information (QWDRJOBD)"
From MidrangeWiki
DaveLClarkI (talk | contribs) (Created page with "Category:API Category:RPG_Prototypes == Summary == The following is an RPG/LE fully free-form prototype for the IBM QWDRJOBD API to retrieve information for a job des...") |
DaveLClarkI (talk | contribs) |
||
Line 4: | Line 4: | ||
The following is an RPG/LE fully free-form prototype for the IBM QWDRJOBD API to retrieve information for a job description. | 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 [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qwdrjobd.htm Retrieve Job Description Information (QWDRJOBD) API] (right-click to open link in a new tab). | ||
== Prototype for the QWDRJOBD API == | == Prototype for the QWDRJOBD API == |
Revision as of 16:58, 7 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;