Hi,
I have one procedure which calls a function. My requirement is if that function didnt return value in 1 minute then stop the exection of that function and call next statement.
Begin
(1).........
(2).......
(3) get_func_val:= function(1,2);
(4)......
(5)....
end;
My requirement is, if (3) doesnt return value in 1 minute, stop the execution of (3) and start executing (4).
Regards,
Parag