Difference between revisions of "UIM Set List Attributes (QUISETLA)"

From MidrangeWiki
Jump to: navigation, search
m (DaveLClarkI moved page QUISETLA — Set List Attributes to UIM Set List Attributes (QUISETLA): Better Indexing (too many Q's))
(References)
Line 30: Line 30:
  
 
== References ==
 
== References ==
* [[ApiErrC — API Error Code]]
+
* [[API Error Code Structure (ApiErrC)]]

Revision as of 23:00, 13 December 2018

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;

References