GO_ITEM navigates to an indicated item. GO_ITEM succeeds even if the target item has the Keyboard Navigable property set to No.
PROCEDURE GO_ITEM
(item_id Item);
PROCEDURE GO_ITEM
(item_name VARCHAR2);
Built-in Type restricted procedure
Enter Query Mode yes
GO_ITEM('emp.ename');
/*
** Built-in: GO_ITEM
** Example: Invoke a dialog window by navigating to
** an item which is on the canvas which the window
** displays.
*/
PROCEDURE Open_Preference_Dialog IS
BEGIN
Go_Item('pref_dialog.printer_name');
END;