Need your help on ORA-306500 [message #295781] |
Wed, 23 January 2008 07:27  |
shekhar.salunkhe
Messages: 154 Registered: January 2008 Location: Pune
|
Senior Member |
|
|
Hello ,
Thanks a lot for help me to convert forms from 6i to 9i.
Now when i run that form on 9iAS, then at some events it throws some error in backend like
1)WHEN-BUTTON-PRESSED trigger unhandle exception ORA-306500 (this error occur when i click on button)
2)WHEN-MOUSE-DOUBLECLICK trigger unhandle exception ORA-306500
(this error occur when i doubleclick in grid)
What is solution for this, so that it wil work fine ?
Thanks,
Shekhar
[Updated on: Thu, 24 January 2008 08:50] by Moderator Report message to a moderator
|
|
|
|
|
|
Re: Need your help [message #295944 is a reply to message #295916] |
Thu, 24 January 2008 00:02   |
shekhar.salunkhe
Messages: 154 Registered: January 2008 Location: Pune
|
Senior Member |
|
|
Thank a lot, to have valueable suggestion
Form display is solved...
,but still i have big problem with event's interaction on form component(like button,LOV'S) which not fires on converted forms form 6i to 9i in browser .
What i have to send that you wil realize my errors more conveniently? you said to post code and errors but how could i send it?
Thanks once again.
keep replying... (you help me too much last 4 days)
|
|
|
|
Re: Need your help [message #295963 is a reply to message #295946] |
Thu, 24 January 2008 00:54   |
shekhar.salunkhe
Messages: 154 Registered: January 2008 Location: Pune
|
Senior Member |
|
|
When i checked at backend if some events not work then
Following error occur in error_log table when form run:
WHEN-MOUSE-DOUBLECLICK trigger raised unhandled exception ORA-306500
WHEN-BUTTON-PRESSED trigger raised unhandled exception ORA-306500
|
|
|
|
|
Re: Need your help [message #296037 is a reply to message #295781] |
Thu, 24 January 2008 05:33   |
scorpio_biker
Messages: 154 Registered: November 2005 Location: Kent, England
|
Senior Member |
|
|
Hi,
Without knowing what you are doing in your triggers it's tricky to help.
I did find this posting about the error you are encountering
ORA-306500
which might be helpful.
|
|
|
|
|
|
|
Re: Need your help on ORA-306500 [message #296228 is a reply to message #295781] |
Fri, 25 January 2008 03:12   |
scorpio_biker
Messages: 154 Registered: November 2005 Location: Kent, England
|
Senior Member |
|
|
Have you looked at the links I posted?
Are you using EXEC_SQL in your triggers? If you are follow the solutions in the links.
If you aren't then post the code (correctly formatted) that is in your triggers.
|
|
|
Re: Need your help on ORA-306500 [message #296571 is a reply to message #296228] |
Mon, 28 January 2008 05:22   |
shekhar.salunkhe
Messages: 154 Registered: January 2008 Location: Pune
|
Senior Member |
|
|
Hello sir,
Here is the code which is on Mouse-Double-Click:
/////////////////////////////////////////////
DECLARE
VSQLWhere VARCHAR2(32767);
BEGIN
break;
:BLOCK.TXTGMST := GRIDBLOCK.GMST_CODE;
vSQLWhere := fun_Get_Search_Data;
HIDE_VIEW('CANLOC');
HIDE_WINDOW('WINLOC);
SET_VIEW_PROPERTY('SRCHCANVAS',VISIBLE,PROPERTY_OFF);
SET_VIEW_PROPERTY('CANVAS',VISIBLE,PROPERTY_ON);
SET_VIEW_PROPERTY('TABCANVAS',VISIBLE,PROPERTY_ON);
IF(VSQLWhere IS NOT NULL) THEN
:VAR.TXTWHERE := vSQLWhere;
GO_BLOCK('DATABLOCK');
CLEAR_BLOCK(NO_VALIDATE');
SET_BLOCK_PROPERTY('DATABLOCK',DEFAULT_WHERE,:VAR.TXTWHERE);
EXECUTE_QUERY(ALL_RECORDS);
proc_Show_Hide_Contact;
End If;
proc_Refresh_Buttons(:VAR.RECENT);
SET_ITEM_PROPERTY('CONREOLBLOCK'.CMDADD,ENABLED,PROPERTY_ON);
GO_ITEM('CONTROLBLOCK'.CMDLOCATE)
End;
////////////////////
Please Help me..
Thanks.
|
|
|
|
|
Re: Need your help on ORA-306500 [message #297690 is a reply to message #296998] |
Sat, 02 February 2008 09:22   |
shekhar.salunkhe
Messages: 154 Registered: January 2008 Location: Pune
|
Senior Member |
|
|
Hello ,
I am getting following problem at the time of form loading on browser.
FRM-40112: Attmpted go_item to non enabled item CONTROLBLOCK:CMDCANCEL
If I comment all go_item('CONTROLBLOCK.CMDCANCEL'), still its given me error.
And One more interesting thing that, IN the pl-sql there is go_item('CMDCANCEL'), if I comment that line then error does not occur but btncanvas gone to invisble......
I am totally hang-over in this situation.
Please Help me..
Regards
|
|
|
|
Re: Need your help on ORA-306500 [message #297821 is a reply to message #297705] |
Sun, 03 February 2008 22:52   |
shekhar.salunkhe
Messages: 154 Registered: January 2008 Location: Pune
|
Senior Member |
|
|
Hello
These problem was in 6i also but at that time they simply ignore that errors.
But now after compile in Form developer 9i it throws such errors(alert) at runtime. And it is not working properly..
Help me, I am very confused.
Does it work properly in 9i as work in 6i?
Regards
|
|
|
|
|
|
|
|
|