Re: Beginner Question for ORACLE Developer/2000

From: Andrey A. Efimov <efa_at_leaves.spb.su>
Date: 1997/09/03
Message-ID: <01bcb82e$784622c0$9a2b7dc1_at_efimov>#1/1


> How and where do I created a global variable? This variable will need
 to be
> accessed in local buttons on the trigger WHEN-BUTTON-PRESSED.
>
> Definition
>
> The variable I want to define is mfirstquery.
>
> In the button[TOP]
>
> BEGIN
> IF mfirstquery != FALSE Then
> mfirstquery := TRUE;
> execute_query;
> END IF;
> FIRST_RECORD;
> END;
>
>
> Thanks for your help
>
1. You can use :GLOBAL.name variable in any place of your application (multi form)
2. You can define variable in package (Program Unit) any use it current form
3. You can use parameter as variable in current form (:Parameter.name) Received on Wed Sep 03 1997 - 00:00:00 CEST

Original text of this message