Difference between revisions of "UIM Update List Entry (QUIUPDLE)"
From MidrangeWiki
DaveLClarkI (talk | contribs) (Created page with "Category:RPG_Prototypes Category:API == Summary == The following is an RPG/LE fully free-form prototype for the IBM QUIUPDLE API to use the UIM to update a list panel...") |
DaveLClarkI (talk | contribs) (→Summary) |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | [[Category:API]] | ||
[[Category:RPG_Prototypes]] | [[Category:RPG_Prototypes]] | ||
− | |||
== Summary == | == Summary == | ||
The following is an RPG/LE fully free-form prototype for the IBM QUIUPDLE API to use the UIM to update a list panel entry within an open display application. | The following is an RPG/LE fully free-form prototype for the IBM QUIUPDLE API to use the UIM to update a list panel entry within an open display application. | ||
+ | |||
+ | For more information on this API, visit [https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/quiupdle.htm Update List Entry (QUIUPDLE) API] (right-click to open link in a new tab). | ||
+ | |||
+ | By [[User:DaveLClarkI|Dave Clark]] | ||
== Prototype for the QUIUPDLE API == | == Prototype for the QUIUPDLE API == | ||
Line 24: | Line 28: | ||
== References == | == References == | ||
− | * [[ | + | * [[API Error Code Structure (ApiErrC)]] |
Latest revision as of 17:03, 17 December 2018
Summary
The following is an RPG/LE fully free-form prototype for the IBM QUIUPDLE API to use the UIM to update a list panel entry within an open display application.
For more information on this API, visit Update List Entry (QUIUPDLE) API (right-click to open link in a new tab).
By Dave Clark
Prototype for the QUIUPDLE API
//****************************************************************************** // IBM Update List Entry API // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/quiupdle.htm //****************************************************************************** dcl-pr IBMUIM_UpdateListEntry extpgm('QUIUPDLE'); GeAppHndl char(8) const; GeBuffer char(32767) options(*varsize); GeBufLen int(10) const; GeRecName char(10) const; GeLstName char(10) const; GeUpdOpt char(4) const; GeLeHndl char(4); GeErrCode likeds(ApiErrC) options(*varsize); end-pr;