Allows you to turn the aXes system flag Recognise subfiles as tables on and off on a screen by screen basis.
You need to be on aXes 2.1 or later to use this scripting function.
Syntax
OVRSFLAUTOGUI(sScreenName, bOvr)
Parameters
sScreenName | Required. An string that specifies the name of the screen. |
bOvr | Optional. Boolean. true will cause the subfiles to be recognised as. |
Remarks
The only valid place to put a call to this API is in the Navigate_TO section of the Login script for example:
vHandle_NAVIGATETO: function(sToForm, oPreviousForm){ var bReturn = true; HIDE_CURRENT_FORM(); SETBUSY(true); OVRSFLAUTOGUI("Employee_Skills", false);
etc