Re: LOV's OK button

From: Jan Schaefer <schaefer_at_kksl.uni-leipzig.de>
Date: Thu, 4 Oct 2001 09:53:36 +0200
Message-ID: <9ph4hr$53s$1_at_news.uni-leipzig.de>


> If you call the lov with a button and a 'when_button_pressed' trigger you
> propably can do your loading after the lov call.
>
> declare
> dummy boolean;
>
> begin
> dummy := show_lov('any_lov_youd_like');
> do_the_loading_procedure;
> end;

[Quoted] But then the do_the_loading_procedure will be executed even if the CANCEL Button was pressed inside the LOV. Better way is to do an

if dummy then

    do_the_loading_procedure;
end if;

to be sure, that only after pressing the OK button the procedure will be called.

Just my two cents,

Jan Received on Thu Oct 04 2001 - 09:53:36 CEST

Original text of this message