'Do you want to save changes you have made' while closing the form

Hi Everyone,
I am working on Oracle Applications 11.5.10.2 version. I have created a new form as per the client requirement and registered with APPS. I met all the requirements, but when ever closing the form getting the error 'Do you want to save changes you have made' without entering or modifying records in he form.
Please help in this regard, bit urgent.
Thanks in Advance..
Venky.

Hi,
You can suppress messages depending on their message level. For a full description and examples on this topic, please see the help in Forms Builder (press F1 in your Builder) and search for :system.message_level.
or the other way would be.
As you are using the copy command for moving the data from one block to the other block , the status of the block will be changed to "Modified".As per oracle standards when every the block status is modified it fire the meassage 'Do you want to save changes you have made' .
To avoid the message you need to change status of each line to "Query" .Once you do this the block status automatically changes to "query" .Once it is in query mode when you try to close the form it will not pop-up the above message.
To change the line status use POST command . To get help on this command you can use form builder help.
Hope this serves your purpose.
Let me know if you need any further clarification.
Rgds,
Naveen.

Similar Messages

  • Customizing default message "Do you want to save changes you have made?"

    Hi all
    Can I customize the default message generated by oracle forms "Do you want to save changes you have made?"
    I want to change its title, message, alert style, button labels, and visual attribute. And functionality.
    Thanks
    Asad.

    Of course ON-MESSAGE will not work. Use the trigger on your Exit_Form button. Then check the form or block or record status (depending on your design) and do appropriate coding, something like this:
    IF :System.Form_Status = 'CHANGED' THEN
    retCode := Show_Alert('MY_EXIT_ALERT');
    if retCode = ALERT_BUTTON2 THEN
    Exit_Form(NO_VALIDATE);
    elsif retCode = ALERT_BUTTON1 then
    Commit_Form;
    else
    Whathever_It_Is;
    end if;
    end if;
    If you have master-detail block and u're recieving the message when detail is changed but u want to scroll master records - write me a mail to tell u which trigger to use. It is not that I don't want to share info - just can't recall right now.

  • Is it possible to hide/show the "Do you want to save changes you have made?" msg

    Hi,
    Is it possible to hide and show the Oracle message "Do you want to save changes you have made?"
    Thank You

    Not really.
    You have to use commit_form to commit the changes or a
    rollback_form to rollback just before exit_form, clear_form,
    or clear_block.
    Or, use clear_form(no_validate), clear_block(no_validate).
    It might be good to check wether there is some change in the
    data and show an alert in your own language asking the user in
    his/her own language wether he/she wants to commit the changes
    or not.

  • Do you want to save changes you have made

    hi guys,,
    I need ur help
    I ve a form which retrieve employee data,,
    there are 8 blocks in the form,,
    i created a when mouse click trigger to show a LOV
    declare
    a boolean;
    begin
    a:=show_lov('TEST');
    pc_execute; -- calling a procedure
    END;
    but it gives Do you want to save changes you have made?
    and I tried to suppress this by setting system message level = 25
    but no benifit,,
    And if I write :
    declare
    a boolean;
    begin
    a:=show_lov('TEST');
    GO_BLOCK('ORG_EMP_INCREMENT_HISTORY');
    pc_execute; -- calling a procedure
    END;
    the message will disappear but the query will not execute all blocks
    ANY suggestions
    Best Regards

    Al-Salmau Alikum We Rahamatu Allah We Barakatu...
    if u wanna getting ur total records of emp block then do this as an example ...
    FUNCTION query_count (p_block_name VARCHAR2) RETURN NUMBER
    IS
      cnt NUMBER;
    BEGIN
      GO_BLOCK(p_block_name);
      COUNT_QUERY;
      cnt := GET_BLOCK_PROPERTY(p_block_name, QUERY_HITS);
      IF FORM_SUCCESS THEN
        RETURN (cnt);
      ELSE
        MESSAGE('Error in getting Query Hits for block '||:SYSTEM.CURRENT_BLOCK);
        RAISE FORM_TRIGGER_FAILURE;
      END IF;
    END;and notice the result in the status bar...
    But if u wanna have data it's another issue...
    so u have to do for example...
    IF NOT Id_Null(blk_id) THEN 
        Set_Block_Property('block_name',DEFAULT_WHERE,'emp_id = ' || emp_id);  
       Execute_query;  
       ELSE       Message('You have a problem!');     
    RAISE Form_Trigger_Failure;  
    END IF; Hope this helps...
    Regards,
    Abdetu..

  • Adding "do you want to save change you have made" message.

    We developed and multy screen web applicaton using J dev 11.1.1.1 and ADF BC- ADF RC
    We want when a user go to other screen to ask him a question as "do you want to save change you have made"
    Otherwise if a an error occurs "source" screeen
    and user go "target" screen and want to commit change
    ADF try to validate all entities.
    And error mesages about source screens displaying on the target screen.
    it is very confusing situation fro users.
    Thanks.

    Thasnks alot.
    We implement http://kuba.zilp.pl/?id=681 method.
    but isCommitEnabled() method return FALSE every time.
    Do we need to do anything in app module side.
    protected Boolean isCommitEnabled(){
    return getApplicationModule().getTransaction().isDirty() ? Boolean.TRUE : Boolean.FALSE;
    we will try pedja's recommendation also...

  • How to remove the warning "do you want to save changes to investigation.pdf before closing"

    Issue: To remove the warning "do you want to save changes to investigation.pdf before closing"
    I have created a XFA pdf file(using LC Designer 8.2) to display this issue
    I am not able to attached the PDF. Without attaching the pdf it would be difficult to explain.
    click event js:
    function activateUser() {
      var PDFVersion=xfa.host.variation+xfa.host.version;
      xfa.host.messageBox("button click event registered");
      xfa.form.form1.sendForm.welcomeMsg.presence = "invisible";
      xfa.form.form1.sendForm.successMsg.presence = "visible";
      event.target.dirty=false;
    docReady event js:
    function displayInfo(){
    var res =xfa.host.variation;//Added this line to display the successMsg
    //xfa.host.messageBox("docReady event registered");
    xfa.form.form1.sendForm.welcomeMsg.presence = "visible";
    xfa.form.form1.sendForm.successMsg.presence = "invisible";
    docClose event js:
    xfa.host.messageBox("docClose event registered");
    event.target.dirty=false; 
    Steps to get the warning:
    1) Open the attached pdf using Acrobat Professional.
    2) Click the Confirm Enrollment" button
    3) Now close the document & the acrobat gives a warning "do you want to save changes to investigation.pdf before closing"
    Summary of the XFA pdf:
    It has two text fileds. On docReady event field A is made visisble & field B is made invisible.
    On button click event the field A is made invisisble & field B is made visible.
    On closing the pdf it should not throw this warning message.
    My Efforts:
    1) Found a property in adobe js docs.
           event.target.dirty=false;
    It doesn't solve the problem.
    2) I tried to put this logic in almost all the events listed in designer but I am not able to resolve the issue.
    Please help me resolve this issue.

    I tried putting the below 2 lines of code at the end of button click event & docClose event.
          event.target.dirty=false;
          event.target.requiresFullSave=false;
    It still gives the warning.
    Also I tried to found out the line of code which is making the pdf dirty.
      xfa.host.messageBox("is doc dirty (before displayInfo's visible-invisible work): " + event.target.dirty);
      xfa.form.form1.sendForm.welcomeMsg.presence = "visible";
      xfa.form.form1.sendForm.successMsg.presence = "invisible";
      xfa.host.messageBox("is doc dirty (after displayInfo's visible-invisible work): " + event.target.dirty);
    The doc got dirty when the successMsg field is made invisible.
    Problem I am trying to solve is:
         To display a welcome message before user action and after user action wants to display a success message.
         I follwed the visible & invisible approach & it wokred but gives me a warning on doc close.(Highly imp to avoid it)
    Is there any other approach I could follow here.

  • Avoiding "Do you want to save changes you've made?" question

    Hello friends at www.oracle.com ,
    I have a program with a master block and detail block. While navigating at master block, not all detail block items are filled (some of them need to be verified at the moment of navigation, because data related to that detail block may vary during production).
    However, when I need to navigate to the next master block register, Oracle asks me if I want to save changes. This is annoying, because it disturbs navigation.
    How can I avoid such message to be displayed everytime I navigate to the next or previous item?
    Thanks for all answers, and best regards,
    Franklin Gongalves Jr.

    Try to put POST in the ON-CLEAR-DETAILS trigger.
    regards,
    Harm

  • HOW TO SUPPRESS "DO YOU WANT TO SAVE CHANGES YOU HAVE MADE"

    ORACLE APPS CUSTOM FORM
    WHENEVER I AM PRESSING CTRL+F11 AND SERACH ABOVE PROMPT IS COMING. HOW TO SUPPRESS THAT ONE.

    The message is occurring because the user (or your code) has changed something in the form. Forms needs to know what you want to do with the changes before it can continue.
    When you suppress this message, then when the user has changed something in the form, he won't be asked to save his changes. What do you plan to do then? If you silently discard his changes, he may not be happy with you. If you silently save his changes he may not be happy either. So let the user see the message and let him decide what to do.
    If your code is changing something in the form (not the user), then you need to find out what is being changed. Once you know, then you can fix it.

  • Do you want to save changes you have made? Message

    I have a form with 3 data blocks.
    Data block 1- master_blk
    data block 2- detail_blk1 (detail of the master block)
    data block 3- detail_blk2 (detail of DETAIL_BLK1)
    So its a 3 level parent child relationship. MASTER_BLK parent to DETAIL_BLK1 and DETAIL_BLK1 is parent to DETAIL_BLK2
    My problem is after i capture some data on DETAIL_BLK2 and try to navigate to another record on DETAIL_BLK1, i get a message asking me to save changes for me to continue. Is there a workaround to this problem where i can capture multiple records on DETAIL_BLK1 and corresponding child records on DETAIL_BLK2 and then save all the records at once?

    It is a default behaviour of the forms that whenever it detects a change in child blocks and you change its master, it would flush out the contents of detail block so that it can fetch the next set of child records for current master record. So in this process, it alerts to user to save or discard the changes made.
    See help for Coordination property of the relation defined.
    Here is a short help from Oracle Forms on Relation Coordination property.
    Whenever the current record in the master block changes at runtime (a coordination-causing event),
    Form Builder needs to populate the detail block with a new set of records. You can specify exactly how
    and when that population should occur by setting this property to one of three valid settings:
    Hope it helps!

  • Disable "Do you want to save changes to *.pdf before closing?" when closing a tif

    We upgraded to Office 2007 and decided to stop using the Office 2003 document imaging tool to view TIF TIFF files.  This tool wasn't included with Office 2007 so we started using Acrobat 9.1.3 Standard as our default TIF viewer. 
    Here is the problem. When you close the TIF document you are prompted "Do you want to save changes to 'xxx.pdf' before closing?" Is there a way to disable this prompt?  We don't want to convert the files since they are in a read only database.

    Nope. Using WORD or Acrobat is forcing a conversion and it not an ideal way to view such files. In addition, you may want to change resolution or such of the graphic before you import it to something such as WORD. Many folks embed graphics that are 3500 dpi and millions of colors and totally bloat the file. They even crop the graphic and reduce the size, wondering why their DOC file is sooooo big. In that sense, there is an advantage to having some of the other tools available. You may have special needs and I do not want to second guess your company needs, so that is my two-cents worth. Sorry that I do not have other ideas, but using an existing graphics package would be the best for your need.

  • How to enforce the message "Do you want to save changes?"

    Hello,
    How to enforce the message "Do you want to save changes?" when the user attempts to close a form after checking a non-database item (check-box).
    All the other database items in the block are not updateable and only viewable.
    After checking the non database item check-box, if the user tries to commit, then the system is saving the changes and call the appropriate procedure on save.
    But if the user tries to close the window without committing, the form is not showing the message "Do you want to save changes?" since the check-box is a non database item.
    How to enforce the message "Do you want to save changes?" in this scenario when the user tries to close the window?
    Thanks in advance.
    Cheers
    Sri

    This is a fairly common question in the forum. You will need to override the default exit form process and check to see if the checkbox is checked. You can do this in the Key-Exit trigger. For Example:
    DECLARE
      al_id     ALERT;
      al_button  NUMBER;
    BEGIN
      IF ( CHECKBOX_CHECKED('YOUR_BLOCK.CHECKBOX_ITEM') ) THEN
         /* Display an Alert here that asks, "Do you want to save changes?" */
         ...code here to set the properties of your alert...
         al_button := Show_Alert(al_id);
         IF ( al_button = ALERT_BUTTON1 ) THEN
            --YES
            /* Perform COMMIT Processing here...*/
         ELSIF ( al_button = ALERT_BUTTON2 ) THEN
            --No
            Exit_Form(NO_VALIDATE);
         ELSE
            --Cancel
            RAISE Form_Trigger_Failure;
         END IF;
      ELSE
         Exit_Form;
      END IF;
    END;If you need more help with the Alert, please check out the SHOW_ALERT topic in the Forms Help.
    BTW, what happens if all the user does is check the checkbox? No other changes have occured. What changes are you trying to process?
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • How do I stop pop up that asks me, Do you want to save changes to doc... before closing? I have made no changes only printed the file. Using Adobe Reader DC, Windows 7 64 bit.

    How do I stop pop up that asks me, Do you want to save changes to doc... before closing? I have made no changes only printed the file. Using Adobe Reader DC, Windows 7 64 bit.
    This is very annoying and we need this stopped as we have made no changes to any of the adobe files. Please advise how to do this.
    Customer Service DCC

    I first tried the version without the deflated stream (so everything uncompressed) against the online repair tool to check/analyse it @ https://www.pdf-tools.com/osa/repair.aspx
    And it says no error found, but the reader still want to save it when closing so i still had no clue at this point.
    Fortunately, i finally found what was wrong with my generated PDF.
    In my xref table, each object reference was not end by a full EOL, i only did put a newline char.
    Now i have "carriage return" "newline" which is the full EOL and the reader is happy and close the file silently.
    As suspected i did not follow correctly the specs on xref table
    Now i'll go and figure what i did wrong with the deflate filter
    Thanks for your help.

  • Adobe Reader X (free) -- "Do you want to save changes" prompt

    Why is this prompt always coming up when I close a PDF document?
    "Do you want to Save Changes to  X   Before closing?"
    I am using the free Adobe Reader X 10.1.1.  I can't make any changes to the file since it's the free version, so why is it asking me to save changes?  Even if I just open the file and just close it right away without doing anything else the prompt comes up.

    I think pretty much any PDF created by CutePDFWriter did that (as well as others not created that way, but CutePDF seemed to do it reliably).
    To verify that I'd have to un-install 9.5.0 and re-install Reader X, which I'd rather not do (9.5.0 is better in other ways too - the integration with Chrome is nicer because the "print" and "save as" buttons always appear; they hardly ever appeared in Reader X when opening a PDF from Chrome).
    You can get CutePDFWriter here: http://www.cutepdf.com/products/cutepdf/writer.asp
    Let me know if you can't reproduce the problem (just post here) and I'll un-install/re-install, verify a file with the problem, and post it.
    For now I'm very happy with Reader 9.5.0; it's perfect.

  • Removing a message (Do you want to save changes)

    Hi all,
    I have a screen (login), to let the user enter the user name and password then click the button (enter), but when the user clicks enter the message (Do you want to save changes) appear,
    How to remove it??
    Thank you very much
    Tasneem

    hi
    is it db items or non db items?
    clear_form();
    or
    search online for.
    SYSTEM.MESSAGE_LEVEL  built-inThere are 25 Levels of Message in an Oracle Forms.
    How much cretical error or message is
    0 -- all errors or message
    1
    2
    25 -- don't shows any
    If we don't want to show any error or message to the user then we assign 25 to message level as
    :SYSTEM.MESSAGE_LEVEL := 25;Now, system will not show any message error to the user.
    If i wanna show all the errors then assign it 0.
    :SYSTEM.MESSAGE_LEVEL := 0; sarah

  • Keep Getting 'Do you want to save changes Msg'

    Hi all
    Have a small form, two multi-record blocks, everything works ok, have no commits or anything in it but keep getting the message 'do you want to save changes?' if I clear query or exit form, if I press yes I get frm-40400 X amount of records saved when nothing has been changed.
    I have another very similar form project more or less the same but with only one block and it doesn't do this??
    Any ideas?
    Andrew

    I have used built in exit_form on a key exit form trigger and this has stopped message when I exit form.
    exit_form(no_commit, no_validate);
    But when I clear the query the 'Do you want to save' message still appears and also a message at the bottom left saying:
    Press CTRL + Tab to move between choices, ENTER to select.

Maybe you are looking for

  • How can I get my iCloud calendars to show up in Outlook for Mac

    I just bought a new Mac and downloaded MS Office 365 for Mac.  How can I import my icloud calendar into Outlook?  I can't find any concrete info anywhere online. Thanks!

  • Deployment of web services in BO DS

    Hi Experts, I have web services on top of real time Jobs created in Business Objects Data services Management Console in Development server. Now I want to deploy these web Services from Dev to Stage and Prod but don't see any way. Can you please sugg

  • Database to InDesign Document

    Hi, Im a newbie to InDesign. I would really appreciate you guys to help me out of this technical problem. Scenario -> I have the page layout / images / text / frames,etc details in database. This skeletal view which are stored in database needs to be

  • How do I sort alphabetically?

    I inadvertantly asked this in the iTunes for Windows community, so I'm reposting here. When I select Genre, how do I sort the Album titles, or song titles, or artists alphabetically? When I select the Albums view, how do I sort them alphabetically? T

  • The iPod could not be updated b/c the firmware was corrupt

    i keep getting that message when i try to update my iPod. Is there a way i can fix this? iPod Nano gen. 2