Error when closing form (FRM-40110 At first block problem ) [message #287686] |
Thu, 13 December 2007 03:15 |
amjathkhan.subhankhan
Messages: 9 Registered: December 2007 Location: chennai
|
Junior Member |
|
|
I had a customized form embedded in the Oracle Apps 11i. My problem is that everytime I close the form by click the 'X' in the upper right, it wont close the form and prompt message 'FRM-40110 At first block.' in status bar.
Although I can close the form using the File=>Close Form or pressing F4.
Triggers and code
when-window-closed: app_standard.event('WHEN-WINDOW-CLOSED');
close-this-window:
declare
canvas_nm varchar2(30);
win_nm varchar2(30);
begin
canvas_nm := get_item_property(:SYSTEM.CURSOR_ITEM, ITEM_CANVAS);
win_nm := get_view_property(canvas_nm, WINDOW_NAME);
app_custom.close_window(win_nm);
end;
Hoping for you help on this.
Thanks
amjadkhan
[Updated on: Thu, 13 December 2007 03:16] Report message to a moderator
|
|
|
|
|
|
|
|
|