Gettins "Do you want to save the changes you have made" promt without any

Hi all,
Problem : I have a master detail relation between two blocks which are on different window ( say block 1 on window 1 is master and block 2 on window 2 is detail) ,
when i open my window 2 and close it without any changes, then when i try to do any change in window 1 i get this popup message "Do you want to save the changes you have made".
I have various non database items as well which are used to hold intemediate values like sum of a column and all.
for the close button on window 2 logic :
     go_block('BLOCK1');
     hide_window('WINNDOW1');
I dont want to change the message level. as if there are really changes made then we need this message.
In another thread i saw this might be due to copy "value from property" created by master detail relation on the joined columns.
Please suggest any solutions.
Thanks in advance.

HI I found the solution to this Problem:
when we queried the data block then few items values were assigned . this changes the block_status to CHANGED as well as the form_status variable to CHANGED.
so in EXIT logic of that window i cleared each block explicitly . this discards all the changes made to those blocks ( This logic was implemented for CANCEL button on my screen as so we need not save the data) while the SAVE logic already has the COMMIT so will not set the popup for that.
Not a beautiful logic...... but works ...... :)

Similar Messages

  • How do I save the changes I have made to the settings? Also, how do I get the "Would you like to give Firefox feedback?" popup to go away?

    I have gone into my Tools and then Options and have made changes there (like for Downloads I clicked "Close when all downloads are finished"), but the changes will not save for when I close and reopen the browser; my changes to the settings are not being saved at all. How can I get the changes to stay? Also, I keep getting this popup from Firefox asking, "Will you help improve Mozilla Firefox by sending information about performance, hardware, usage, and customizations to Mozilla?" and I keep pressing the "No" button but it appears every time I open the browser. Even when I press "Yes," it reappears. Is there a way to permanently say "NO"? I would appreciate any help!

    hello vnsonwu, this sounds like there might be a problem with the file in your profile folder that stores the settings (maybe it is set to read-only or corrupted in another form) - please go through the troubleshooting steps described here: [[How to fix preferences that won't save]]

  • 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

  • Dialog Box as "Do you want to save the changes?" in Forms.

    Hi,
    I have 4 datablocks in my forms that corresponds View.
    In the form design, I have a canvas(multiple inserting design) with two buttons that calls the other two blocks.
    Am inserting the records in the following way,
    In first record,
    am entering the value in one block, then a button-press event and so it opens another canvas where I enter some values then return to my main canvas. This is one row.
    But while I try to insert in the second row, there arises the dialog box as "Do you want to save the changes"?
    I should not get that dialog box.
    Please suggest me with the solution.
    Regards,
    Mini

    Thanks for the response,
    Let me clearly explain.
    I have 3 blocks created from view not table.
    I have a canvas in the multiple display layout i.e Number of items displayed is 10.
    In that canvas, I have set the two buttons. the button event is calling another canvas.
    Am inserting a record in the first row in the following sequence.
    Inserting the values for some fields in the main canvas, then entering the button, it opens another canvas that responds to another block, there am entering some values and closing the button event canvas, then returning to my main canvas, then entering the remaining fields with the values, thus my first row ends.
    Now I want to enter the values in the second row, while I navigate from the first Row to the Second row, there arises the dialog box as to save the changes or not?
    I should not get the dialog box.
    Am inserting the values in the database using Insert statements in all the blocks.
    Hope U understand the issue.
    Suggest me with the solution.
    Regards,
    Mini.

  • Forms6i question - Do you want to save the changes you have made !!

    Hi,
    I'm developing a custom master-detail form for 11i e-Business Suite. The requirement is to programmatically default values for some of the base table items when entering the master record.. Both the master and the detail blocks are base table blocks and defined the relation between these 2 as well..
    So i have coded my defaulting logic in the "when-new-record-instance " trigger only when the "(:system.record_status IN ('NEW','INSERT' ) AND :system.mode <> 'ENTER-QUERY')"..
    This is working but the problem is even when i do not change any values in the master block and i try to exit out of the form, getting a message "Do you want to save the changes you have made ".. I want to get that message only when some thing else is changed/entered in the master block or when any new detail records has been entered for that master block.
    Thanks in advance
    Shree

    Shree,
    It sounds like you have a Post-Query (PQ) trigger that is populating items in your Form. This is the typical reason why you would see this message when you close your form and no User changes have been made. The best solution would be to move your non-base table items from your data blocks to a control block so the PQ trigger won't mark the block or record as "Changed".
    Hope this helps.
    Craig...

  • 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

  • Show the alert 'Do you want to save the changes? after entering each record

    Hi,
    Is there a way to show the alert 'Do you want to save the changes you have made?', after entering each record.
    i.e. as soon as a record is entered, user should be prompted to 'Do you want to save the changes?' the record when they move to the next record.
    I used the below code in Post-Record rigger. Prompt was diplaying fine as per the requirement,but record was not being saved.
    DECLARE
    n_button_selection INTEGER;
    BEGIN
    if :System.Record_Status='INSERT' then
    fnd_message.set_string('Do you want to save the changes?');
    n_button_selection := fnd_message.question('Yes', 'No','Cancel', 1, 2,'question');
    IF n_button_selection = 1 THEN
    forms_ddl('commit_FORM');
    ELSIF n_button_selection = 2 THEN
    RAISE form_trigger_failure;
    ELSE
    NULL;
    END IF;
    end if;
    END;
    I used forms_ddl('commit_FORM') to commit the record. Because we can't us Do-key('commit_form') in post-record trigger. But forms_ddl('commit_FORM') is not working. So can anybody please give some idea regarding this.
    --

    Forms_ddl issues dynamic sql - you cannot call another builtin (like commit_form) within forms_ddl. Check form_status after the call and you will see that it failed.
    Moreover, forms is not able to execute the post and commit process if you issue "forms_ddl('commit');", so this will not be a solution either.
    You could use the When-New-Record-Instance - Trigger, which allows restricted built-ins to be executed, and issue do_key('commit_form');". However, you would have to check the :system.block_status or :system.form_status, because :system.record_status will already hold the new record number.
    Regards,
    Gerd

  • Unnecessary question "Do you want to save the changes..."

    Hello again,
    I have a multi-record block on which only update is allowed and two buttons: accept and reject. There are three possible ways of changing records:
    1. change values in some fields and commit - which works fine;
    2. change values in some fields and press accept button;
    3. change values in some fields and press reject button.
    Buttons have implemented delete, update, insert in some tables using a pl/sql stored package. At the end of the processing, for both buttons, record "accepted" or "rejected" dissapears from the block - using execute_query. Problem is that if some values have been changed before pressing the button, warning window appears: "Do you want to save the changes you have made?" which in this case is unnecessary and annoying. How can i get rid of this message?
    Thank you in advance.

    If you don't want commit changes on base table items you can use clear_block(NO_VALIDATE) built-in before execute_query

  • How to suppress 'Do u want to save the changes?'  When there are no changes

    Hi All,
    I have developed one form,which contains 3 blocks in that 2 are database blocks and one is control block.It's working fine.When I close the form without doing any change also it is showing an alert as 'Do you want to save the changes you have made?'. How can I suppress that alert when I haven't made any change to the form.
    I am displaying one filed in the database block as 'null' until check box is checked.For that I have written code in when-new-block-instance trigger of that block.
    There I wrote SET_RECORD_PROPERTY (GET_BLOCK_PROPERTY (:SYSTEM.TRIGGER_BLOCK, CURRENT_RECORD), :SYSTEM.TRIGGER_BLOCK, STATUS, QUERY_STATUS); also to change the block status as query.
    But it is not working, still I am getting the alert,How can I solve this could anyone please give me a suggestion..
    Thanks in advance.

    So, this functionality can be done through CHECK BOX itself. Why you are making null by WHEN-NEW-BLOCK-INSTANCE. You can just set the update and insert property for that fields and rest things you can control from chexbox. And WHEN-BLOCK-INSTANCE-TRIGGER will fire once when you will access that block. If you want to set the same functionality for each record. Then you must use WHEN-NEW-RECORD-INSTANCE. for ex.
    Trigger = WHEN-NEW-RECORD-INSTANCE (BLOCK-LEVEL)
    Here i will assume that if check box is checked then he can update that fields.
    IF :CHECKBOX='Y' THEN
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',INSERT_ALLOWED,PROPERTY_TRUE);
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',UPDATEABLE,PROPERTY_TRUE);
    ELSE
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',INSERT_ALLOWED,PROPERTY_FALSE);
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',UPDATEABLE,PROPERTY_FALSE);
    END IF;In the above code no need for set value to NULL.
    And on CHECK BOX you can write like this...
    Trigger WHEN-CHECKBOX-CHANGED (ITEM-LEVEL)
    IF :CHECKBOX='Y' THEN
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',INSERT_ALLOWED,PROPERTY_TRUE);
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',UPDATEABLE,PROPERTY_TRUE);
    ELSE
      :FIELD_NAME:=NULL;  -- here if check box is unchecked then it will set value to NULL
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',INSERT_ALLOWED,PROPERTY_FALSE);
      SET_ITEM_PROPERTY('BLOCK_NAME.ITEM_NAME',UPDATEABLE,PROPERTY_FALSE);
    END IF;-Ammad

  • I have a new iPhone for work, set up on a new iTunes account (PC).  I was told i can associate it to my home iTunes account (iMac) but don't know how.  I want to save the work related apps as well.  Any advice?  Thanks

    I have a new iPhone for work, set up on a new iTunes account (PC).  I was told i can associate it to my home iTunes account (iMac) but don't know how.  I want to save the work related apps as well.  Any advice?  Thanks

    Thanks. I messed up with my husbands iphone because I was told the wrong thing. Now everytime I sync his phone it makes it look just like the other phone I had. Do you know how I can fix taht for his phone? Any settings I can turn off that will prevent all of my apps/contacts, etc from auto populating his phone?

  • When i upload my site, it wont show the changes i have made in the browser. How do i upload properly?

    when i upload my site, it wont show the changes i have made in the browser. How do i upload properly?

    Hi Ashley,
    Is it possible that you can share your site url so that I can check that? Also, what are the changes that you are making? Are you hosting the site on business catalyst?
    - Abhishek Maurya

  • HOW to call at anytime the form6 "do you want to save the changes you have made"????

    HOW to call at anytime in form6 "do you want to change the save you have made"????
    It executes only if you use exit_forms
    and I don t want to save with a commit_forms
    without do appears this forms of form6
    Thanks a lots for any answering
    null

    you have to write a trigger on key-clrfrm and key-next-record.
    on that triggers you can call alert with 2 or 3 buttons.
    I hope it will help.
    Mustafa

  • Do u want to save the changes ?

    Hi
    Sorry am confused regarding this thread, hope someone could help me pls.
    Would you like to save changes.. no changes to save
    From the thread i concluded that..
    .It is important to use the following in the POST-QUERY TRIGGER as follows
    SET_RECORD_PROPERTY(:SYSTEM.TRIGGER_RECORD, :SYSTEM.TRIGGER_BLOCK, STATUS, QUERY_STATUS);
    BEGIN
    SELECT dept_name
    INTO    :dept_name
    FROM  departments
    where dept_id = :emp.dept_id;
    EXCEPTION
    WHEN OTHERS THEN MESSAGE(ERRMSG);
    END;am i right ?
    i need explanation pls.
    Regards,
    Abdetu..

    From the thread i concluded that..
    .It is important to use the following in the POST-QUERY TRIGGER as follows
    SET_RECORD_PROPERTY(:SYSTEM.TRIGGER_RECORD, :SYSTEM.TRIGGER_BLOCK, STATUS, QUERY_STATUS);
    BEGIN
    SELECT dept_name
    INTO :dept_name
    FROM departments
    where dept_id = :emp.dept_id;
    EXCEPTION
    WHEN OTHERS THEN MESSAGE(ERRMSG);
    END;From the code you show, not really. The exception-part is even bad, leave it out, forms will show an error anyway when it occurs.
    This part
    SET_RECORD_PROPERTY(:SYSTEM.TRIGGER_RECORD, :SYSTEM.TRIGGER_BLOCK, STATUS, QUERY_STATUS); CAN be useful, but is not u MUST. In any case, it should be after any lookup-code, so in your example it should be just before the exception handler.
    The SET_RECORD_PROPERTY makes sure that any outstanding validation on any item of the current record will be considered as "finished". This is helpful when you have a lookup-code as in your example AND if there is a validation-trigger on that lookup-item (in your case a WHEN-VALIDATE-ITEM-trigger on :DEPTNAME), which checks the value in the item and tries to read the according fk-id-value for the given textvalue and store it back to the fk-id-column.

  • Why can't I save the changes I've made to a .vit?

    I've created and saved a .vit file that's called from a another .vi.
    Then, i went back and tweaked the .vit file (and saved it as the original .vit filename), this ran fine by itself.
    But, when i call this file from the 'main' .vi, those changes didn't show up, it was still the original file.
    I'm very sure i saved the changes under the proper file name and extension, what am i missing?

    In your "main" vi, how exactly are you caling the vit? Are sure you are calling the vit, or a vi instance created from the vit? Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How to revert back the changes that have made to Infoset

    Dear Experts,
    Can any one help me with solution for the below issue?
    I have activated(checked) some navigational attributes to the infocube "XYZ".This "XYZ" infocube is used in Infoset and as well as in multiprovider.Instead of activating navigational attributes in the infoset ,mistakenly i have removed the infocube and reassigned(reconnected with previous settings) in the infoset.Now i realized that the technical reference names in infoset(For ex:"ABC_F12,ABC_F13") got changed and giving the problem in Multiprovider.And there are n number of queries build based on the multiprovider.
    While iam trying to activate the inactived Multiprovider iam getting an error message saying "inactive infoobjects ...(.ABC_F12,ABC_F13 are not available)....
    Can any body help me how to revert back the changes for the Infoset that i have made or anyother process to sort out this issue.
    Earlier solutions will be appreciated.
    Thanks & Regards,
    Prathish.

    Hi,
    If the changes have been saved, then there is no automatic way of reverting the changes. To get the Infoset in the reqd state, you will have to move an unchanged copy into the dev sys. The easiest way would be to transport a copy from the Prod sys. But first you have to check whether the transport path exists. With the help of Basis team, you can do this.
    wish u luck.
    Regards,
    Rahul

Maybe you are looking for

  • Importing pictures question

    when we import photos into photoshop is the picture actually copied into the photoshop system?  If yes, can we then delete the pictures off the hard drive?  To me import means create/load a copy of the picture into photoshop and therefore no lonager

  • Using iphone as a modem for your home PC

    I currently have a motorola slvr that I use as a modem on my home computer by connecting with the usb cable. It's the only way I can get internet at home right now. Has anyone tried this with the iphone? I want to buy one in the next few weeks, but t

  • How is the iPhoto Library organized

    I apologize if this topic has been covered - point me to earlier discussions if appropriate. I'm curious about the filing scheme in the iPhoto Library. When I look in the Finer in the Library I see that there are folders by year, and within those fol

  • Share Sessions for two or more Users ?

    Hi, im new on this site. Now we like to use SGD and stumbling over a problem, im not sure that sgd can handle this. We like to share Sessions like a open Terminal between users. That means if User one open a terminal at home and he like that user2 go

  • Equium M40x-149 - Icons on desktop apeared bigger

    Hi there, I hope someone can help me. I booted up my laptop today and the icons on the desktop appeared bigger. I right clicked on the desktop then went to properties-settings and noticed that the highest resolution I could get was 1024x768, but when