UIM Set List Attributes (QUISETLA)
From MidrangeWiki
Revision as of 20:23, 6 December 2018 by DaveLClarkI (talk | contribs) (DaveLClarkI moved page QUISETLA — Set List Attributes to UIM Set List Attributes (QUISETLA): Better Indexing (too many Q's))
Summary
The following is an RPG/LE fully free-form prototype for the IBM QUISETLA API to use the UIM to set a list panel's attributes (data structure template also provided, below) within an open a display application.
Prototype for the QUISETLA API
//****************************************************************************** // IBM Set List Attributes API // https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/quisetla.htm //****************************************************************************** dcl-pr IBMUIM_SetListAttributes extpgm('QUISETLA'); SaHandle char(8) const; SaLstName char(10) const; SaContent char(4) const; SaPgmDvar char(10) const; SaDspPosA char(4) const; SaAlwTrim char(1) const; SaErrCode likeds(ApiErrC) options(*varsize); end-pr; dcl-ds IBMUIM_ListAttrb qualified inz template; Content char(4); ExitVar char(10); DspPos char(4); AlwTrim char(1); end-ds;