Difference between revisions of "Retrieve Object Description (QUSROBJD)"
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 QUSROBJD API to retrieve the description for a spe...") |
DaveLClarkI (talk | contribs) (→Summary) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
The following is an RPG/LE fully free-form prototype for the IBM QUSROBJD API to retrieve the description for a specified object. The calling process must have at least *USE authority for the object. | The following is an RPG/LE fully free-form prototype for the IBM QUSROBJD API to retrieve the description for a specified object. The calling process must have at least *USE authority for the object. | ||
+ | |||
+ | For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qusrobjd.htm Retrieve Object Description (QUSROBJD) API] (right-click to open link in a new tab). | ||
+ | |||
+ | By [[User:DaveLClarkI|Dave Clark]] | ||
== Prototype for the QUSROBJD API == | == Prototype for the QUSROBJD API == | ||
<pre> | <pre> | ||
//****************************************************************************** | //****************************************************************************** | ||
− | // IBM API to Retrieve | + | // IBM API to Retrieve an Object's Description (if authorized to object) |
− | // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/ | + | // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qusrobjd.htm |
//****************************************************************************** | //****************************************************************************** | ||
− | /include qsysinc/qrpglesrc, | + | /include qsysinc/qrpglesrc,qusrobjd // QUSROBJD API data structures |
− | dcl-pr | + | dcl-pr IBMAPI_RtvObjDesc extpgm('QUSROBJD'); |
− | + | ObjDesc likeds(QUSD0400) options(*varsize); | |
− | + | ObjDscL int(10) const; | |
− | + | ObjDFmt char(8) const; | |
− | + | ObjName char(20) const; | |
− | + | ObjType char(10) const; | |
− | // optional parm group | + | // optional parm group 1 |
− | + | ObjErrC likeds(ApiErrC) options(*nopass:*varsize); | |
+ | // optional parm group 2 | ||
+ | ObjAspC likeds(QUSRASPC) options(*nopass); | ||
end-pr; | end-pr; | ||
</pre> | </pre> | ||
== References == | == References == | ||
− | * [[ | + | * [[API Error Code Structure (ApiErrC)]] |
Latest revision as of 16:57, 17 December 2018
Summary
The following is an RPG/LE fully free-form prototype for the IBM QUSROBJD API to retrieve the description for a specified object. The calling process must have at least *USE authority for the object.
For more information on this API, visit Retrieve Object Description (QUSROBJD) API (right-click to open link in a new tab).
By Dave Clark
Prototype for the QUSROBJD API
//****************************************************************************** // IBM API to Retrieve an Object's Description (if authorized to object) // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/qusrobjd.htm //****************************************************************************** /include qsysinc/qrpglesrc,qusrobjd // QUSROBJD API data structures dcl-pr IBMAPI_RtvObjDesc extpgm('QUSROBJD'); ObjDesc likeds(QUSD0400) options(*varsize); ObjDscL int(10) const; ObjDFmt char(8) const; ObjName char(20) const; ObjType char(10) const; // optional parm group 1 ObjErrC likeds(ApiErrC) options(*nopass:*varsize); // optional parm group 2 ObjAspC likeds(QUSRASPC) options(*nopass); end-pr;