Consultor Eletrônico



Kbase P31128: How to fire an ANYWHERE trigger in the window in which it was created
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   30/07/2009
Status: Verified

GOAL:

How to fire an ANYWHERE trigger in the window in which it was created

GOAL:

How to change scope of the ANYWHERE option

FACT(s) (Environment):

All Supported Operating Systems
Progress 8.x
Progress 9.x
OpenEdge 10.x

FIX:

If a trigger is defined as the following:

ON 'F3':U ANYWHERE
DO:
..........
END.

The above trigger will be fired in any window in the session.

If the trigger needs to be executed just in the window change the code to the following:

ON 'F3':U OF {&WINDOW-NAME} ANYWHERE
DO:
..........
END.