You want to save the changes... no changes to save

Hi guys, I am currently have a relationship master detail, but I have a problem. When a query is entered in the block of my master, it automatically queries the retail block, that's fine, however, if I then enter a new query, so switch to query mode in the main block I get a call asking me if I want to save the changes, but I did not bring any changes.

However, I have an idea of the cause of the problem. I have 2 data elements not on my block of detail that are just there to provide additional information to the user. How they work, that is, when the retail block id is made again, I have in a post request trigger that I opened a slider and bring back data from another table and display it to the user of these data elements NOT. However, I do not think that there would be a prompt to save changes under this descriptive would in a database not element. I'm just assuming it's my problem.

Someone at - it ideas how I might solve this problem?

Thank you.

changes on components of database not also set the status to change.
After that manipulations in your code after query, add

SET_RECORD_PROPERTY(:SYSTEM.TRIGGER_RECORD, :SYSTEM.TRIGGER_BLOCK, STATUS, QUERY_STATUS);

to reset the registration State.

Tags: Oracle Development

Similar Questions

  • Do you want to save the changes

    Hi all

    6i dev,

    I always get him 'do you want to save the changes you have done"message when I open my form and try to run the query.

    without to make anychanges.

    ??

    Thank you

    I found it, I'm assigning a value to an element in a trigger a time new form instance

    Thank you

  • Coming out of the block how to invite the message like "do you want to save changes?" so any changes made in the current block

    Hello

    I'm working on the Oracle forms 6i. I have a custom query search window (do not use the Oracle QUERY_FIND seeded window feature). Build manually (BLOCK_1 and WINDOW_1). When I click on the search button, then I Block table that has windows (BLOCK_2 and WINDOW_2) and in this form, I have a button called details. When I click on the Details button, it opens the details Block (BLOCK_3 and WINDOW_3).

    There is no functionality seeded t define the relationship of master details. (everything is customized)

    Now, if the user has made a few changes on the block of retail and click the X (close) on this window without COMMIT the record, then how can I display a message to the user as a block level saying that "Do You want to save changes?" and after selecting one of the action i.e. Yes, no or cancel how to perform the action according to the user's action.

    This form I have three different blocks and WINDOWS for individual block so when i have all three open window and click on F4, then it closes all windows of three then how can I close the window when the user uses them short key F4 to close the window.

    Thank you very much in advance.

    Melanie,

    Thanks for the update. I tried KEY-EXIT, WHEN now-BLOCK-INSTANCE, KEY of VALIDATION, but unfortunately these triggers are not fired. I found the work around that.

    I made after the code in the APP_CUSTOM package in the close_window procedure.

    IF: SYSTEM. BLOCK_STATUS = 'CHANGE '.

    THEN

    FND_MESSAGE. SET_STRING (' do you want to save the changes you made?) ');

    l_button:-fne_message.question(button1...icon);

    and then based on the user action that performs the action.

    END IF;

    It works for me. Problem solved.

    Thank you very much for your time and your suggestions.

  • Acrobat request "do you want to save the changes?

    Example a PDF in "PDF Reference version 1.7" in Appendix G, result in Acrobat Reader, showing a popup "do you want to save changes to... before closing? Why this even when popup any changes made to the document? How to get rid of this popup?

    Hi carriek34182695 ,

    You will need to disable the safe_mode for this.

    Please navigate in Edition > Preferences > under categories, select "Security (Enhanced)" and uncheck the option 'enable protected startup mode '. Click Ok and restart Acrobat Reader.

    Let us know if that helps.

    Concerning

    Sarojini

  • Get the message "do you want to save the changes you made?

    Hi all

    I activated the zoom for the standard form of profiles (applications developer) open a new custom form that is used to enter additional information for profiles.
    Two fields profile option id and the profile on the new form option name should get the value in the calling form. Based on these values the new form should show the custom intermediate table data if the record exists.
    If there is no data in this profile of the user must be able to enter information and create new record and commit to the DB table.
    If there is data in the file should be displayed and if the user updates of any field, you have to refresh the record in the DB table.
    I created two new parameters in the new profile_option_id and profile_option_name form which gets its value from the calling form through the custom.pll changes.
    Now, when the new form opens, I see the 2 default fields. But it pops up the message "do you want to save the changes you made?
    If I say no, then the data are displayed for the existing record. If I click Cancel, and then nothing happens.
    Please help me to understand the reason for the pop-up message when the form is opened.
    I changed only a TIME-NEW-FORM-INSTANCE trigger to the new form.

    Start
    If (: parameter.profile_option_id is not null) and (: parameter.profile_option_name is not null)
    then
    set_block_property ('NAPP_USR_PRF_OPTIONS_TBL', DEFAULT_WHERE, 'profile_option_id =' |: parameter.profile_option_id |) "(ET profile_option_name = ''' ||: parameter.profile_option_name || ''');"
    : NAPP_USR_PRF_OPTIONS_TBL.profile_option_id: =: parameter.profile_option_id;
    : NAPP_USR_PRF_OPTIONS_TBL.profile_option_name: =: parameter.profile_option_name;
    end if;
    GO_BLOCK ('NAPP_USR_PRF_OPTIONS_TBL');
    execute_query();
    end;

    I use form 10g and DB version is 11.2.0.2.0

    Thank you
    Chrystel

    Hi Olivier,.

    : NAPP_USR_PRF_OPTIONS_TBL.profile_option_id: =: parameter.profile_option_id;
    : NAPP_USR_PRF_OPTIONS_TBL.profile_option_name: =: parameter.profile_option_name;

    GO_BLOCK ('NAPP_USR_PRF_OPTIONS_TBL');
    execute_query();

    After having assigned the value in any field and then using exectue_query triggers the message.
    If option 1 is...
    If you need to assign then first use execute_query; then assign a value

    Option 2 is...
    Use commit_form and then use execute_query;

    I hope this helps...

    Hamid

  • Do you want to save the changes you made

    Hi guys,.

    I need your help

    I ve a form that retrieve data on employees.

    There are 8 blocks in the form,

    I created a when trigger click mouse to display a LOV


    declare
    a Boolean value;
    Start
    a: = show_lov ('TEST');
    pc_execute; -calling a procedure
    END;

    but it gives you want to save the changes you have made?
    and I tried to delete it by setting the level of message system = 25
    but no advantage,

    And if I write:
    declare
    a Boolean value;
    Start
    a: = show_lov ('TEST');
    GO_BLOCK ('ORG_EMP_INCREMENT_HISTORY');
    pc_execute; -calling a procedure
    END;

    the message will disappear, but the query will run not all blocks


    ANY suggestions
    Best regards

    El-Hamdulellah

    Pls to mark your Question and the correct answer...

    and erase what was you meant to do?

    To help others with the same problem...

    Kind regards

    Abdetu...

  • After query do you want 2 save the changes you made

    Hello

    If I run a query for a form master / detail and press an Exit_button

    A message will be displayed in the form: (do you want 2 save the changes you have made) or NOT

    I don't want to use:
    EXIT_FORM ("NOT OK");
    I have 2 codes in a post request
    BEGIN
    
    SELECT ITEM_ID ,ITEM_NAME
    INTO   :ITEM_ID ,:ITEM_NAME
    FROM    WH_ITEMS
    WHERE ITEM_SERIAL =:WH_T_ITEMS.ITEM_SERIAL ;
    
    EXCEPTION
    
      WHEN No_Data_Found THEN       NULL; 
    
     WHEN OTHERS THEN
              
              Message ('OTHERS' || SQLCODE || ' And ' || SQLERRM);
              Message ('OTHERS' || SQLCODE || ' And ' || SQLERRM);
              
         
    END;
    
    
    ---====================================
    
    
    
         
    BEGIN
    
    SELECT WH_STORES.STORE_NAME
    INTO   :WH_TRANSACTIONS.STORE_NAME
    FROM   WH_STORES
    WHERE  WH_STORES.STORE_ID =:WH_TRANSACTIONS.STORE_ID ;
    
    EXCEPTION
    
      WHEN No_Data_Found THEN      NULL;
      
            
     WHEN OTHERS THEN
              
              Message ('OTHERS' || SQLCODE || ' And ' || SQLERRM);
              Message ('OTHERS' || SQLCODE || ' And ' || SQLERRM);          
              
    END;
    
    --===============================================================
    But I want 2 know why?


    Kind regards

    Abdetu...

    Database is perhaps one of these columns

    IN: WH_ITEMS. UOM_ID,: WH_ITEMS. STP_UOM_NAME

    If Yes, delete the select statement.

    -Clément

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

    Question: To remove the warning "do you want to save the changes to investigation.pdf before closing.

    I created a file of pdf XFA (using the LC Designer 8.2) to view this issue

    I can't attach PDF file. Without attaching the pdf file, it would be difficult to explain.

    Click event js:

    function activateUser() {}
    var PDFVersion = xfa.host.variation + xfa.host.version;
    xfa.host.messageBox ("registered button click event");
    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 recorded");
    XFA. Form.Form1.sendForm.welcomeMsg.Presence = "visible";
    XFA. Form.Form1.sendForm.successMsg.Presence = "invisible";
    };

    docClose js event:

    xfa.host.messageBox ("docClose recorded event");
    Event.Target.Dirty = false;

    Steps to get the caveat:
    (1) open the attached pdf using Acrobat Professional.
    (Bouton 2) click on registration to confirm.
    (3) now close the document and the Acrobat gives a warning "do you want to save the changes to investigation.pdf before closing.

    The XFA pdf summary:
    It has two text fields. DocReady event field has done this & field B is rendered invisible.
    The button click event of the field made invisisble & field B are made visible.
    Closing the pdf should not raise this warning message.

    My Efforts:
    (1) found a property in js adobe docs.
    Event.Target.Dirty = false;
    It does not solve the problem.
    (2) I tried to put this logic in almost all the events listed in the designer, but I'm not able to solve the problem.

    Please help me solve this problem.

    Hello

    Change the visual appearance is dirty the screen, before all data are actually entered in the form. I've seen this before.

    I think that the docClose event is too late to have the sale/requiresFullSave script. preSave does not either, as this is triggered after the warning dialog is displayed.

    For a test, I would put the sale/requiresFullSave script in the layout event: loan. Not the most efficient, but he should do after changing the visibility of the messages.

    This could be interesting: http://cookbooks.adobe.com/post_How_often_events_fire_and_their_sequence-16547.html

    Niall

  • Do you want to save the changes that you did in fact 10g.

    Hai All,


    I am using oracle 10 g Forms. When I press the Search, he asks that you want to save the changes you have made.

    in fact this form has been converted to forms 6i. In forms 6i, his job very well, without asking, but in 10g, he asks.


    can someone tell how to remove this message?


    Thanks in advance.

    Kind regards

    Manu

    We therefore know what produces this message. Remove the initial allocation of the WHEN-CREATE-RECORD-Trigger one after another and see the message disappears. Then you have the field that is causing the problem. possible causes:
    a POST-CHANGE trigger on one of these elements, that updates another element in the block

    Possible solution:
    Use

    SET_ITEM_PROPERTY('BLOCK.THE_TROUBLEMAKING_ITEM', ITEM_IS_VALID, PROPERTY_TRUE);
    

    After the transfer

  • Useless the question «Do you want to save the changes...» »

    Hello again,

    I have a block of several recording on the single update is allowed and two buttons: accept and reject. There are three possible ways of changing records:
    1. change the values in some fields and validation - which works very well;
    2. changes to the values in some fields and tap on accept button;
    3. change the values in some fields and press the reject.

    Buttons have implemented the delete, update, insert into some tables using a stored pl/sql package. At the end of the treatment, for the two buttons, "accepted" or "rejected" folder disappears from the block - using execute_query. Problem is that if some values were changed before pressing the button, warning window appears: "Do you want to save the changes you made?" which is in this case useless and boring. How can I get rid of this message?

    Thank you in advance.

    execute_query (no_validate)

  • "Do you want to save changes...". "does not seem to do anything?

    I have a site that offers interactive content for PDF users.  My site is configured to force a prompt open/save to a PDF file instead of let the browser decide how to deal with them (i.e. open in browser "Preview").  However, here's the question:

    When a user "opens" a PDF / amendments to it and simply closes the file PDF, Reader/Acrobat prompt the user in the dialog box "do you want to save changes to...". ».  However, when you click on 'Save', the dialog box deadline there is no prompt to choose where she must be registered in.  Open Reader/Acrobat directly does not display the "saved" as a recent document, either document.

    I was able to reproduce this issue on three different devices.  Is this a known bug?

    Haven't tried what you're doing, but normally save just done this. What you want is to save it under. I assume you are using a form any JavaScript or an action button. See if the button or script can be changed to save as. The just Save saves the current file (often in the TEMP folder).

  • Message "do you want to allow the following program to make changes to this computer?", in windows 7 "

    I just got this new laptop, and I got tired to remove my accout paswsword so I have things that him... and now every time I try to change things it appears: "do you want to allow the following program to make changes to this computer?  It then invites me type an administrator password and then click Yes. and there is no space to type my password... and also I can only except the No. I can't insert a cd... I have HELP lol

    Access is denied.

    now what? He still does not

    This happens because only Bikesh T jumped an essential step on many machines. Here you go:
    1 log in under an administrator account.
    2. click on start.
    3. type the three letters cmd in the search box.
    4. press on Ctrl + Shift + Enter
    5. click on "run as Administrator".
    6. type the following command and press ENTER:
    NET user administrator / Active: Yes

  • Whenever I use Adobe Creative Cloud, I have the same question; do you want to allow the following program to make changes to this computer. Whenever I click OK. But the question is always every time. I have download the new versin of the designer c.

    See the previous question.

    Please follow every time I use Adobe Creative Cloud, I have the same question, you want to allow the following program to make changes to this computer. Whenever I click OK. But the question is always every time. I have download the new versin of the creative c

    Double Post

  • Yahoo! Toolbar - Search Alert Service. Alert: Your browser search settings have been changed or disabled. You want to fix the settings and return to Yahoo!?

    I think my IE8 is taken hostage.  What is causing this error?  How can I remove it?

    This message comes from the waterproof Protection of search Yahoo. Go to control panel > programs and features and click the entry of Yahoo. You will have the possibility to install different components that pushed on your computer of Yahoo. Or Yahoo Search Protection could have its own entrance separate in programs and features.

    And for general information you want secure on the Internet, you might like these two short articles that I wrote for my clients. You can download them in PDF here:

    http://www.elephantboycomputers.com/staying-safe.PDF
    http://www.elephantboycomputers.com/Too_Much_Security.PDF MS - MVP - Elephant Boy computers - don't panic!

  • you want to save the password disable and erase the password he saved.

    You want to disable the functionality each time asking me to save a password.
    I also want to change a setting so that he doesn't remember the password he saved when I hit the wrong button.
    How do I do that? Firefox 4.0
    Thank you.

    1. Click on the orange button Firefox, then select Options to open the options window
    2. Go to the Security Panel
    3. No longer asking to save passwords of Firefox, deselect "Remember passwords for sites" setting
    4. To remove the passwords that have been registered, click the "saved passwords" button to open the Manager of passwords
    5. In the passwords manager click the "remove all" to delete all saved passwords
  • Everytime I open an email or try to send a new message, following the pop box: DOWNLOAD of FILES you want to save this file?

    Everytime I open an email or try to send a new message, following the pop box: DOWNLOAD of FILES you want to save this file?  I have to click 'Cancel' twice in the order fdor the box go away.

    original title: DOWNLOAD the FILE you want to save this file?  Send error message

    Hi Harold Sokyrka,.

    1. When was the last time it was working fine?
    2. Did you the latest changes on the computer?
    3. Are you using any e-mail program or is it access webmail?

    If you use any e-mail program on your computer, then check and make sure that the default e-mail program is set correctly on the computer.

    How to change the default mail Client

    http://support.Microsoft.com/kb/555566

Maybe you are looking for