Prevent navigation when error occurs

I have a use case where an error may occur during the INVOKE_APPLICATION phase. If it does, I need to stay on the same page and show the user the error. I am using a PhaseListener to detect the error (in the afterPhase of the INVOKE_APPLICATION phase). If there is an error, I show it to the user by calling FacesContext.getCurrentInstance().addMessage(null, errorMessage);. This works. The problem is, it continues navigation to the next view. For example, if the user clicked the Save button and that button returns to the previous page, I want the user to stay on this page if there is an error. I tried calling FacesContext.getCurrentInstance().renderResponse() to bypass the navigation, but that didn't work. Then I tried calling FacesContext.getCurrentInstance().responseComplete();. This did bypass navigation, but the error didn't show up for the user to see.
This seems like a common use case, so I must be missing some obvious way to do this.
Thanks for your help!
Cheers,
Mike

Hi,
What kind of error? When does it happen exactly? I doubt PhaseListener will be the best solution. Assuming it is for the purpose of this post, however, it would be:
private static final ThreadLocal<UIViewRoot> root = new ThreadLocal<UIViewRoot>();
public void beforePhase(PhaseEvent ev)
    root.set(ev.getFacesContext().getViewRoot());
public void afterPhase(PhaseEvent ev)
    try
        if (detectError())
            FacesContext context = ev.getFacesContext();
            // Add message
            UIViewRoot originalRoot = root.get();
            UIViewRoot newRoot = context.getViewRoot();
            if (newRoot != originalRoot)
                context.setViewRoot(originalRoot);
            // Another option would be to always call context.setViewRoot(originalRoot); as if it's the same then it won't have any effect.
    finally
        root.remove();
}Regards,
~ Simon

