Displays the indicated canvas at the coordinates specified by the canvas's X Position and Y Position property settings. If the view is already displayed, SHOW_VIEW raises it in front of any other views in the same window.
SHOW_VIEW
(view_id ViewPort);
SHOW_VIEW
(view_name VARCHAR2);
Built-in Type unrestricted procedure
Enter Query Mode yes
/*
** Built-in: SHOW_VIEW
** Example: Programmatically display a view in the window to
** which it was assigned at design time.
*/
BEGIN
Show_View('My_Stacked_Overlay');
END;