Go_item bug? [message #85818] |
Sun, 01 August 2004 22:20 |
Russell
Messages: 8 Registered: May 2003
|
Junior Member |
|
|
Hi,
I'm encountering an error wherein if I issue a Go_item, my currect block's status becomes CHANGED even none of the items in the block are changed/edited.
Sample code:
Go_Block('B_item');
Clear_Block(No_Validate);
Execute_Query;
Go_Item('B_action.PB_ok');
Basically, after I issue the Go_Item statement above, the B_item block changes from a QUERY status to a CHANGED status. If I don't issue the Go_Item, or if I issue a Go_item to a field within the B_item block, everything's fine.
Has anyone ever encountered this error? Is this an Oracle Forms bug?
|
|
|
Re: Go_item bug? [message #85824 is a reply to message #85818] |
Mon, 02 August 2004 03:34 |
Himanshu
Messages: 457 Registered: December 2001
|
Senior Member |
|
|
Hi,
Check all the triggers written on you Push button.
May be you have written some code for this Button on When-mouse-enter etc. trigger which is causing your Form's status to get changed.
Regards
Himanshu
|
|
|