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.

Similar Messages

  • 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.

  • 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

  • How to override the dialog "Do you want to save" while closing the form?

    HI
    I have two blocks on the form.Master block is based on a view wheres the detail block is populated by a procedure.
    Even if the user doesnot change any record and trying to close the form it is still showing the default "Do you want to save" with three options save,discard,cancel as choices.How can we prevent the form displaying that if the user is closing the form with out any uncommited changes.
    Thanks in advance.

    Read this thread about the affects of post-query and when-validate triggers:
        Message Do you want to change the changes you have made? caused by a lov

  • When closing the Form "Do you want to save changes" window

    Hi
    I have a Master-Detail form where in my POST-QUERY trigger i am changing the LOV non-database item field to some value. When I just select Master record(NOT in query mode) my detail records pop up in the detail block. This is done by EXECUTE_QUERY in WHEN-NEW-BLOCK-INSTANCE trigger in Detail Block. But when i close the form it asks me to save changes even though i haven't changed anything. I have this statement in POST-QUERY Trigger
    SET_RECORD_PROPERTY(:SYSTEM.TRIGGER_RECORD,:SYSTEM.TRIGGER_BLOCK,STATUS,QUERY_STATUS); This issue does not happen in QUERY-MODE.
    I tried both Set_Item_Property('BLOCK.CODE',ITEM_IS_VALID,PROPERTY_TRUE); this property in the POST_QUERY and Set_Item_Property('item_name',VALIDATE_FROM_LIST,PROPERTY_TRUE); in QUERY-MASTER-DETAILS trigger but it didn't work.
    please help
    thanks

    Hi!
    I think, beause the message "Do you want to save the changes ..." has no error number,
    you will not get to catch it on a form level on-message-trigger.
    Better find out, why the record status changed.
    - Look to a post-query trigger that fills or changes a database item
    - change the Validate From List item Property to No
    - check for a when-validate-item or post-change trigger on items with a lov that has the Validate From List item Property set to Yes
    Regards

  • How to avoid the message "Do you want to save the changes you have made?"

    i have 3 forms
    master block
    detail1 block of master
    detail2 block of detail1
    when i go out of detail1 and detail2 blocks after doing some modifications it asks me "Do you want to save the changes you have made"?
    i want to avoid this message as well as my changes should be posted in the database. what is the solution for this big pblm?

    hi
    may be you are trying to modify the database item or reassigning the database item value which is not actually needed.
    try to comment the reassigning database values
    and give clear_form(do_commit);
    most probably u will not get the message again
    Regards
    Rajdeep .A

  • How to remove the bar: ''do you want to open or save this file''?

    If i open a PDF file in IE a bar will pop-up with is asking ''do you want to open or save this file''. Is there a posibility to open this file immediatley. So without the bar that will ask if i want to open or save the file? Loking forward for a answer!

    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.

  • 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.

  • '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.

  • Do you want to save changes button code

    Hi guys,
    Quick question which I was wondering if anyone could help me out. When a form has changed and you press the x button you get the message do you want to save changes? with a yes or no option. Is it possible to put code in to trigger of these yes/no buttons when clicked and if so how would I go about doing this?
    Thanks.

    hello
    if i got your need so you will need to create alert
    then start coding
    examlpe
    1- create alert called save_record
    2- in key exit trigger write this code
    DECLARE
    al_id Alert;
    al_button NUMBER;
    BEGIN
    al_id := Find_Alert('save1');
    IF Id_Null(al_id) THEN
    Message('User_Warning alert does not exist');
    RAISE Form_Trigger_Failure;
    ELSE
    /* ** Show the warning alert */
    al_button := Show_Alert(al_id);
    ** If user pressed OK (button 1) then bring up another
    ** alert to confirm -- button mappings are specified
    ** in the alert design */
    IF al_button = ALERT_BUTTON1 THEN
    al_id := Find_Alert('Are_You_Sure');
    IF Id_Null(al_id) THEN
    Message('The alert named: Are you sure? does not exist'); Message('The alert named: Are you sure? does not exist');
    commit;
    exit form;
    RAISE Form_Trigger_Failure;
    ELSE
    al_button := Show_Alert(al_id);
    IF al_button = ALERT_BUTTON2 THEN
    null;
    END IF;
    END IF;
    END IF;
    END IF;
    END;
    Edited by: Khaled Farouk on 27-May-2013 07:09

  • 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.

  • 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.

  • Suppress the message do you want to save the changes you have made

    hi all
    i have written a rollback
    it clears my record
    but gives me the message
    do you want to save the changes you have made
    i have written
    :system.message_level :=25;
    rollback;
    :system.message_level=0;
    but still it is giveing me the message
    can you please tell me how to suppress this message
    please help me
    thanks
    mandar

    try in reverse

  • How to disable 'do you want to save changes to...'

    Is it possible to disable the 'do you want to save changes to...' pop-up in Reader 10.1.1 LS? I'm using CrystalViewer to read reports - but I don't edit them so don't need to save any changes.

    Make sure that the PDF files are not corrupted. Otherwise Adobe Reader repairs the files and will save the changes.

  • 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.

Maybe you are looking for

  • Error in 3rd party process.

    Hi friends, I am trying to create 3rd party SO. I got below error. 'Third-party not defined in the case of vendor with plant assignment' Please advise - ‘what is the cause’ and the solution. Best regards, Raman.

  • Update only a part of a project with Edge Animate CC 2014.1.1 PROBLEM

    WIN 8.1 Edge Animate CC 2014.1.1 Firefox 35.0 The Problem started after Update to Edge Animate CC 2014.1.1 I want to update text which is an Edge Animate file The original Project was programmed with Edge Animate 1.0(not CC) After I made the changes

  • Apple TV access to iTunes

    Hi, If I install an Apple TV next to an HDTV, will it need to communicate with any Mac so it can retrieve iTunes videos from the Mac, or will the Apple TV have the ability to access my iTunes account, retrieve the video and play it without any commun

  • Problem with Software Setup?

    I was to upgrade Adobe Creative Suite 3 Premium in my Power Mac G4 (PCI Graphics) and Tiger 10.4.11 with 1GB of RAM. The installation was successful, but opening one of the applications and the Software Setup appeared. I filled out the serial numbers

  • I bougth Time machine 2GB 4th generation, Apple solves the problem of overheating in powersupply?

    I have two questions... 1. Apple solves the problem of overheating in powersupply? 2. can i see temperature on Mac OS? thanks for you answer...