Dialog methods for INPUT ARRAY

The ui.Dialog class offers a set of methods that can be used during an INPUT ARRAY instruction.

In the context of an INPUT ARRAY dialog, the DIALOG keyword is implicitly available as the dialog object, that you can use to call methods of the ui.dialog class.

To get or set the current row during an INPUT ARRAY dialog, use the DIALOG.getCurrentRow() and DIALOG.setCurrentRow() methods. Dialog methods for list dialogs identify the current record list with the name of the screen array used by the dialog:
  ON ACTION current_row
     MESSAGE "Current row is: ", DIALOG.getCurrentRow("sa_cust")

Go to the The ui.Dialog class chapter in the Genero Business Development Language User Guide for more details about available dialog class methods.