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

From MidrangeWiki
Jump to: navigation, search
(Created page with "Category:RPG_Prototypes Category:API == 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...")
 
Line 1: Line 1:
 +
[[Category:API]]
 
[[Category:RPG_Prototypes]]
 
[[Category:RPG_Prototypes]]
[[Category:API]]
 
 
== Summary ==
 
== Summary ==
  

Revision as of 20:08, 4 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