Difference between revisions of "Retrieve Subsystem Description (QWDRSBSD)"

From MidrangeWiki
Jump to: navigation, search
(Summary)
Line 5: Line 5:
 
The following is an RPG/LE fully free-form prototype for the IBM QWDRSBSD API to retrieve information for a subsystem description.
 
The following is an RPG/LE fully free-form prototype for the IBM QWDRSBSD API to retrieve information for a subsystem description.
  
For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qwdrsbsd.htm Retrieve Subsystem Description (QWDRSBSD) API] (right-click to open link in a new tab).
+
For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qwdrsbsd.htm Retrieve Subsystem Information (QWDRSBSD) API] (right-click to open link in a new tab).
  
 
== Prototype for the QWDRSBSD API ==
 
== Prototype for the QWDRSBSD API ==

Revision as of 17:00, 7 December 2018

Summary

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

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

Prototype for the QWDRSBSD API

//******************************************************************************
// IBM API to Retrieve a Subsystem Description
// https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qwdrsbsd.htm
//******************************************************************************
/include qsysinc/qrpglesrc,qwdrsbsd         // QWDRSBSD API data structures
dcl-pr IBMAPI_RtvSbsDesc          extpgm('QWDRSBSD');
  SbsDscInfo            likeds(QWDI0200)    options(*varsize);
  SbsDscInfL            int(10)   const;
  SbsDscFmt             char(8)   const;
  SbsDscName            char(20)  dim(1)    const  options(*varsize);
  SbsDscErrC            likeds(ApiErrC)     options(*varsize);
// optional parm group
  SbsDscCntN            int(10)   const     options(*nopass);
end-pr;

References