DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: Execute query and Message Box Problem!

  1. #1
    Join Date
    Apr 2001
    Location
    indonesia
    Posts
    52
    Hi,
    I have a procedure to built undo function :

    declare
    ls_row varchar2(55);
    ls_item varchar2(55);
    begin
    go_block(arameter.l_current_block);
    ls_row := :m_form.rowid;
    execute_query;
    if ls_row is null then return; end if;
    loop
    exit when :m_form.rowid = ls_row;
    exit when :system.last_record = 'TRUE';
    next_record;
    end loop;
    end;

    This procedure working fine.
    When I have edit some data and want to undo, then I pressed undo button. It's always display the message box "Do you want to save change you have made?".
    I don't know how to make this message box can't display and being the execute_query work directed.
    It's urgent, please help!

    Thanks,

    ching

  2. #2
    Join Date
    Jan 2001
    Posts
    153
    check the message level help

    Vijay.s

  3. #3
    Join Date
    Aug 2000
    Posts
    462
    Why don't you just put the data item you wish to change/not change into a data block, then let Forms handle when to save/rollback?

    Don't make your app unnecessarily complex.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width