Hi All,
I'm using :Global variables to send and recieve values between forms. The strange thing is that these global variables hasn't been sent sometimes and has been sent successfully other times!
I'm using it throgh the WHEN-NEW-FORM-INSTANCE trigger of the form like this:
In the sending form
declare
n number;
begin
select seq.currval -- this is a sequence
into n
from dual;
:global.v1 := n;
end;
In the recieving one:
:global.v2 := :global.v1;
at the running of the recieving form it gives me this error:
FRM-40815: Variable GLOBAL.V1 does not exist!
The previuos code is working successfully for some users and geives the previous error for others!!!!!!!!!!!!!!