Difference between revisions of "UIM Put Dialog Variable (QUIPUTV)"

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 QUIPUTV API to use the UIM to put a dialog variable...")
 
(Prototype for the QUIOPNDA API)
Line 4: Line 4:
 
The following is an RPG/LE fully free-form prototype for the IBM QUIPUTV API to use the UIM to put a dialog variable into an open a display application.
 
The following is an RPG/LE fully free-form prototype for the IBM QUIPUTV API to use the UIM to put a dialog variable into an open a display application.
  
== Prototype for the QUIOPNDA API ==
+
== Prototype for the QUIPUTV API ==
 
<pre>
 
<pre>
 
//******************************************************************************
 
//******************************************************************************

Revision as of 18:06, 4 December 2018

Summary

The following is an RPG/LE fully free-form prototype for the IBM QUIPUTV API to use the UIM to put a dialog variable into an open a display application.

Prototype for the QUIPUTV API

//******************************************************************************
// IBM Put Dialog Variable API
// https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/apis/quiputv.htm
//******************************************************************************
dcl-pr IBMUIM_PutVariable         extpgm('QUIPUTV');
  PvHandle              char(8)   const;
  PvBuffer              char(32767)         options(*varsize);
  PvBufLen              int(10)   const;
  PvRecName             char(10)  const;
  PvErrCode             likeds(ApiErrC)     options(*varsize);
end-pr;

References