UI Shell :  Changes are not saved. If you leave this page

Hi,
My JDeveloper version is 11.1.1.6.0
I have on VO having all transient attributes. The vo having dependent LOV's . When i am not not selecting the value from lov and trying to close the UI Shlll it is not showing warning message.
When i am changing the lov then trying to close the UI shelll then it is shows the "Changes are not saved..." warning message. I want to skip the warning message . How to do that
Thanks
Deepak

go to <af:document id="d1" > tag and then property inspector and the n make uncommittedDataWarning to off.
Thanks
Pratee.

Similar Messages

  • Upon startup Firefox says "Proxy is refusing connections." When I select "Auto-Detect Proxy" from Advanced settings and solve problem, changes are not saved and upon next startup I must select again...!

    Firefox 4 was working fine. Then one day, when I started up Firefox, it says "Proxy is refusing connections." I solved this by selecting "Auto-Detect Proxy" from Advanced network settings, but my changes are not saved and upon every start-up I must select it again! (I even completely removed my webroot antivirus protection, as it as hindering many proxy related programs, but this seems to not be the source of the problem)

    You can find the connection settings in Tools > Options > Advanced : Network : Connection
    If you do not need to use a proxy to connect to internet then select "No Proxy"
    See "Firefox connection settings":
    * https://support.mozilla.com/kb/Firefox+cannot+load+websites+but+other+programs+can
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    See also:
    *http://kb.mozillazine.org/Preferences_not_saved

  • Web template changes are not saved.

    Hello Experts,
    I making a small change to an existing Web Template namely changing the tab page 1 to tab page 2 and  vice versa.
    I could see the message Changes are saved but at the end web template is same like as it was.
    Any idea why changes are not being saved and how to over come this will be of great help.
    Thanks in anticipation.
    Best Regards.

    Hi.
    The changes are not saved in WAD or has not affect when executing the WAD ?
    Regards.

  • Changes are not saved

    After making changes to my iWeb site, I have re-published as well as saved all to .mac. However, the changes are not saved. How can I save the changes?

    KHCrowley,
    Welcome to Apple's discussions.
    Try clearing your browser cache, and then take another look. The changes are most likely there.
    Mark

  • When i make changers to my firefox settings and i close the browser, the changes are not saved, why?

    when i make changes in the options menu like - allow pop ups or never remember history, it works great but when i close the browser, the changes i made are not saved, this never happened on the previous version
    i have unistalled firefox4 and reinstalled it but this dows not help

    See:
    * http://kb.mozillazine.org/Preferences_not_saved

  • Incopy CS4 (mac) - when closing file, changes are not saved

    I have a CS4 Indesign document with assignments saved. When the editor works on the file, she is able to save as she goes, however gets a dialogue box about how we are trying to save over an older file with the options 'submit changes, discard changes and I think one other option'.
    When 'submit changes' is clicked we re-open the file and find that the changes have not been saved.
    We don't understand why we would receive that message since we are hitting save as changes are done while working on the file.
    The odd thing is that it doesn't happen on all files. And the dialogue box doesn't always show up.
    One thing to note is that we recently changed from a CS2 workflow that we've been using successfully for a few years. Ie. without that particular dialogue box showing up or any save issues.
    thanks all!

    Lr & Photoshop both have the potential to use tiny (xmp) files for storing changes (and never save any other files), and both can save/export big honkin' tiffs, or like-sized jpegs...
    If you save files in Photoshop with layers and such stuff, the files can get pretty big.
    So, to answer your question: "It depends..." - which files, how saved/exported...
    Try some stuff and inspect the file sizes!
    Rob

  • POI Information Updates when Costing Changes are not Saved

    Hi All,
    When you go to the costing screen of a party in Oracle HRMS, make changes to the costing string (Cost Allocation Flexfield) and not save them. Then, exit from the costing form and go to the Purchase Order Information (POI) screen and press Ctrl+F11, the POI information updates to the new changes. It was my understanding that in order for the purchase order info to be updated you need to make changes or "touch" the costing screen and save. I have noticed that the purchase order changes after being in the costing screen even without saving anything. Was this intend?
    Thanks,
    Naveen Gagadam

    The Changes on the Assignment reflect because of the changes on the Costing Screen. This is due to the custom.pll implementation. Is there an event name that I can use for the Assignment form such that the changes on the Assignment screen show up only after the changes are SAVED on the Costing Screen. Here's the code that we are using in the Procedure: Event of the custom.pll
    ====================================================================================
    If Event_name = 'WHEN-VALIDATE-RECORD' then
    --     1. Costing checks at Assignment (PERWSEAC). This code copies first 4 segments of costing string
    --               to Default Expense Account on the Assignment screen.The Code will perform this function for
    -- the first Costing record but no other record.
    if name_in('system.current_form') in ('PERWSEAC') then
         Step_identity := 'Costing to Expense Account Population';
                   if name_in ('system.cursor_block') = 'COST' then
    -- Check if current record is the first record in the block
    -- prior to 4/6/05 this code only ran if first costing record. now runs for all and passes
    -- whether first record to package. B Wagner                    
    if name_in('system.cursor_record') = '1' then
              lvc2_first_rec := 'Y';
    else
         lvc2_first_rec := 'N';
    end if;
                        if name_in('COST.SEGMENT1') is not null
                   and name_in('COST.SEGMENT8') is not null
                   and name_in('COST.SEGMENT2') is not null
                   and name_in('COST.SEGMENT3') is not null then
                             lvc2_company_nm     := name_in('COST.SEGMENT1');
                             lvc2_LOB := name_in('COST.SEGMENT8');
                             lvc2_location := name_in('COST.SEGMENT2');
                             lvc2_dept := name_in('COST.SEGMENT3');
                             FND_PROFILE.get('USER_ID',ln_user_id );
         -- It has been assumed that the seperator for the flexfield segments is a period ('.') .
         -- If the seperator is changed then the following line of code has to be modified.
         -- If the number of segments in the flexfield definition is changed then the number of
         -- separators has also to be modified.
    ln_assignment_id := name_in('COST.ASSIGNMENT_ID');
    ld_session_dt := name_in('CTL_GLOBALS.SESSION_DATE');
    smc_customlib.set_exp_act(
                                                                     ln_retcode,
                                                                     lvc2_errbuf,
                                                                     ln_user_id,
                                                                     ln_assignment_id,
                                                                     ld_session_dt,
                                                                     lvc2_company_nm,
                                                                     lvc2_LOB,
                                                                     lvc2_location,
                                                                     lvc2_dept,
                                                                lvc2_first_rec
    if ln_retcode = -1 then
         -- b wagner 4/6/05 - raise trigger failure so bad combinations can't be entered into costing screen
         fnd_message.set_string(lvc2_errbuf);
         fnd_message.error;
         raise form_trigger_failure;
    end if;
                        end if; -- If costing string is complete
                   end if;   If First Record of COST Block
                   end if; -- If Block is COST
         end if;     -- For Assignment form.
    ================================================================================================================
    Its the custom package that actually populates the changes in Costing Screen onto the Assignment Screen, but I want to activate this only when I save the changes on the Costing Screen. Right now the changes are seen on Assignment Screen when I hit CTRL=F11 even when I don's save the Costing Screen changes.
    Thank You,
    Ngagadam.
    Message was edited by:
    Naveen Gagadam
    Message was edited by:
    Naveen Gagadam
    Message was edited by:
    Naveen Gagadam
    Message was edited by:
    Naveen Gagadam

  • Changes are not saved in DNG

    I've been experimenting a bit with saving changes made to Canon 20D Raw files to DNG, but without success. When I open the saved DNG file with Apple's Preview, it displays the file without the changes. (I've tried "Embed original raw file," and not doing so.) This leads me to suspect that if I send the DNG file to a photo processor it will print the file without my edits. I am hoping that printing DNG files, rather than JPEG, will produce greater color and tonal fidelity. I have discovered no other reason for converting to DNG that is relevant to me. Is there a way to ensure that edits are properly saved to the saved DNG?

    I've been experimenting a bit with saving changes made to Canon 20D Raw files to DNG, but without success. When I open the saved DNG file with Apple's Preview, it displays the file without the changes.
    This is expected and normal. Most image previewers cannot read or understand the .xmp information created by Adobe Camera Raw.
    This leads me to suspect that if I send the DNG file to a photo processor it will print the file without my edits.
    If you can find a photo processor that handles DNG files, it is entirely possible that it will print the file without your edits, as you suspect. That's not because the edits aren't stored in there; that's because as far as I know, only Adobe software can read and make use of the edits from Adobe Camera Raw.
    If you need your edits for some external (non-PSE, non-Adobe) application, you probably need to create a .tif or .jpg.
    I am hoping that printing DNG files, rather than JPEG, will produce greater color and tonal fidelity. I have discovered no other reason for converting to DNG that is relevant to me. Is there a way to ensure that edits are properly saved to the saved DNG?
    A pixel that is Red 200, Green 123, Blue 13 should print the same whether that pixel is delivered in a DNG, .tif or .jpg. Of course, if you convert a photo to .jpg, that pixel may wind up with slightly different values, but if you choose high quality .jpg, I don't think the human eye can see the difference, and if it could, I suspect the difference would not be "color and tonal fidelity"; instead the JPG would show artifacts. If you are experiencing problems with "color and tonal fidelity", this may be due to the printer, or the color profile, or a couple of other issues.
    There has never been any claims that I am aware of (either here or at ElementsVillage.com) that edits are not properly saved to DNG. But the way to confirm that the edits have been properly saved it to close down PSE, and then re-open it and see if your edited photos show your edits. Similarly, your edits should also appear in other Adobe software (Lightroom, Photoshop). Under ACR preferences, there is an option to save your edits in a database or in .xmp file. Please make sure that .xmp file is selected.

  • Final cut pro x - Title changes are not saved!

    Dear Sirs,
    I have a big project I am working on in Final cut pro x that contains about 300 subtitles (created with the basic title tool), and now when I make text changes to these titles, quit the program and open the project again those changes are gone....!!! This is a serious problem for me, any help concerning this would be greatly appriciated.
    Thank you,
    Oded

    You might not have a compatible video card. It needs to be "OpenCL" compatible. What mac are you using, and what video card? This info is available using the "About this Mac" menu item; click "More Info" to get to the video info.

  • Language & Text changes are not saved

    I'm trying to change the default language on my MacBook. I dragged the target language to the top of the list in Language & Text, closed System Preferences, and logged out. When I logged back in, English was still the default language and the sort order had not changed in Language & Text. I made the change again, closed System Preferences and reopened it. English was still the default language. The sort order had not changed.
    I clicked the "Edit List..." button and deselected all but the two languages. When I closed and reopened System Preferences, all the original languages were displayed.
    I can make changes in all the other preference panels and have the changes retained. Just not in Language & Text.

    KHCrowley,
    Welcome to Apple's discussions.
    Try clearing your browser cache, and then take another look. The changes are most likely there.
    Mark

  • ITunes view columns - changes are not saved

    Hello there,
    When I make changes to the column size in the iTunes list view; like title, artist, album title ... it does not seem to save, regardless if I am on the iPhone list view, shared library list view, local music view, etc. When I close iTunes and open it again, it is often reset to the default settings. Where are these defaults settings defined? The default settings that it resets to, are those that came the way iTunes was first install, but how can I save these column size changes?
    Thanks for all and any replies.
    - Applies to my Windows iTunes and Mac iTunes.

    KHCrowley,
    Welcome to Apple's discussions.
    Try clearing your browser cache, and then take another look. The changes are most likely there.
    Mark

  • Template changes are not saved??

    Hi all I have a template with a table..
    I removed the borders for few columns and saved the template.
    When I reopened the template I still have borders...I removed the borders for like 10 times and also, saved the template with different names..STill the same issue.
    When I preview the output immediately after changing the borders, I see correct out put without borders.
    When I close and reopen the template, again I see borders...
    Please help me..
    Thanks!

    Hi,
    actually its not saving due to some problems in word.
    do as follow
    first open msword->create template save that in .rtf and ->remove border(select table in table properities select no borders)
    and then try i think it has to come.

  • Room template changes are not saved!!!

    Hi All,
    I have duplicated a standard SAP template "SAP_Project_Template_2".
    And changed the description  in General Tab and page permissions in Role Tabl and click Save button.
    It displayed the "Test Template has been saved" message.
    But when I open the template to edit I can't see those changes.
    What is the reason for this behaviour?
    Thanks
    Thruna Shanmuga

    Hi Thruna,
    we have the same behaviour. We are using EP 7.0 SP17.
    The only workaround we have found is to save the changes, make another change and save again (save twice).
    Hope been helpful,
    Best regards,
    Marco.

  • Need help with creating template. Changes are not going through to index.html page

    Hi all,
    I have an issue with my template that I am creating and also a question about creating template Regions (Repeating and Editable).
    Somehow my changes to my index.dwt are not changing my index.html page.
    Also my other question is: For my top navigation bar and left navigation bar links, do I need to select and define each individual button or link as Repeating/Editable Region? or can I just select the whole navigation bar (the one on the top) etc...
    Below are my steps for creating my template...I am kinda fairly new to using DW and this is my first attempt to making a template following the DW tutorial CD that came with DW CS3.
    I appreciate any help with this...regards, Dano
    -Open my index.html file
    -File/save as template
    -Save
    -update links - yes
    -Select Repeating and Editable Regions (I selected the whole top navigation bar and selected Repeating Region and Editable Region, same with the left side navigation links)
    -File close all
    -Open the index.dwt
    -Save as and selected the index.html and chose to overide it..
    When I make changes to my index.dwt it is not changing the index.html
    I feel that I am missing some important steps here.....
    Website address
    www.defenseproshop.com

    Figured out

  • FPE2 doc changes are not saved when C4EYE is reset via workflow

    Hello All,
        I'm utilizing event # 5504 in FQEvents (in FICA) to start a workflow.
    When a user sets a payment method in FPE2, I set the C4EYE and then explicitly create a custom event which starts my approval workflow. On saving the document changes, I get a message "document changes noted" (instead of the usual "document changed" message).
    The changes made in FPE2 are only seen as a 'planned change' button in FPE2 (on the 'change item' screen) with the old and new values and the change number associated with it. Also, the check reason has been applied. Incidentally, all of the above (except ofcourse the event and start start of workflow ) happens if I all I do is merely set the check reason (C4EYE) in event 5504.
    Meanwhile, the workflow does its thing, determines agents and gets the approval and on approval, it calls  FKK_C4EYE_RESET passing the document # and change # to reset the Check reason. Despite the workflow completing successfully and resetting the check reason, my newly added changes (such as the payment method etc) are blank - meaning any changes made in FPE2 have been lost. I don't have the 'planned change' button either.
    Incidentally, to eliminate any problems with the custom-event-workflow logic, I also turned off the event and the workflow - just left the logic to set the C4EYE check reason to '01' in the 5504 fqevent in case a payment method is set. I set the payment method in FPE2 and 'saved' the change which set the check reason.
    I then ran FM FKK_DOCUMENT_CHANGE_FROM_ID passing the doc #, change number (from CDHDR) and user name. All it did was to reset the check reason but did not set the payment method (or any other changes) back.
    How can I apply the FPE2 changes (including addition of the payment method) back once my approval workflow resets the check reason?

    Folks, Sorry to have bothered you. The document change had multiple change numbers for each of the changes and I was apparently passing the incorrect CDHDR change number to the FM "FKK_DOCUMENT_CHANGE_FROM_ID" which caused it to not reset the changes. Now, I'm able to see the payment method and any other changes restored back once the C4EYE is reset.
    Thanks for your time!!

Maybe you are looking for

  • How to Restrict Master data in value help screen for a user???URGENT

    Hello Gurus, I have a requirement.When a authorized user logins to view the report, he should see only list of customers assigned to that user in the value help screen, instead of displaying whole master data.and the data is displayed perfectly fine

  • Javascript in Acrobat X

    There is no such thing as a stupid question, right? So here goes--Does Javascript automatically come with Acrobat or is it something I have to download or buy to use? And if so, what exactly (name, version) do I need to download or buy for use in Acr

  • How to delete X61 Service Partition?

    What's the cleanest procedure for removing the Service Partition on my X61? I'm running Vista Business 32. I don't work for Lenovo. I'm a crazy volunteer! Solved! Go to Solution.

  • Apple TV good option for renting movies?

    I'm thinking of getting the Apple TV and one of the things I'd be looking to do on it would be to rent movies.  Is it a good option for renting movies?  If so, is there a huge selection of rentals?  Any help or advice would be appreciated.  Thanks.

  • Create user and assign role in CUA context

    Hi, i'm in CUA context ; in ABAP, when i use the FM BAPI_USER_CREATE1 the new user is well created in all system now i want to assign new roles to this user. Which FM can i use and especially can i assign role to user in a client system ? Thanks for