Difference between revisions of "UIM Update List Entry (QUIUPDLE)"
From MidrangeWiki
DaveLClarkI (talk | contribs) m (DaveLClarkI moved page QUIUPDLE — Update List Entry to UIM Update List Entry (QUIUPDLE): Better Indexing (too many Q's)) |
DaveLClarkI (talk | contribs) (→References) |
||
Line 24: | Line 24: | ||
== References == | == References == | ||
− | * [[ | + | * [[API Error Code Structure (ApiErrC)]] |
Revision as of 23:01, 13 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.
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;