Open List of Job Log Messages (QGYOLJBL)

From MidrangeWiki
Jump to: navigation, search

Summary

The following is an RPG/LE fully free-form prototype for the IBM QGYOLJBL API to open a list of joblog messages for a specified job.

For more information on this API, visit Open List of Job Log Messages (QGYOLJBL) API (right-click to open link in a new tab).

By Dave Clark

Prototype for the QGYOLJBL API

//******************************************************************************
// IBM API to Open a List of Job Log Messages
// https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/QGYOLJBL.htm
//******************************************************************************
/include qsysinc/qrpglesrc,qgyoljbl         // QGYOLJBL API data structures
dcl-pr IBMAPI_ListJobLogMessages  extpgm('QGYOLJBL');
  JobLogRcvr            likeds(QGYORV)      options(*varsize);
  JobLogRLen            int(10)   const;
  JobLogLstI            likeds(QGYOLI)      options(*varsize);
  JobLogMCnt            int(10)   const;
  JobLogMSel            likeds(QGYOMSI)     options(*varsize);
  JobLogMSLn            int(10)   const;
  JobLogErrC            likeds(ApiErrC)     options(*varsize);
end-pr;

Example

See the Get Last Joblog Messages service procedure.

References