Difference between revisions of "API Error Code Structure (ApiErrC)"

From MidrangeWiki
Jump to: navigation, search
(Created page with "The following is an RPG/LE free-form definition for the IBM API Error Code data structure: <pre> *=======================================================================...")
 
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
The following is an RPG/LE free-form definition for the IBM API Error Code data structure:
+
[[Category:API]]
 +
[[Category:RPG Prototypes]]
 +
== Summary ==
 +
The following is an RPG/LE free-form definition for the IBM API Error Code data structure.
 +
 
 +
By [[User:DaveLClarkI|Dave Clark]]
 +
 
 +
== The API Error Code data structure ==
 
<pre>
 
<pre>
 
       *========================================================================*
 
       *========================================================================*
Line 10: Line 17:
 
       *
 
       *
 
       * DOCUMENTATION:
 
       * DOCUMENTATION:
       * http://publib.boulder.ibm.com/infocenter/iseries/v5r3/topic/apis/error.htm
+
       * https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apiref/error.htm
 
       *========================================================================*
 
       *========================================================================*
       dcl-ds ApiErrC        Inz Qualified;
+
       dcl-ds ApiErrC        Qualified Inz;
 
         BytProv            Int(10:0) Inz(%size(ApiErrC));
 
         BytProv            Int(10:0) Inz(%size(ApiErrC));
 
         BytAvail            Int(10:0);
 
         BytAvail            Int(10:0);
Line 20: Line 27:
 
       end-ds;
 
       end-ds;
 
</pre>
 
</pre>
 +
 +
== Example ==
 +
See the [[Find Source Member (FNDSRCMBR)]] sample command.

Latest revision as of 15:50, 21 December 2018

Summary

The following is an RPG/LE free-form definition for the IBM API Error Code data structure.

By Dave Clark

The API Error Code data structure

      *========================================================================*
      * IBM API Error Code parameter -- ERRC0100 format
      *
      * NOTE: If supported, including this data structure as a parameter in your
      *       API calls is equivalent to using MONITOR to trap hard errors.  If
      *       an error occurs, it allows the API to pass back the error message
      *       id and any replacement data associated with that message id.
      *
      * DOCUMENTATION:
      * https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apiref/error.htm
      *========================================================================*
       dcl-ds ApiErrC        Qualified Inz;
         BytProv             Int(10:0) Inz(%size(ApiErrC));
         BytAvail            Int(10:0);
         MsgId               Char(7);
         Reserved            Char(1);
         MsgData             Char(3000);
       end-ds;

Example

See the Find Source Member (FNDSRCMBR) sample command.