Difference between revisions of "UIM Delete List (QUIDLTL)"

From MidrangeWiki
Jump to: navigation, search
 
(4 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 QUIDLTL API to use the UIM to delete a list panel's entries within an open display application.
 
The following is an RPG/LE fully free-form prototype for the IBM QUIDLTL API to use the UIM to delete a list panel's entries within an open display application.
 +
 +
For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/quidltl.htm Delete List (QUIDLTL) API] (right-click to open link in a new tab).
 +
 +
By [[User:DaveLClarkI|Dave Clark]]
  
 
== Prototype for the QUIDLTL API ==
 
== Prototype for the QUIDLTL API ==
Line 17: Line 21:
 
end-pr;
 
end-pr;
 
</pre>
 
</pre>
 +
 +
== Example ==
 +
See the [[Find Source Member (FNDSRCMBR)]] sample command.
  
 
== References ==
 
== References ==
* [[ApiErrC — API Error Code]]
+
* [[API Error Code Structure (ApiErrC)]]

Latest revision as of 15:51, 21 December 2018

Summary

The following is an RPG/LE fully free-form prototype for the IBM QUIDLTL API to use the UIM to delete a list panel's entries within an open display application.

For more information on this API, visit Delete List (QUIDLTL) API (right-click to open link in a new tab).

By Dave Clark

Prototype for the QUIDLTL API

//******************************************************************************
// IBM Delete List API
// https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/quidltl.htm
//******************************************************************************
dcl-pr IBMUIM_DeleteList          extpgm('QUIDLTL');
  DlHandle              char(8)   const;
  DlLstName             char(10)  const;
  DlErrCode             likeds(ApiErrC)     options(*varsize);
end-pr;

Example

See the Find Source Member (FNDSRCMBR) sample command.

References