May I execute a WHEN-BUTTON-PRESSED trigger at runtime ? My button is called
'Fill'
Is this sentence correct ?
EXECUTE_TRIGGER( 'FILL.BUTTON_PRESSED')
It doesn't work.
Denis
EXECUTE_TRIGGER is for compatibility reasons (Forms 3) ...
"zorro" <w...@w.com> wrote in message
news:UtbL6.41244$q51.3...@news1.gvcl1.bc.home.com...
If I use a PL/SQL Procedure (and call it), Froms considers that I come from
a WHEN-VALIDATE-ITEM trigger, and I get the same restriction on the GO_BLOCK
built-in procedure.
Denis
"Ludo Van Helleputte" <Ludo.van....@be.pwcglobal.com> wrote in
message news:3afd8...@news2.prserv.net...
Create a WHEN-TIMER-EXPIRED trigger, put the GO_BLOCK in this trigger
If you have other timers, you might want to put an IF ELIF ELIF END IF
statement in this WHEN-TIMER-EXPIRED trigger to test on
GET_APPLICATION_PROPERTY('TIMER_...
Now, from where you want to call your restricted built in ...
declare
t timer;
begin
t := create_timer('name', ... -- let timer fire asap, fe. 10 milliseconds
...
Good luck !!!
Ludo.
PS : EXECUTE_TRIGGER should work to call triggers as program units, but you
will still receive the 'restricted' built in error ... with the timer you
will have a 'clean' situation, although it doesn't look clean programming.
"zorro" <w...@w.com> wrote in message
news:y3hL6.41664$q51.3...@news1.gvcl1.bc.home.com...