Page History
In VLF-WIN, the use of multiple windows reduces the need to use classic switching.
However, you can request that a window switch to some other task by using the avSwitch Method . You can control which window is switched by using the TargetWindow() parameter, which may be specified as MAIN, CURRENT or a specific window name. The default value for this parameter is MAIN.
There are some rules about window switching that you need to be aware of:
- When a window is opened it has a scope.
- A window's scope includes all the things that can ever be used inside it.
- By limiting a windows scope the time taken to create it can be substantially reduced.
...
For example if you open a FRAMEWORK window then every application, business object and every command defined in the Framework is within its scope.
...