Upgrade Bug from 3.0.1 to 4.0.1 - syntax not accepted now

Hi,
I have just upgraded to Apex 4.0.1 (full installation from previous installed 3.0.1) in order to add the Ajax item functionality to my existing 3.0.1 app and getting the following really weird syntax error when I try to build an existing 'On Submit - Before Computations and Validations' process (get error just by clicking Apply Changes without making any modifications to it).
The error is flaggged for the line below (which constructs a report column title) and subsequent references where APEX 4 doesn't seem to build the &P11_PCT_DRIFT1. syntax which previously worked? Bit lost on this as none of the items have changed at all here it seems to have been caused purely by the upgrade. I also tried to Apply Changes in Mozilla as Apex 4 requires you upgrade IExplorer to 7 however both browsers show the same issue. Any help would be appreciated. Thanks.
:P11_LTG1_TITLE := 'LTG ' || &P11_PCT_DRIFT1. || '% drift';
P11_LTG1_TITLE is Hidden
P11_PCT_DRIFT1 is a Select List
1 error has occurred
ORA-06550: line 71, column 30: PLS-00103: Encountered the symbol "&" when expecting one of the following: ( - + case mod new null <an identifier> <a double-quoted delimited-identifier> <a bind variable> continue avg count current max min prior sql stddev sum variance execute forall merge time timestamp interval date <a string literal with character set specification> <a number> <a single-quoted SQL string> pipe <an alternatively-quoted string literal with character set specification>
declare
cursor col_titles_cur(column_name VARCHAR2) is
select col_title, order_by
from display_column_titles_v
where col_name = column_name;
col_titles_rec col_titles_cur%ROWTYPE;
tempVal VARCHAR2(2000):= :P11_DISPLAY_COLUMN_ORDER;
round_selected NUMBER := instr(:P11_DISPLAY_COLUMN_ORDER, 'bfr.round');
show_summary_only NUMBER := instr(:P11_DISPLAY_COLUMN_ORDER, 'summary');
currVal VARCHAR2(2000):= '';
field_pos NUMBER := 0;
begin
:P11_COURT := :P4_COURT;
if :P11_COURT != '-1' then
:P11_COURT_DISPLAY := :P4_COURT_DISPLAY;
-- :P11_COURT_IN := replace(:P11_COURT_IN_PARAM,':',',');
-- :P11_COURT_IN := '' || replace(:P11_COURT,':',''',''') || '';
-- :P11_COURT_PARAM_IN := '' || replace(:P11_COURT_PARAM_IN,':',''',''') || '';
else
:P11_COURT_DISPLAY := '- All Courts -';
end if;
:P11_SUBMIT_COUNT := to_char(2);
:P11_COL1_TITLE := 'null';
:P11_COL2_TITLE := 'null';
:P11_COL3_TITLE := 'null';
:P11_COL4_TITLE := 'null';
:P11_COL5_TITLE := 'null';
:P11_COL6_TITLE := 'null';
:P11_COL7_TITLE := 'null';
:P11_COL8_TITLE := 'null';
:P11_COL9_TITLE := 'null';
:P11_COL10_TITLE := 'null';
:P11_COL1_VALUE := 'null';
:P11_COL2_VALUE := 'null';
:P11_COL3_VALUE := 'null';
:P11_COL4_VALUE := 'null';
:P11_COL5_VALUE := 'null';
:P11_COL6_VALUE := 'null';
:P11_COL7_VALUE := 'null';
:P11_COL8_VALUE := 'null';
:P11_COL9_VALUE := 'null';
:P11_COL10_VALUE := 'null';
:P11_COL_ROUND_ID_VALUE := 'null';
:P11_COL1_GROUPBY := 'null';
:P11_COL2_GROUPBY := 'null';
:P11_COL3_GROUPBY := 'null';
:P11_COL4_GROUPBY := 'null';
:P11_COL5_GROUPBY := 'null';
:P11_COL6_GROUPBY := 'null';
:P11_COL7_GROUPBY := 'null';
:P11_COL8_GROUPBY := 'null';
:P11_COL9_GROUPBY := 'null';
:P11_COL10_GROUPBY := 'null';
:P11_COL_ROUND_ID_GROUPBY := 'null';
:P11_COL1_ORDERBY := 'null';
:P11_COL2_ORDERBY := 'null';
:P11_COL3_ORDERBY := 'null';
:P11_COL4_ORDERBY := 'null';
:P11_COL5_ORDERBY := 'null';
:P11_COL6_ORDERBY := 'null';
:P11_COL7_ORDERBY := 'null';
:P11_COL8_ORDERBY := 'null';
:P11_COL9_ORDERBY := 'null';
:P11_COL10_ORDERBY := 'null';
:P11_LTG1_TITLE := 'LTG ' || &P11_PCT_DRIFT1. || '% drift'; -- *** error flagged for this line, and following 8 lines if this is commented out ***
:P11_LTG2_TITLE := 'LTG ' || &P11_PCT_DRIFT2. || '% drift';
:P11_LTG3_TITLE := 'LTG ' || &P11_PCT_DRIFT3. || '% drift';
:P11_LTB1_TITLE := 'LTB ' || &P11_PCT_DRIFT1. || '% drift';
:P11_LTB2_TITLE := 'LTB ' || &P11_PCT_DRIFT2. || '% drift';
:P11_LTB3_TITLE := 'LTB ' || &P11_PCT_DRIFT3. || '% drift';
:P11_DTB1_TITLE := 'DTB ' || &P11_PCT_DRIFT1. || '% drift';
:P11_DTB2_TITLE := 'DTB ' || &P11_PCT_DRIFT2. || '% drift';
:P11_DTB3_TITLE := 'DTB ' || &P11_PCT_DRIFT3. || '% drift';
if show_summary_only <= 0 then -- do all routine allocating columns only if a summary isnt in selected shuttle list
--

Thanks very much.
Also have an issue relating to forming an IN CLAUSE dynamically within an items LOV definition when using the new Cascading LOV Parent Item(s) functionality.
I dont really understand and cant find examples of how you reference the multiple values returned from a multiselect list parent within the IN CLAUSE of a child LOV definition or the syntax.
Wondered how would the following Child LOV definition look synctactically for both string values returned from the parent (maybe you have to insert quotes around each of the individual returned strings and replace colons with commas?) and also for numeric values returned from the parent?
select a,b .... where col in (PARENT MULTI LOV MULTIPLE VALUES RETURNED)
I have a parent Multiselect LOV P4_SERIES which filters another Multiselect LOV P4_SERIES_CHILD and I was previously forming the in clause for the child LOV, P4_SERIES_IN, in a Submit Process by replacing the colons with commas and quotes surrounding each comma then using this syntax to get the IN CLAUSE .... series in ('&P4_SERIES_IN.'). An example of how this breaks down is -
P4_SERIES parent multiselect result string1:string2:string3
Submit Process contained statement: :P4_SERIES_IN := '' || replace(:P4_SERIES,':',''',''') || '';
After submit process P4_SERIES_IN in clause part formed as string1','string2','string3
The child LOV, P4_SERIES_CHILD, definition is
select .... where (series in ('&P4_SERIES_IN.') or :P4_SERIES = '-1')
which when substituting in P4_SERIES_IN parses as
select .... where (series in ('value1','value2','value3') or :P4_SERIES = '-1')
With the new Cascading LOV Parent Item(s) functionality I am hoping to move the child LOV 'IN CLAUSE' formulation directly in the LOV definition instead of the Submit Process
as the Submit Process will no longer be needed because the change of parent lov will cause the child lov SQL to be called to filter its values. The main issue I dont understand is how to form the IN CLAUSE syntactically to get the equivalent of the above. I only got this to work experimentally in the first place apologies for my newness to this syntax and lack of understanding.
Need to combine
select .... where (series in ('&P4_SERIES_IN.') or :P4_SERIES = '-1')
with
:P4_SERIES_IN := '' || replace(:P4_SERIES,':',''',''') || '';
to give
select .... where (series in ('string1',string2,'string3') or :P4_SERIES = '-1')
I also have a requirement for numeric ids returned from a different parent lov into another child lov which you would presume might be done with (note ',' instead of ''',''')
:P4_PARENT_IN := '' || replace(:P4_PARENT,':',',') || '';
to give child lov definition
select .... where (numcol in (1,2,3) or :P4_PARENT = '-1')
This doesnt seem to work for me so the syntax to achieve this is not clear to me.
Thanks

Similar Messages

  • I just upgraded OS from 10.4.1 to Snow Leopard 10.6.8. Now when I tried to open Reason 4 it asks for me to insert a disc and prompts me to enter my ID for permission. What can I do?

    I just upgraded OS from 10.4.1 to Snow Leopard 10.6.8. Now when I tried to open Reason 4 it asks for me to insert a disc and prompts me to enter my ID for permission. What can I do?

    First off, you can't have upgraded from 10.4.1, as that won't run on a MacBook. 10.4.4 is minimum.  10.4.10, and 10.4.11 are different from 10.4.1.   
    Secondly, it appears Reason 4.0.1 is needed for 10.6:
    http://www.propellerheads.se/products/reason/
    There may be other upgrades on:
    http://snowleopard.wikidot.com/
    Check with the developers in question if they are aware of any bugs in the upgrade process.

  • I have moved from the UK to New Zealand and Itunes will not accept my new Zealand bank details, as a result nothing will work on my phone and I cant access emails!

    I have moved from the UK to New Zealand and Itunes will not accept my new Zealand bank details, I am trying to change my details on the Iphone 4s

    Do you have a new Apple ID to use in NZ? If not open iTunes Store. Log out of your old Apple ID, then try to login. Select Create Apple ID from the dialog that appears. Make a new Apple ID for NZ with a NZ email address. Once that is approved and verified, log into the iTunes Store with the new Apple ID. This should fix all other issues.
    Change iTunes Store Country on an iDevice
    1. Tap Settings;
    2. Tap iTunes & App Stores;
    3. Tap View Apple ID;
    4. Enter your user name and password;
    5. Tap Country/Region;
    6. Tap Change Country/Region;
    7. Select the region where you will be located;
    8. Tap Done.
    Also, see How to Change Your iTunes Store Account Location | eHow.com.

  • Upgrading APEX from 3.2 to 4.0 images and buttons not displaying correctly

    Database 11.2.0.1
    APEX: 3.2.1
    Attemping to upgrade APEX from 3.2 to 4.0. The installation script runs fine and updates the database successfully. I run the .sql to import the images and it ran successfully however when I attempt to access the APEX home page, the images are not loaded and the buttons don't do anything. I did some research through google but did not come to anything that resolved my issue. Does anyone have any ideas?
    Thanks for your time...

    If you are using mod_plsql, you need to run @apxldimg.sql script with SYS user file present with Apex installation. Also provide the location of your apex folder as parameter to this script.
    Habib

  • Why upgraded version of web cache 2.0.0.2.0 do not accept OSRECV_TIMEOUT parameter?

    Hi all:
    I did upgrade Web Cache 2.0.0.1.0 to 2.0.0.2.0 with a path
    downloaded from OTN and I am trying to set the attribute
    OSRECV_TIMEOUT according to the instruction on readme.html file.
    The webcached do not start because OSRECV_TIMEOUT is not in dtd
    definition.
    Is internal:///internal.dtd upgraded into this patch? or I need
    to install a complete version of 2.0.0.2 (not patch 2.0.0.1).
    Best regards, Marcelo.

    Wow, no one responded to this. Sorry about that. Did you resolve your problem? Note that the 9.0.2.0 release is out now, so that's the one you should be using.

  • I want to post my iPad from Australia to the US but Australia Post will not accept it because they say it has a lithium battery and cannot be put on an airplane. Is the battery in it a lithium battery?

    I need to post my iPad from Australia to the USA but Australia Post is refusing to do it because they say the lithium battery in the iPad mini will be detrimental in the aircraft. Does anyone know if the iPad mini DOES have a lithium battery? The alternative is to use FedEx which will be too expensive.

    tonefox wrote:
    It is. I doubt that there is any tablet or phone on the market that is not using a lithium battery.
    Today's cameras, cell phones, watches, etc. also use lithium batteries yet they're routinely taken onboard aircraft.  Again, it's not the same as the several tons on the Malaysian flight.

  • I have bought ipad mini with retina one and half month ago from online site "flipkart". My charging cable is not working now, can i replace it from apple store.?  Does apple replace the online buy product ?.

    Does apple replace charging cable of online bought product ?..

    Take it to an Apple Store for evaluation. You'll get a free replacement. Take your purchase receipt.
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/http://www.apple.com/retail/geniusbar/
     Cheers, Tom

  • Upgrading problem from win 7 to 8 T510

    I have a T510 just reinstalled Win 7 using Lenovo recovery and now I am looking at upgrading to Win 8 to give a try.
    I am lazy so I just unistalled softwares that are specifically pointed out by Windows 8 upgrade assistant during process, not ones that listed incompatible in the compatibility chart but those that actually prevents the upgrade assistant from proceeding. And apparently just uninstalling them is not enough. 
    The problem is I don't know exactly what softwares are causing proble. The great thinkpad utility softwares seem to become the biggest obstacles to upgrading. And those drivers. However I really don't want to unistall all of them and potentially found out that the upgrading still doesn't work. If I have to delete all lenovo softwares, I guess a clean install will be less troublesome. 
    So I am wondering if someone who successfully upgraded could give out the software or drivers that he or she uninstalled or share some other experience. I really appreciate that.
    Btw, I wish either Microsoft or Lenovo will release a better upgrade assistant that will take care of uninstallation issue for the users. I know Lenovo has a list of softwares that need to be uninstalled. Is there any chance you can make a exe or bat file that unistall all of them at once? I think most thinkpad users like me still have the standard software package installed as the machine came in and it really save a lot of trouble.
    Thanks
    Solved!
    Go to Solution.

    I think the Windows 8 package you downloaded can be used to make a fresh install as well as upgrade from Windows 7.
    If you run the Windows 8 package you downloaded it should give you the option to create a Media install. So grab a 4GB USB drive, run the Windows 8 package and select the option to Create Media Installation, or something to that description.
    Select the USB drive and it will create a Bootable Windows 8 install.
    You can use this, with your Key, to create a fresh install.
    I'm dual booting, on the same drive, for now while I get used to WIndows 8.
    T410(2537) -- i7 620M - Intel HD GPU (1440 x 900) - 8GB RAM - 128GB Crucial M4 SSD - 250GB Hitachi HDD - Windows 7 & 8 Pro

  • Trying to download the latest upgrade for Lightroom but the download will not accept my password. The password works on the Adobe site when I log in. What am I doing wrong?

    I am trying to install the latest upgrade for Adobe Photoshop Lightroom 5.pkg but the program will not accept my password, which works when I log into Adobe. What am I doing wrong?

    G¹Day Ned, Thank you very much. That worked. I like simple solutions. Thank
    you, again, for taking the time to respond. Steve

  • Upgrading to FCE 4, fixing capture bug from FCE 3

    If I upgrade to FCE 4, will this take care of the horrific capture problem using QT 7.3 in FCE 3 which does not work?

    Tom, you may remember my threads, my problems all came from using a DV converter only. I did not have camera, drive, or computer problems. Plus, since video captures fine in iMovie, it does isolate the capture problem to these factors: FCE 3.0, QT 7.3, and OS 10.4.11. I guess before I spend the $99 to upgrade to FCE 4, I'm trying to cover all of the bases and make sure there is not any other way or option to correct it. Thanks...

  • Upgrade IDSM2 from 4.1(5)S225 to 5,1 using application partition

    can i upgrade an IDSM2 (WS-SVC-IDSM2-BUN)in a 6513 from 4.1(5)S225 to 5.1 by copying the 5.1 application partition to the sensor
    [from the cisco userguide]
    Chapter 10 Configuring the Sensor Using the CLI
    Reimaging Appliances and Modules
    Reimaging the IDSM-2
    This section contains the following topics:
    • Catalyst Software, page 10-124
    • Cisco IOS Software, page 10-126
    Catalyst Software
    To reimage the application partition, follow these steps:
    Step 1 Obtain the application partition file from Software Center on Cisco.com and copy
    it to an FTP server.
    Step 2 Log in to the switch CLI.
    Step 3 Boot the IDSM-2 to the maintenance partition:
    cat6k> (enable) reset module_number cf:1
    Step 4 Log in to the maintenance partition CLI:
    login: guest
    Password: cisco
    Step 5 Reimage the application partition:
    [email protected]# upgrade ftp://user@ftp server IP/directory
    path/image file
    Step 6 Specify the FTP server password.
    After the application partition file has been downloaded, you are asked if you
    want to proceed:
    Upgrading will wipe out the contents on the hard disk. Do you want to
    proceed installing it [y|n]:
    Step 7 Type y to continue.
    When the application partition file has been installed, you are returned to the
    maintenance partition CLI.
    Step 8 Exit the maintenance partition CLI and return to the switch CLI.
    Step 9 Reboot the IDSM-2 to the application partition:
    cat6k> (enable) reset module_number hdd:1
    Step 10 When the IDSM-2 has rebooted, check the software version.
    Step 11 Log in to the application partition CLI and initialize the IDSM-2.
    See Initializing the Sensor, page 10-2, for the procedure.
    IF NOT, THEN IS THERE A SHORT CUT FROM 4.1 to 5.1 ?

    Just wanted to clarify some things.
    As Scott has already confirmed you can re-image using the method described and following Scott's advice on what additional updates to install.
    BUT understand that any configuration you have your 4.1 sensor will be lost during that method of re-imaging to 5.1.
    Another alternative is to first upgrade from 4.1(5)S225 to 5.0(1), and then to upgrade to 5.1(1).
    The upgrade to 5.0(1) will convert the 4.1 configuration into a compatible 5.0 format.
    I saw another post you made implying that you had to downgrade back to 4.1(5)S189 to do the 5.0(1) upgrade. This is not the case. You can upgrade directly from your current 4.1(5)S225 to 5.0(1).
    You can install the IPS-K9-maj-5.0-1-S149.rpm.pkg file directly on your current 4.1(5)S225 sensor.
    When S225 was installed on your 4.1(5) sensor, it also placed in storage the corresponding S225 update for your 5.0 sensor.
    So when IPS-K9-maj-5.0-1-S149.rpm.pkg is installed on the sensor it will detect that stored off S225 for 5.0 and install it at the same time.
    So once installed you will be immediately at 5.0(1)S225.
    Once at 5.0(1)S225, then you can upgrade directly to 5.1(1) using the IPS-K9-min-5.1-1d.pkg upgrade.
    (NOTE: 5.1-1d file was created to fix some upgrade bugs, but still installs the same 5.1(1) files as the original 5.1(1) upgrade package).
    So you will wind up at 5.1(1)S225.
    Now at this point I would recommend installing at least one later signature update (S226 or higher in your case) BEFORE installing the 5.1(1p1) patch.
    And AFTER the signature update, then install the 5.1(1p1) Engineering Patch (contact the TAC for this patch).
    Because of this specific upgrade path, the best way to avoid some issues is to install at least one signature update before installing the 5.1(1p1) patch. The signature update helps to ensure the sensor is ready for the 5.1(1p1) upgrade. Some of the files needed for the 5.1(1p1) upgrade have been seen to not get carried forward properly in the upgrade from 5.0(1) to 5.1(1), but a signature update corrects those issues.
    NOTE: This precaution of installing the signature update BEFORE the 5.1(1p1) is only needed when upgrading from 5.0(1) to 5.1(1). If imaging directly to 5.1(1) using the maintenance partition, then the 5.1(1p1) can be installed before a signature update without an issue.
    Once 5.1(1p1) is up and running and monitoring packets and generating alarms, then additional signature updates can be installed afterwards.

  • Upgrading OWB from 10.1.0.4 to 11.2

    Hi,
    We have plans to upgrade OWB in our environment.
    OWB - 10.1.0.4
    DB instance - 10.2.0.4
    OWF - 2.6.4
    Planned OWB upgrade -> 10.1.0.4 to 11.2.0.2 (as most of the bugs were fixed in this version)
    As far as my study, I have learnt that we got to do an intermediate upgrade for this
    10.1.0.4 -> 10.2.0.5 -> 11.2
    Our database version is currently 10.2.0.4. We are upgrading our Database too - to 11.1.0.7
    Please clarify my below questions,
    1. How can I do the intermediate upgrade from 10.1.0.4 to 10.2.0.5?
    2. OWF 2.6.4 will work with OWB 11.2?
    3. Below is the path, we have planned for this migration
    a. Upgrade OWB from 10.1.0.4 to 10.2.0.5
    b. Upgrade the DB instance from 10.2.0.4 to 11.1.0.7
    c. Upgrade OWB from 10.2.0.5 to 11.2
    will this path work?
    4. OWB 11.2 will be compatible with DB instance version of 11.1.0.7?
    Any assistance would be greatly appreciated.
    Thanks in Advance!!
    Many Thanks,
    Parthy.
    Edited by: Parthy on Mar 3, 2011 8:07 AM

    Hi Parthy,
    Here are the answers for your queries:
    1. How can I do the intermediate upgrade from 10.1.0.4 to 10.2.0.5?
    It will be there in the install& admin guide of OWB 10.2, refer the below URL:
    http://download.oracle.com/docs/cd/B31080_01/doc/install.102/b28224/upgrade_03.htm#i1002327
    2. OWF 2.6.4 will work with OWB 11.2?
    Yes, it will work
    3. Below is the path, we have planned for this migration
    a. Upgrade OWB from 10.1.0.4 to 10.2.0.5
    b. Upgrade the DB instance from 10.2.0.4 to 11.1.0.7
    c. Upgrade OWB from 10.2.0.5 to 11.2
    will this path work?
    It should work perfectly
    4. OWB 11.2 will be compatible with DB instance version of 11.1.0.7?
    Yes, it is compatiable you can have the OWB 11.2 workspace on 11.1 database
    Regards,
    Pnreddy

  • Recommended upgrade method from ECC5 to ECC6 for lowest production downtime

    Hello everybody,
    I've been looking through multiple documents concerning a system upgrade and I am still unable to figure out the recommended method for upgrading a system with minimum downtime.
    My scenario requires that tests as rigid as possible will be performed and that development will be halted for the shortest time possible , therefore development must be continued after the initial upgrade.
    We are currently debating the required way to do this - what should be done with the change requests that currently reside in the DEV system, in which steps the incomptabilities are fixed and so on.
    I've decided that I'll share my thoughts with you and maybe you guros will be able to point out mistakes in the methodology.
    1. ECC 5 Production System is copied aside, lets call this system EPC
    2. Change requests from DEV ECC5 are copied to this EPC System.
    3. EPC  system is upgraded to ECC6.
    4. Bugs and incomptabilities such as unicode incomptabilities are fixed and merged in a change request
    This ends the preperation step and in my opinion is sort of a preperation step.
    During the whole preparation step, which to my estimate could take at least one month, development in the original system must be continued, so this is my main trouble.
    What is the recommended procedure from here?
    I assume that another production must be done on the day of the actual upgrade start, then the fixes from the previous preperation system are copied to this actual ECC6 Production, but I am rather lost as far as it goes to having an ECC6 Dev with most current change requests.
    I would appreciate any hints and help,
    thanks in advance,
    Eli.

    Ok, your idea of having a production copy for development and tests is a good upgrade strategy, we have done this twice due high quantity of developments and configuragion changes but I don´t see why you wrote " copy change requests from DEV to EPC " your whole configuration, programs, etc, are already in EPC once you copy the system.
    In this scenario every change made in DEV ECC 5.0 must be also replicated and tested in EPC 6.0 because you cannot use the change requests from 5.0 in 6.0 once in productive upgrade, let me list the global steps:
    1.- Homogeneous system copy from PRD to EPC, you will get a working test platform
    2.- Upgrade EPC to 6.0
    3.- Developers and functionals will do all respective changes and generate chage requests.
    Once EPC is ready
    4.- Upgrade DEV system to 6.0 transport change requests created in EPC to upgraded DEV, from this point you should only do emergency changes using Q&A system.
    5.- Upgrade Q&A system, transport change requests from DEV, no changes are permited from now until PRD is upgraded.
    6.- Do all tests very carefully
    7.- Upgrade PRD transport change requests
    Then you are ready. the downtime can be tune trough EPC, DEV and Q&A systems so you can determine what you shoud do to assure the shortest method.
    I recomend you to use the downtime minimized upgrade method and from every upgrade take a deep look at the upgrade report generated after the whole process is completed.

  • Can't upgrade catalog from Elements 8 -thinks photos are on backup drive...

    I've just bought LR3 (and upgraded to latest 3.2 release), and now I want to import all my photos from my Elements 5 collection (just over 10,000 photos - mostly RAW). All the photos are actually stored on a network share from my Windows Home Server machine, all accessible as \\home-server\photos\. Elements 5 has no problems with accessing them this way, and I can also access them fine from Lightroom, but I obviously want to retain all my keywording.
    As there doesn't appear to be any way to upgrade a PSE5 catalog to LR3, I followed a recommendation I found on this forum (I think), and have downloaded a trial of PSE8. I have successfully upgraded a copy of the PSE5 catalog to PSE8 format, and then view them all in PSE8, so step one is a success. When I launched LR3, it then gave me a new option to upgrade an Elements catalog - this was a step forward. So, I took the option to upgrade the PSE8 catalog to LR, but after attempting it I see a window that says:
    "Lightroom has successfully upgraded one Photoshop Elements catalog photo, but was unable to upgrade 10729 additional photos because the photos were moved to inaccessible Photoshop Elements backup drives. If you wish to manage the Photoshop Elements backup photos in Lightroom, please use Lightroom to import images from the following Photoshop Elements backup discs."
    The photos are most definitely not on "backup drives". I've never backed up photos from Elements (my backups are done separately from my Home Server). Lightroom can see the relevant shares, as I've imported a few photos directly onto that share from a card reader, and have also imported some photos on there in a "leave in place", but (as they are RAWs) I don't get any keywording this way.
    I'd be most grateful for any suggestions, especially as I won't be able to do anything in PSE8 when my trial runs out....

    Lee Jay wrote:
    R Harnwell wrote:
    To Lee Jay:
    Thanks for that - that certainly agrees with my findings so far.
    Do I take it you've had this confirmed by someone from Adobe then? Is it an intended limitation, or just an acknowledged bug?
    I really hope it isn't an intended limitation, as it would mean that this high cost professional-targeted app (LR3) is not capable of something that the consumer level one (PSE8) does with ease. Surely it isn't that unusual to store your photos on a network drive.....
    If this isn't likely to be fixed soon I guess I'll have to :
    Backup (network drive based) photos and catalog
    Use PSE8 to move the whole directory tree to internal hard drive
    Upgrade PSE8 catalog in LR3
    Use LR3 to move the whole directory tree back to the network drive
    Not ideal, but it should get the job done...
    Yes, confirmed by Adobe.  It's a design limitation *of the PSE upgrader*.  You can use LR3 to store images on a network drive, you just can't store the catalog there.  I don't expect this to be fixed soon, so I'd go with the workaround if I were you.
    I'm not storing my catalog on the network drive though, just my photos. Even with the catalog on an internal drive, LR3 still fails to upgrade any photos that are on a network drive.
    I have though now spoken to a helpdesk chap at Adobe, and he has confirmed that Lightroom is not able to upgrade photos on a network drive. Seems like a really poor show to me, but I don't suppose I can do much about it...

  • Sometimes my computer takes too long to connect to new website. I am running a pretty powerful work program at same time, what is the best solution? Upgrading speed from cable network, is it a hard drive issue? do I need to "clean out" the computer?

    Many times my computer takes too long to connect to new website. I have wireless internet (time capsule) and I am running a pretty powerful real time financial work program at same time, what is the best solution? Upgrading speed from cable network? is it a hard drive issue? do I only need to "clean out" the computer? Or all of the above...not to computer saavy.  It is a Macbook Pro  osx 10.6.8 (late 2010).

    Almost certainly none of the above!  Try each of the following in this order:
    Select 'Reset Safari' from the Safari menu.
    Close down Safari;  move <home>/Library/Caches/com.apple.Safari/Cache.db to the trash; restart Safari.
    Change the DNS servers in your network settings to use the OpenDNS servers: 208.67.222.222 and 208.67.220.220
    Turn off DNS pre-fetching by entering the following command in Terminal and restarting Safari:
              defaults write com.apple.safari WebKitDNSPrefetchingEnabled -boolean false

Maybe you are looking for

  • button element won't submit, need help...

    This <button> element is used all throughout our site http://www.ocp.org flawlessly. However, on the particular page I'm working on right now it won't work in conjunction with the drop down menu I'm working with in IE 6 or 7, can anyone help me out?

  • Alerts for List Items

    Hello All, I'm trying to create a List with ,say , 7 questions..................and i want to link each question with an answer.......... i tried creating alerts for each of the question however not been able to understand how can i link the question

  • External Hard Drive + Airport, possible????

    Hi, does anybody tried successfully to conect and external HD to a airport extreme to make wireless backups in a network? Is it possible??? My external HD also have different usb and firewire hubs so I can Plug a Printer or a Scanner. HELP! Thanks

  • Output determination during delete order

    Hi, As per requirement, When a unprocessed order(which doesn't have any further documents) is deleted in SAP, it has to update certain Z tables. How can this be achieved using using Output determination/ output types? How does output determination wo

  • Schema validation of messages

    Hi everybody. Does anyone know if XML Schema validation of incoming messages will be implemented in upcoming XI patches or full releases? You can do it yourself, of course, in an adapter module or a Java mapping program, but both options seem somewha