FRM-41008: Undefined function key [message #86103] |
Tue, 31 August 2004 22:35 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
domingo
Messages: 54 Registered: June 2004
|
Member |
|
|
Hi
In my form i have two blocks a, b.
a--- master
b --- details
when in block a , i execute query b gets populated .
I have a function key ie when user presses F7 key another form gets called.
when i am in block a and i press F7 key the other form is called .
but when i navigate to block b and try the same it gives me the error
FRM-41008: Undefined function key.
I have written the key trigger in both the blocks .
Kindly tell me why is it happenning and how to get rid of it .
Thanking you all in advance
-- domingo
|
|
|
|
Re: FRM-41008: Undefined function key [message #86128 is a reply to message #86122] |
Thu, 02 September 2004 02:12 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
argya
Messages: 7 Registered: August 2004
|
Junior Member |
|
|
Domingo
Do one thing ,
for both the blocks go in the on error trigger
write the following code ---
IF (err_type = 'FRM' and
err_code = 41008) then
call_the _procedure;
end if;
Hope it works
Thanks --
SHUBH
|
|
|