Similar Messages

  • Project View does not show the Path and Filename when errors occur

    I have the problem, that errors occur in the project but in the colum that shows the "Resource" I can only see the "Project Name". Normally it should show the filename. The "Path Column" is completely empty. The "Location column" shows the correct line number in the file (but unfortunately I have no Idea which file). Double clicking on the row does not do anything.
    I'm sure it had worked, but no idea since when this problem occurs. I am using Flash Builder 4.7.

    I was able to resolve this by repairing permissions, even though no permissions error was listed specifically for that file.
    I could also have recovered it through Time Machine, but I'm interested in knowing how not to have this happen again!
    I was afraid of rebooting and possibly losing track even of the ghost.
    I did not try EasyFind - I'll keep that in mind next time.
    Thanks for all the comments.

  • Form Crashes when error occured !!!

    Hi All ,
    we have an Application Developed on 10g iDS , and Deplyed on Linux suse , but a Strange behavior is coming up ; when any form specific error occured on the form such as (Can't insert null , not allowed value for list item ...) the Forms Services Crashs given the famous Java error .. does any one facing this too , how to solve it ? is there a patch or something , please advise , thanks

    Yea well, unless you work hard and long enough to be able to fix everything...
    Because I don't think that importing tables from other documents is the best tool on LiveCycle... even exporting data from PDF to Excel Spreadsheet...
    Is the table you trying to import is complex or simple?

  • Lost all notes when error occurred while updating

    I was updating my ipad to IOS 5 when an error occurred.
    I was able to restart the update and complete it, but I lost all of my notes and contacts!!!
    Please Help!!!

    Brent
    You’re having two problems there, I think. One is with the disk. You’re not going anywhere with the other until you can get that to mount.
    Assuming you can, it sounds like the database has been damaged:
    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Regards
    TD

  • Cancel Navigation when error

    Hi everybody,
    I am developing a WD with a tabstrip.
    In each tab, I have a table. I need to check several conditions in  the attributes on the tabs. For example end_date can´t be previous of begin_date. When the user type one of this errors. I would like to stop de navigation between tabs until the user correct it.
    I have tried to use the function report_t100_message putting the parameter cancel_navigation with the value abap_true but I still navigate between tabs.
    I have a similar problem with required attributes. I used the function cl_wd_dynamic_tool=>check_mandatory_attr_on_view. Empty required input fileds are mark in red but I can navigate.
    Any idea?
    Thankssss!

    Hi Lorena.
    Switching the tabs of the tabstrip is not a navigation like navigation using
    outbound plugs. Use the onSelect action handler of the tab strip to check your
    values of the actual tab before the switch takes place.
    But you have to set the selectionChangeBehaviour to manual. In this case, if the
    user selects a tab, the onSelect method is called before the new tab is set. Then
    perform your check and if everything is ok you have to set the selected tab by
    yourself.
    Just have a look here on the :
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/f0/e5a8411fdbcc46e10000000a155106/content.htm">help site</a> for more info.
    Hopes this helps.
    Cheers,
    Sascha

  • Html:text converting the chinnes letters to unicode when error occurs .....

    Hi all
    Thank you to every one for giving support who are really needs.....
    Here i have a small query that goes like this
    Iam converting a web page from english version to chinees version
    This is a struts application
    In one jsp page i have 2 text fileds like name and descrption
    Here iam entering chinees charaters into these text boxes(these text boxes are <html:text>)
    when both are filled and submit the form it is working fine.if
    i missed one field... the validation.xml file will catching this and displaying the error mesage in the corresponding jsp page. At this time the values which are enter in this text fileds are converting to unicode so this is my problem i don't want to happen like this. so please can you help me to come out this problem ....this is some urget for me..
    Thanx in advance
    Srikanth

    I solve This problem
    here the only sol i found is that
    change the html:text to plain html text (i.e <input type="text">)
    the code in jsp page like this
    <input type="text" name="name" value="<bean:write name="formName which you are using to get the property" property="name(property from FormBean" filter="false"/>
    I hope this will solve any one of your problems......
    Thanking you
    Srikanth

  • Errors occurred during the extraction(Generic Extraction)

    Hi All,
    I am facing problems in solving BW Production issues .
    The following are the Problem  details.
    Actually there are two Datasources connected to BW System  One is from R/3 and other is from CRM.
    The problem is with Delta  Request which has been failed in ODS while uploading Data from R/3 in Background Scheduling but other DataSource is loading perfectly into BW System.
    Its a generic extraction created based on View.
    When i checked BW Side the error is displaying as follows:                                                                                Error occurred in the Data Selection.
         Error occurred in the Source System.
            No Data has been extracted from R/3 into BW.
    But when i checked R/3 (Source system)
    Firslty i executed RSA7  for checking Delta Records.  The records are 0 for the Datasource.
    I executed RSA3 with Full UpdateMode, the number of records extracted were displayed
    when i checked with Delta Update Mode its giving the following error.
    Errors occurred during the extraction
    Message no. RJ 012
    Diagnosis
    There was an error during the extraction phase of the extractor. An exception 'error_passed_to_mess_handler' has been triggered.
    Procedure
    Check the function module and the call from the extractor check program
    Messages from source system
    see also Processing Steps Request
    These messages are sent by IDoc from the source system. Both the extractor itself as well as the service API can send messages. When errors occur, several messages are usually sent together.
    From the source system, there are several types of messages that can be differentiated by the so-called Info-IDoc-Status. The IDoc with status 2 plays a particular role here; it describes the number of records that have been extracted in a source system and sent to BW. The number of the records received in BW is checked against this information.
    Regards,
    Chakri
    Message was edited by: Chakri
    Message was edited by: Chakri

    Hi,
    If Idoc are already sent to BW then goto Monitor in BW and in Details tab note the Idoc no in OLTP, and goto R?3 and BD20 tcode and give the Idoc no and execute it.And see the records are came or not in BW.
    Thanks
    Reddy

  • HTTP 404 error occurs randomly when navigating to HTMLDB pages

    Oracle support have asked me to raise this issue here (ref TAR 4248522.999).
    Environment:
    Windows 2003 server
    Oracle DB version 10.1.0.2.0
    Oracle HTMLDB v 1.6.0.00.87
    Problem:
    When navigating to an HTMLDB page using a list item, an HTTP 404 error occurs randomly. There is no error in the database alert log BUT the following error is reported in the Apache log file which is recorded whenever the HTTP 404 error occurs:
    [Thu Jan 20 09:58:48 2005] [error] [client 10.25.22.163] [ecid: 1106215128:10.25.22.53:3576:3352:23759,0] mod_plsql: /pls/htmldb/f HTTP-404 ORA-00001: unique constraint (FLOWS_010600.WWV_FLOW_DATA_IDX1) violated
    ORA-06512: at "FLOWS_010600.WWV_FLOW_DISP_PAGE_PLUGS", line 180
    ORA-06512: at "FLOWS_010600.WWV_FLOW_DISP_PAGE_PLUGS", line 1298
    ORA-06512: at "FLOWS_010600.WWV_FLOW_DISP_PAGE_PLUGS", line 345
    ORA-06512: at "FLOWS_010600.WWV_FLOW", line 8779
    ORA-06512: at "FLOWS_010600.F", line 218
    ORA-06512: at line 10
    A list item is being used for navigation. It has been setup with a target type of 'Page in this Application' and a Page number of a page in the application. The checkbox 'reset pagination for this page' has been
    checked. The problem occurs when launching the application directly in a new browser or
    when running the application using the Application Builder's run application.
    The error occurs intermittently.

    I'm from support , The customer has open an SR
    TAR:4248522.999 to this issue.
    He updated the SR with following.
    I have not been able to re-produce this problem with the sample application.

  • Operation could not be completed because an error occured when creating frame 56 (error-1)

    Hi
    I'm trying to export a movie in motion but I keep getting the error "Export Failed. The operation could not be completed because an error occured when creating frame xx (error-1)".  I've tried some of the other suggestions such as preventing app nap, changing the codec used and I've uninstalled, rebooted, and reinstalled motion.  Nothing has worked so far, and it's driving me crazy!
    Can anyone suggest something?  I'd be most grateful.
    Thanks

    Hi GFXZen, thanks for your reply.
    I actually solved by re-exporting the source video, but I'll get to that (to skip, see TL;DR).  In case it helps anybody else I'll answer your questions first.
    The only element present at the majority of the failure points was another video, so there weren't any others to turn off.  Though when I turned off the video and exported, it actually worked (this is what led me to evaluate the source video rather than the motion project).
    Adjusting the export settings did not help me much, I tried h.264, same as source (which  was a .mov), and ProRes 4444: failed.  Tried as a draft: failed.  I didn't want to mess with any of the other render settings because to be honest, I'm not a video editor, so my experience with all of this is severely limited.
    I forgot to mention in the first post that I'd already tried the export on a different machine (one far newer and more powerful): failed.  Dispite googling image sequences, I wasn't really sure how this related to the video, or how to set things up so the audio was preserved, so I skipped that.
    TL;DR
    According to what I googled, it sounded like the video needed to be reindexed/exported/whatever, so I downloaded a program MPEG Streamclip (http://www.squared5.com/svideo/mpeg-streamclip-mac.html) 1.93b8 (as  the stable doesn't support Lion upward).  It's completely free, and when I ran it, worked first time.  I simply opened the video and exported to quicktime, and changed the compression to Apple TIFF.  That was it. 
    There was one unusual thing though, the file I started with was just over 1GB, but the end result was just over 4GB - but visually I couldn't see any loss in quality at all, and it worked in the motion project - which is really all that matters.
    Hope this helps somebody.

  • HP Laserjet Pro MFP M125A " A Fatal Error Occured Preventing Product Use" on Window XP SP3

    Dear Friends,
    I really need your help on this issues, recently company that i been working buy 19 Unit of HP Laserjet Pro MFP M125A printer to be install at our 19 branches. All of our branches is using Window XP SP3 and the spec is exceed the minimum requirement stated at the box of the HP Printers which means by rights, it should be no problems.
    However, I sent and setup the printer at 4 branches only 1 is a success. others 3 centre is showing the same errors which is A Fatal Error Occured Preventing Product Use. I been trying to install using original CD provided by HP and driver provided at HP Support also given the same errors. The 1 Centre that OK PC spec is almost the same as the others 3 and all using default programs and software. So i dont knows what really is the problem.
    This is the things i have done in hoping to successfully install the driver but WITH NO SUCCESS:
    Clear temp file, disk cleanup, defragment disk and restart PC.
    Reinstall Windows SP3 and restart PC.
    Install basic driver only and using control panel > device and printer > add printer (Select Driver Manually). (See Pic Below)
    Repair windows using original windows XP SP3 CD.
    Re-Check for USB.INF file.
    Repair Registry with reg cure.
    Uninstall USB support and etc (Google), then re-install the printers.
    Uninstall Antivirus, disable all startup and services.
    Install using FULL DRIVER, BASIC DRIVER AND DRIVER MANUAL.
    Sometime when running the installer, it will prompt the below error signature and HP installer will loading quite long and then crash, but others PC don't have this errors, it straight away to the installation menu until DETECTING PRINTER until 99% and shows errors "A Fatal Error Occured Preventing Product Use".
    It seems that almost everythings i try cannot make the printer driver to be install. However, the SCAN driver is install successfully. Currently the printer only can PHOTOCOPY AND SCAN, without being able to print.
    Please anyone which facing similiar issues to HELP ME. anythings i can do, to install the printer DRIVER.
    THANKS!

    Hi @gendit ,
    I see that you are having issues installing several Laserjet Pro MFP M125A printers on several Windows XP computers. You are getting "A Fatal Error Occured Preventing Product Use". I can help you with this.
    What version of .NetFrameworks do you have? Check Your DOTNET.
    You might have to run the Windows Updates. I would update the .Netframeworks to 4.0.
    I believe HP software piggy backs Internet Explorer. Should have at least Internet Explorer 6.0.
    Please try these steps, most likely the wrong driver is getting installed, giving you the Fatal error.
    Disconnect the USB cable.
    Uninstall the printer software from the CD.
    Run the software again, immediately after connecting the USB cable, follow this document to update the driver before it errors out again. A Fatal Error Displays During Software Installation.
    If the issue persists, here is a document with some different steps to try.
    A 'Fatal Error' (MSI error) Displays on the Computer During HP Software Installation in Windows.
    Please provide in detail the results if you are still having issues.
    Have a wonderful day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • A fatal error occurred preventing product use, LaserJet Pro 200 color MFP M276nw

    When trying to install the full printer software suite, as soon as I click the button to install after the .exe is extracted, I get an alert window with, "A fatal error occurred preventing product use." No error code, just an option to close the dialog.  I have read all the related support topics and similar threads and tried all the solutions to no avail.  Pasted below is the detailed error log. Any help at all would be much appreciated, Happy New Year!
    Version=1
    EventType=CLR20r3
    EventTime=130330861946634368
    ReportType=2
    Consent=1
    UploadTime=130330861947102369
    ReportIdentifier=b741489f-732d-11e3-ad06-78e7d1894a6a
    WOW64=1
    Response.BucketId=3240107344
    Response.BucketTable=5
    Response.type=4
    Sig[0].Name=Problem Signature 01
    Sig[0].Value=hpbcsiinstaller.exe
    Sig[1].Name=Problem Signature 02
    Sig[1].Value=5.0.3.8039
    Sig[2].Name=Problem Signature 03
    Sig[2].Value=4fe20fe8
    Sig[3].Name=Problem Signature 04
    Sig[3].Value=hpbcsiInstaller
    Sig[4].Name=Problem Signature 05
    Sig[4].Value=5.0.3.8039
    Sig[5].Name=Problem Signature 06
    Sig[5].Value=4fe20fe8
    Sig[6].Name=Problem Signature 07
    Sig[6].Value=e
    Sig[7].Name=Problem Signature 08
    Sig[7].Value=1e
    Sig[8].Name=Problem Signature 09
    Sig[8].Value=System.TypeInitialization
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.768.3
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=1033
    UI[2]=C:\HP_LaserJet_200_color_MFP_M276\Installer\hpbcsiInstaller.exe
    UI[3]=HP Installer has stopped working
    UI[4]=Windows can check online for a solution to the problem.
    UI[5]=Check online for a solution and close the program
    UI[6]=Check online for a solution later and close the program
    UI[7]=Close the program
    LoadedModule[0]=C:\HP_LaserJet_200_color_MFP_M276\Installer\hpbcsiInstaller.exe
    LoadedModule[1]=C:\Windows\SysWOW64\ntdll.dll
    LoadedModule[2]=C:\Windows\SYSTEM32\MSCOREE.DLL
    LoadedModule[3]=C:\Windows\syswow64\KERNEL32.dll
    LoadedModule[4]=C:\Windows\syswow64\KERNELBASE.dll
    LoadedModule[5]=C:\Windows\system32\apphelp.dll
    LoadedModule[6]=C:\Windows\AppPatch\AcLayers.DLL
    LoadedModule[7]=C:\Windows\syswow64\SspiCli.dll
    LoadedModule[8]=C:\Windows\syswow64\msvcrt.dll
    LoadedModule[9]=C:\Windows\syswow64\RPCRT4.dll
    LoadedModule[10]=C:\Windows\syswow64\CRYPTBASE.dll
    LoadedModule[11]=C:\Windows\SysWOW64\sechost.dll
    LoadedModule[12]=C:\Windows\syswow64\USER32.dll
    LoadedModule[13]=C:\Windows\syswow64\GDI32.dll
    LoadedModule[14]=C:\Windows\syswow64\LPK.dll
    LoadedModule[15]=C:\Windows\syswow64\USP10.dll
    LoadedModule[16]=C:\Windows\syswow64\ADVAPI32.dll
    LoadedModule[17]=C:\Windows\syswow64\SHELL32.dll
    LoadedModule[18]=C:\Windows\syswow64\SHLWAPI.dll
    LoadedModule[19]=C:\Windows\syswow64\ole32.dll
    LoadedModule[20]=C:\Windows\syswow64\OLEAUT32.dll
    LoadedModule[21]=C:\Windows\system32\USERENV.dll
    LoadedModule[22]=C:\Windows\system32\profapi.dll
    LoadedModule[23]=C:\Windows\system32\WINSPOOL.DRV
    LoadedModule[24]=C:\Windows\system32\MPR.dll
    LoadedModule[25]=C:\Windows\system32\IMM32.DLL
    LoadedModule[26]=C:\Windows\syswow64\MSCTF.dll
    LoadedModule[27]=C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll
    LoadedModule[28]=C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll
    LoadedModule[29]=C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll
    LoadedModule[30]=C:\Windows\assembly\NativeImages_v2.0.50727_32\mscorlib\9a6c1b7af18b4d5a91dc7f8d6617522f\mscorlib.ni.dll
    LoadedModule[31]=C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorsec.dll
    LoadedModule[32]=C:\Windows\syswow64\WINTRUST.dll
    LoadedModule[33]=C:\Windows\syswow64\CRYPT32.dll
    LoadedModule[34]=C:\Windows\syswow64\MSASN1.dll
    LoadedModule[35]=C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.18201_none_ec80f00e8593ece5\COMCTL32.dll
    LoadedModule[36]=C:\Windows\system32\CRYPTSP.dll
    LoadedModule[37]=C:\Windows\system32\rsaenh.dll
    LoadedModule[38]=C:\Windows\syswow64\imagehlp.dll
    LoadedModule[39]=C:\Windows\system32\ncrypt.dll
    LoadedModule[40]=C:\Windows\system32\bcrypt.dll
    LoadedModule[41]=C:\Windows\SysWOW64\bcryptprimitives.dll
    LoadedModule[42]=C:\Windows\system32\GPAPI.dll
    LoadedModule[43]=C:\Windows\system32\cryptnet.dll
    LoadedModule[44]=C:\Windows\syswow64\WLDAP32.dll
    LoadedModule[45]=C:\Windows\system32\SensApi.dll
    LoadedModule[46]=C:\Windows\system32\uxtheme.dll
    LoadedModule[47]=C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorjit.dll
    LoadedModule[48]=C:\Windows\system32\RpcRtRemote.dll
    LoadedModule[49]=C:\HP_LaserJet_200_color_MFP_M276\Installer\hpbcsiCommonTools.dll
    LoadedModule[50]=C:\HP_LaserJet_200_color_MFP_M276\Installer\NLog.dll
    LoadedModule[51]=C:\Windows\system32\VERSION.dll
    LoadedModule[52]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System\5d22a30e587e2cac106b81fb351e7c08\System.ni.dll
    LoadedModule[53]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System.Configuration\29f3ae8d313e62b4daed1107ccd29f9f\System.Configuration.ni.dll
    LoadedModule[54]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System.Xml\a9852a75edb6ed7cd5271b05519f5b56\System.Xml.ni.dll
    LoadedModule[55]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System.Drawing\5aa44bce7933e4de09d935848f868a4b\System.Drawing.ni.dll
    LoadedModule[56]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System.Windows.Forms\ef0a534be135cd8f0d99d938d8b1814a\System.Windows.Forms.ni.dll
    LoadedModule[57]=C:\Windows\assembly\NativeImages_v2.0.50727_32\System.Data\764054efc88f51b54c8d7e44df26b671\System.Data.ni.dll
    LoadedModule[58]=C:\Windows\assembly\GAC_32\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll
    LoadedModule[59]=C:\Windows\syswow64\WS2_32.dll
    LoadedModule[60]=C:\Windows\syswow64\NSI.dll
    State[0].Key=Transport.DoneStage1
    State[0].Value=1
    FriendlyEventName=Stopped working
    ConsentKey=CLR20r3
    AppName=HP Installer
    AppPath=C:\HP_LaserJet_200_color_MFP_M276\Installer\hpbcsiInstaller.exe
    ReportDescription=Stopped working

    Did you try to uninstall every .NET and then try again? Follow this guide: 
    http://knowledge.autodesk.com/support/autocad/troubleshooting/caas/sfdcarticles/sfdcarticles/How-to-...

  • Purchased Light Room 5, installed, registered .. but keep getting this screen "An error occurred when attempting to change modules. ... OK" ?? WTF? ?

    Installed Light Room 5.2 from Disc on my mac os x (latest, updated version)
    But keep getting this "An error occurred when attempting to change modules.. OK" no other options/selection and of course if I click OK ... it crashed out ...
    Can anyone help?
    For such a big company .. there isn't any chat option to get to someone to talk to  !!!

    Just because you are the only user on the computer doesn't mean you are the administrator.
    Also, the fact that you are being asked to re-enter your serial number each time you start means that it is not being remembered because something is either preventing it from being written to you disk or (less likely) something is erasing it. This does suggest that you lack certain permissions to make changes to your computer. Not only to save your serial number, but to have access to the Lightroom files needed to change modules (they are just plug-ins within Lightroom).
    Try creating a new user account and run Lightroom from there (making sure that it is part of the Administrator group).
    To get to chat support, you have to choose the options:

  • TS3833 I am receiving this error when syncing my ipod: iTunes could not copy "song name" to the iPod "name" because an unknown error occurred (-50).  I am using iTunes version 10.6.3.25. Why?

    I am receiving this error when syncing my ipod: iTunes could not copy "song name" to the iPod "name" because an unknown error occurred (-50).  I am using iTunes version 10.6.3.25. Why?

    Right click the filename that won't download and selsct 'Get Info'. Look at the file path, does it have a //?// in it? That is a problem with Amazon downloads that prevent iTunes from finding the file. Use 'Add Folder' to add the album to your library and try syncing it again

  • Unknown error occurred (-23) when trying to update to ios 5

    When I tried to update my iphone to ios5, I get the error message: There was a problem downloading the software for the iphone. An unknown error occurred (-23).
    I have already updated itunes to the newest ver 10.5 already and I never had any issues updating my iphone 4 to the newest IOS previously.
    Anyone has any idea how to resolve this issue? Thanks.

    I just got off the phone with an apple support assistant pertaining to error -23. For myself, it is due to internet settings that my ISP provides that prevents the upgrade. (Are you in Singapore with the ISP Singtel? The apple support assistant specifically mentioned Singtel users as having the -23 error.) The apply support assistant adviced me to wait out for 2 business days and then see if I can upgrade. I hope this is the case for you too.
    Otherwise, error -23 means either a hardware error or improperly configured settings, which shouldn't be the case if you have itunes 10.5 and the latest osx build.

  • "Error occurs when loading transaction data from other model" - BW loading into BPC

    Hi Experts,
    I'm having a problem with my data loading from BW, using the standard Load InfoProvider Selections data manager package.
    If I run for a period without data it succeeds (with warning) but if there is data to be extracted I get the following error:
    Task name CONVERT:
    No 1 Round:
    Error occurs when loading transaction data from other model
    model: AIACONS. Package status: ERROR
    As it runs ok when there isn't data it appears there is something preventing the movements of data out of the cube itself, rather then a validation issue.
    Has anyone encountered similar or have any ideas as to the problem?
    Best,
    Chris

    Hi Vadim,
    It's not specific to the transformation file as I have tried with others for the same BW cube and get the same result.
    We get a warning when we try and validate the transformation file:
    "Error occurs when loading transaction data from other model".
    This only appears in the validation pop up and doesn't throw up any warnings about the transformation file itself.  The validation log says:
    Validate  and Process Transformation File Log
    Log creation time
    3/7/2014 16:09
    The result of validation of the
      conversion file
    SUCCESS
    The result of validation of the
      conversion file with the data file
    FAIL
    Validation Result
    Validation Option
    ValidateRecords = NO
    Message
    Error occurs when loading transaction data from other model
    Reject List
    I can't find any errors anywhere else.
    Best,
    Chris

Maybe you are looking for

  • Scanning with HP LJ M1319f MFP

    Hi, i have multi functional printer HP LJ M1319f and i can't use scan. In answer from Apple gave information about testing scan solutions of this printer: HP Mac Architect Re: HP LaserJet M1319Ff MFP won't scan     Oct 21, 2009 1:34 AM    (in respons

  • Select count from large fact tables with bitmap indexes on them

    Hi.. I have several large fact tables with bitmap indexes on them, and when I do a select count from these tables, I get a different result than when I do a select count, column one from the table, group by column one. I don't have any null values in

  • HT202358 can't open my iPhoto it says i need the upgrader did that and it still won't open.

    can't open my iPhoto it says i need the upgrader did that and it still won't open.

  • Qosmio x300 and Win7 - FN buttons dont work

    I reinstalled Windows 7 and now the FN buttons dont work. I have installed the newest version of VAP, the flash card utility is running. So I have no idea. Did I forget to install something? Or is there a tool who installs all drivers for my Qosmio x

  • Transfer of old EWA Reports

    Hello, does anybody know a way how to transfer old EWA reports from one solution manager into another ? I've checked the "save services" button but I'm not able to put it into a transport request within this "archive queue". Any hint is highly apprec