Help!!! PE 10 not working correctly?

Hi
I'm right in the middle of a project and suddenly PE10 is giving me problems.
It's weird, I can open PE and load my files and elements with no issues but when I try and apply any transitions or anything it doesn't work.
Even if I tell it to fade out the video it appears on the timeline that it's working  (the line bends down in the timeline or the transition appears etc.) but when I run through the transition it just jumps from one clip to another with no fade or transition.
After messing with it for a while I uninstalled PE completely, and reinstalled it in a new location on another drive.
It still does the same thing!
Does anyone have any idea what's going on?
The only thing that has changed since yesterday is that I updated my nVidia graphic drivers to the latest version.
Other then that everything is the same, I was working on these same files yesterday with no problems.
Mike

Hi
Here's the info, I copied and pasted it from the other post, with  little expansion.
I have messed around with creating stereo video with some success and one of these days I'll do a 3D Stereo Lucy movie.
Something that might be of interest to someone here, is that I figured out how to edit the stereo video in Premiere Elements.
You create the Left and Right Eye clips by moving the camera left or right, and generate the video for each eye, in a 3D creation program like Poser.
If you were really serious you could use two cameras side and by side to shoot live video shooting both at the same time.
If they weren't in perfect sync you could do that in PE and export them before you edit.
Two GoPros would set you back about $600 so you would have to be serious. LOL
You can also capture stereo video from computer games.
I haven't tried separating the left, right images from this video yet but I think I could set up a automatic process in Photoshop to do it.
Now the How...
To edit the stereo video in PE, name the Left and Right Eye clips exactly the same and put them in two different folders labeled L and R.
Both inside the same Parent folder. 
Remember only the folders have different names, both sets of files have exactly the same names.
Edit your movie in PE and do all of the effects etc, using only the Right Eye clips, you can do anything you want, Transitions, Effects, even change the speed the clips run etc.
Then save it as Right Eye whatever and output the video, named Right Eye XXXXXXXXXX.
When the video is finished Change the name of the Right Eye folder to XR and change the name of the L folder to R.
When you open up PE, it will think it's loading the same files, and substitute all of the Right Eye clips for the Left Eye clips, incorporating all of the effects cropping etc.
Now save the job again as Left Eye XXXXXXXXXX and you have your left and right eye videos.
To view them all you have to do is load the left and right eye vids in to nVidia 3D Movie Viewer and you have stereo.
You need to have an nVidia video card and a 120 Hz monitor or better plus the 3D Vision kit with the infrared emitter and glasses.
You could to the same thing with anaglyph video too and not have to have all the hardware, that's how I started out doing stereo on my old computer.
If you haven't seen 3D vision, it's really fantastic, and I can play games in stereo for hours with no eye strain.
It really works.
Mike

Similar Messages

  • Need help iPhone 5 not working correctly

    my iPhone 5 keeps pressing all the keys around the key I want it to press on the keyboard also problems using lock screen numbers have re-started and the phone just reverts to not working correctly
    also when I got this phone I did it from a back up of my old iPhone 4 but not all the songs have fully downloaded (they are there, but cannot play) when I look on iTunes it says I have no songs that arn't on my iPhone that I've bought?
    Should I take my phone back to my carrier which is 3? Or make an appointment at the Genius Bar?

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).
    Backups do not contain media, all the media should be in iTunes on your computer.  Simply select the content desired to sync to the device and sync.

  • Program not working correctly-Help!

    class Sort
         /* method takes an array of integers as an input,
         * and returns a copy with the element values sorted
         * by select method.
         int[] selectSort(int[] input)
              /*declare variables to be used in array */
              int x, y, max, temp;
              int[] select = new int[input.length];
              /*This loop reads the entire array */
              for(x = input.length - 1; x>0; x--)
                   max = 0;
                   /*This loop checks to see if any number is
                   lower possible greatest number /
                   for(y = 0; y <= x; y++)
                   {//Returns number if lowest number
                        if(input[y] > input[max])
                             max = y;
                        }//end of if statement
                   }//end of inner loop
                   /*Switches the values */
                        temp = input[x];
                        select[x] = input[max];
                        select[max] = temp;
              }//end of outer loop
              return select;          
         } //end of selectSort()
         /* method takes an array of integers as an input,
         * and returns a copy with the element values sorted
         * by bubble method.
         int[] bubbleSort(int[] input)
              int[] bubble = new int[input.length];
              for (int x = 1; x < input.length; x++)
                   for (int y = 0; y < input.length - 1; y++)
                        if (input[y] > input[y+1])
                             int temp = input[y];
                             bubble[y] = input[y+1];
                             bubble[y+1] = temp;
              return bubble;
         } //end of bubbleSort
    **********************Test Class**********************
    class TestSort
         public static void main(String[] args)
              /* count variable used as loop counter when
              * result table display is generated
              int count;
              /* variable for object of class Sort */
              Sort x;
              /* create object of class GroupEx2 */
              x = new Sort();
              /* create a source array of integer elements */
    int[] y = new int[5];
    /* assign values to array elements to be sorted     */     
              y[0] = 8;
              y[1] = 5;
              y[2] = 3;
              y[3] = 9;
              y[4] = 1;
              /* create variable for target of select sort array */
              int[] ss;
              /* create variable for target bubble sort array */
              int[] bs;
              /* call method to return an array with element values select sorted*/
              ss = x.selectSort(y);
              /* call method to return an array with element values bubble sorted*/
              bs = x.bubbleSort(y);          
              /* display original and sorted arrays in three columns*/
              System.out.print("Input Array" + "\t");
              System.out.print("Select Sort" + "\t");
              System.out.println("Bubble Sort");
              for (count = 0; count < y.length; count++)
                   /* Column 1: original array */
                   System.out.print("input[" + count + "] = " + y[count]);
                   /* tab between columns 1 and 2 */
                   System.out.print("\t");
                   /* Column 2: select sorted array */
                   System.out.print("select[" + count + "] = " + ss[count]);
                   /* tab between columns */
                   System.out.print("\t");
                   /* Column 3: bubble sorted array */
                   System.out.println("bubble[" + count + "] = " + bs[count]);
              } // end of display for loop
         } // end of main()
    } // end of class TestSort

    Thanks for the Bash! I'm surprised you had the time
    for it.Go back and look at your original post. A whole bunch of code, and the only description of the problem is "not working correctly." Do you honestly think that's a reasonable way to ask for help? Do you go to the doctor and say, "I'm sick" and then just wait for him to cure you? Do you take your care to the mechanic and say only, "It's broke"?
    Look, this is your problem and it's your responsibility to fix it. There are people here who are happy to help you, but it's up to you to provide a reasonable statement of what's wrong, what you've tried, what you don't understand. For instance:
    Does it compile? If not, post the complete error message.
    Does it run, but throw an exception? If so, post the stack trace.
    Does it not throw an exception, but not behave the way you expect? Then describe the expected beavior and the observed behavior.
    Do you really need to be told this stuff? It seems like common sense that when you're asking people to spend their time helping you, you should give them the information they need to be able to do so.

  • "Help" menu in finder is not working correctly

    My "Help" menu in the finder menubar is not working correctly. If I type in a query that can't be found, instead of telling that it can't be found, underneath the search field it just displays "Searching..." indefinitely. This is no matter what application I'm in when I access the menu. I have tried the advice in http://discussions.apple.com/thread.jspa?messageID=6389569&#6389569 and that does not work. Using OS 10.5.1

    I'd like to add that when I search, it will find menu commands (highlight relevant menu commands) but not return any actual help results. To clarify, this is when searching directly from the "help" menu bar item. Searching from within the help window seems to work fine.

  • Sound in Macbook pro is not working correctly! PLEASE HELP!

    A few days ago, the sound in the build in speakers in my macbook pro (Mac OS X 10.6.8) started not working correctly, i did not hit it or anything, just closed it down when i woke up the next day, the sound was not working correctly. i know it is hard to describe what's wrong in a written forum, but the best way to describe it is this: it sounds like when you have a set of headphones plugged in, but not wearing them. the sound is weak, with no bass. when i actualy do hear the sound when wearing headphones (in my ears) the sound is fine.
    hope anyone can help.

    Intel-based Macs: Resetting the System Management Controller (SMC)
    Resetting your Mac's PRAM and NVRAM

  • I have OSX 10.7.5, my idvd is not working correctly.  Should I re-download this version again , do you think that it will help to improve the idvd operation?

    I have OSX 10.7.5 on my imac, my idvd is not working correctly.  Should I re-download this version again , do you think that it will help to improve the idvd operation?

    First, iDVD is not and never has been part of OS X. If iDVD is not working correctly, then you should investigate possible problems with that application, support files, preferences, or cache.
    Of course you can always reinstall OS X if you wish:
    Reinstalling Lion/Mountain Lion Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • If statement within a view is not working correctly ?

    Hi all,
    maybe i am wrong but i think the if statement within a view is not working correctly. See code down below.
    I would like to use the Hallo World depending on the page attribute isFrame with or without all the neccessary html tags. Therefore i have embedded the htmlb tags in an if statement. But for any reason if isframe is initial it isn't working. It would be great if anybody could help me.
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <% if not isframe is initial. %>
      <htmlb:content design="design2003">
         <htmlb:page title = "Top Level Navigation view">
    <% endif. %>
    hallo world
    <% if not isframe is initial. %>
         </htmlb:page>
      </htmlb:content>
    <% endif. %>
    thanks in advance and best regards
    Matthias Hlubek

    Matthias,
    The short answer: your example is <b>NOT</b> going to work. The long answer will probably 5 pages to describe. So first let me rewrite the example so that it could work, and then give a short version of the long answer. Do not be disappointed if it is not totally clear. It is rather complicated. (See the nice form of IF statements that are possible since 620.)
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <% if isframe is <b>NOT</b> initial. %>
    <htmlb:content design="design2003">
      <htmlb:page title = "Top Level Navigation view">
        hallo world
      </htmlb:page>
    </htmlb:content>
    <% else. %>
      hallo world
    <% endif. %>
    So why does your example not work? Let us start with a simple tag:
      <htmlb:page title = "Top Level Navigation view">
      </htmlb:page>
    Now, for each tag, we have effectively the opening part (<htmlb:page>), an optional body, and then the closing part (</htmlb:page>). We are now at the level of the BSP runtime processing one tag. What the runtime does not know, is whether the tag wants to process its body or not. Each tag can decide dynamically at runtime whether the body should be processed. So the BSP compiler generates the following code:
      DATA: tag TYPE REF TO cl_htmlb_page.
      CREATE OBJECT tag.
      tag->title = 'Top Level Navigation view'.
      IF tag->DO_AT_BEGINNING( ) = CONTINUE.
      ENDIF.
      tag->DO_AT_END( ).
    You should actually just debug your BSP code at ABAP level, and then you will immediately see all of this. Now, let us mix in your example with our code generation. First you simplified example:
    <% if isframe is NOT initial. %>
      <htmlb:page title = "Top Level Navigation view">
    <% endif. %>
    <% if isframe is NOT initial. %>
      </htmlb:page>
    <% endif. %>
    And then with our generated code. Look specifically at how the IF/ENDIF blocks suddenly match!
    if isframe is NOT initial.
      DATA: tag TYPE REF TO cl_htmlb_page.
      CREATE OBJECT tag.
      tag->title = 'Top Level Navigation view'.
      IF tag->DO_AT_BEGINNING( ) = CONTINUE.
    endif.
    if isframe is NOT initial.
      ENDIF.
      tag->DO_AT_END( ).
    endif.
    You can see that your ENDIF statements are closing IF blocks generated by the BSP compiler. Such a nesting will not work. This is a very short form of the problem, there are a number of variations, and different types of the same problem.
    The only way to solve this problem, is probably to put the body into a page fragment and include it like I did above with the duplicate HelloWorld strings. But this duplicates source code. Better is to put body onto a view, that can be processed as required.
    brian

  • Email pushing not working correctly for office email - 3 seperate devices/carriers

    We switched email hosts several months ago and since our email pushing has not worked correctly. Our host/IT guy has been very unwilling to help me through this (I get the pleasure of being the in-house IT source)
    I personally am on AT&T have no problems with the other 3 emails I have set up on my blackberry. However I receive my work account one time a day at roughly 6:15. Another user is on Alltel and he receives spotty emails throughout the day, but his gmail account comes through instantly. The third user is on nextel and he receives his 2-3 times per day.
    I began to think this was an email host issue since the three of us are all on different carriers, until I found out a fourth user, also on nextel, receives his emails fine.
    Users 1-3 are on Outlook 07 on various versions of the Curve. We have all our messages to stay on the server.
    User 4 is on the older nextel blackberry push to talk, and is not on outlook. 
    We do not have an exchange server. Our emails were all set up through our devices.
    Any suggestions? The answers I have received through our carriers is to make sure that our messages are set to be left on the server. Everyone else at the office has given up - but for me this is the quest for the Holy Grail.......I'm determined find the answer!
    Thank you in advance for any suggestions.
    Caitlin Talbot 

    Potential solution for windows for a side-by-side install. This works for me.
    To setup a firefox install side by side so that links from external programs (like email) can open (so you don't get a "Firefox is already running but is not responding" message) do the following.
    The solution entails the use of the -no-remote switch. Don't use it for the default browser. Use it for the non default browser.
    I'll use firefox 3.6 and firefox 4.0 as examples but this should work for future versions.
    + Install firefox 3.6 and Firefox 4.0 in different directories. Eg.
    C:\Program Files\Mozilla Firefox\firefox.exe
    C:\Program Files\Mozilla Firefox 4\firefox.exe
    + Open profile manager. Start > Run : firefox.exe -ProfileManager
    + In profile manager create Two Profiles.
    firefox3.6
    firefox4
    + In profile manager select firefox 4 as your default (assuming you want to default to the latest) and tick "Don't ask at startup"
    + Create two windows shortcuts.
    * General: Mozilla Firefox 4 (default). Shortcut > Target: "C:\Program Files\Mozilla Firefox 4\firefox.exe". Shortcut > Start In: "C:\Program Files\Mozilla Firefox 4"
    * General: Mozilla Firefox 3.6. Shortcut > Target: "C:\Program Files\Mozilla Firefox\firefox.exe" -p firefox3.6 -no-remote. Shortcut > Start In: "C:\Program Files\Mozilla Firefox"
    That's it. Links from external programs should now open in your default browser.
    Further details see. [http://kb.mozillazine.org/Opening_a_new_instance_of_your_Mozilla_application_with_another_profile Opening a new instance of your Mozilla application with another profile]

  • Help button is not working in Infoview

    Hi All ,
    I am working on BO XI R2 environment and help button is not working properly in my infoview.
    I can get help files from Admin console but the same is not true with infoview.I got two different server installations, one of them its working fine but not for the other.
    I checked for help files in IIS and they are there , even I verified web.config file as well for infoview and it also seems to be correct.
    Please advice what could be the reason.
    Thanks,
    Vivek.

    CLOSED

  • 1st Gen iPod touch not working correctly?

    I have a 1st generation 8GB iPod Touch. It's not working correctly.
    My biggest problem is that, unexplaiably, certain areas of the screen don't seem to register touch anymore. There is a sort of "L" shape on the left and bottom edges of the screen that won't register touch, making it impossible to move applications to the previous page on the home screen and making it hard to use the keyboard/buttons while in portrait mode. It's extremely frustrating to try to change the volume while playing a song, as I now have to either put the iPod in sleep mode then double tap the home button or flip it to cover flow and double tap the home button to do it.
    http://i38.photobucket.com/albums/e140/Vipershark/IMG_0001.png
    (Highlight the image to see it better.)
    This is a screenshot of the working/non-working areas that I made using the Whiteboard application. The white area that you see (excluding the little half circles of black which are extended brush strokes and not actually working areas) is the area that doesn't work. I can't seem to figure out why it happened, as I've never dropped or otherwise damaged it. It just happened one day, and I don't know why.
    But I can't fix it. I've tried everything. Upgrading (I'm now running iPhone OS 3.0 which still didn't fix the problem.) didn't work, restoring didn't work, deleting everything and restoring from factory settings didn't work.
    I'm also having a few other problems as well, though they're not as bad. My home button seems to stop working sometimes and sometimes the entire screen witll stop registering touch until I put the iPod to sleep and turn it back on. It also seems to go a lot slower than usual.
    My iPod is less than a year old. Can you help?

    Vipershark,
    I had a very similar problem this past weekend with my 1G 8GB iPod touch. But with me, just the left side of the screen wasn't registering my touch. I could still access the bottom section, which you cannot.
    The good news for me is that I fixed it and I hope it works for you as well. What fixed it for me was resetting all my settings. To do this, go to the settings icon, then click on general, and then on the very bottom is reset. Choose "reset all settings."
    Apparently this is different than a restore through iTunes, which you tried. I also tried that earlier and it did not help.
    Of course, the reset solution I used relies on you being able to access all of the correct buttons, so I hope you can!
    Please let us know if this works for you. If not, since it is less than a year old, it is still under warranty. Contact Apple and see what they can do.

  • Function keys are not working correctly

    I've been looking all over the various threads and I can't find an answer that solves my problem.
    Here are the details:
    I bought the computer in the U.S. where I live.
    I have a iMac 2.4GHz intel Core 2 Duo  EMC 2133 with a 20" screen. Bought it new in February 2008.
    I have Mac OS X 10.5.8  (I am waiting for my order for OS Snow Leopard to come in!!)
    I have been using a wireless mouse and Keyboard (Love not having cords!)
    Recently, my wireless keyboard got a short and quit working. I went down to the apple store and got a new wireless keyboard.
    I had the computer with me at the genius bar so, yes, the apple employee saw exactly what I have.
    I took it all home got the thing all put back together and got the new keyboard paired up and working with the computer.
    Here are the problems:
    Went to go use the function keys while using iTunes and found they weren't working properly. The F10, F11 and F12 do not control the volume of sound as the keyboard indicates they would, they instead activate dashboard, spaces, and application windows. 
    Following the advice of other threads, I looked over in the system preferences and made sure the "Use all F1, F2 etc." box was unchecked (it was unchecked), things still didn't work.
    I tried the fn key but it appears to not work at all it has no effect on the functioning of the function keys.
    I went under keyboard shortcuts in system preferences and found the F10, F11 and F12 keys, it confirms that those keys control spaces, dashboard and application windows as they are performing but shows no options to either reassign to volume control (as marked on the keyboard) or make the fn key work.
    I've gone back and forth trying various combinations of checked and unchecked boxes to see if anything would work, so far I've come up with nothing.
    A couple more important or interesting facts:
    Yes I have turned off and taken the batteries out of the old keyboard. My bluetooth connection currently shows it as disconnected.
    I have restarted the computer.
    One thing I find odd; when I go under preferences and go to Keyboard and Mouse when I go under the section "Bluetooth" it shows Bluetooth mouse with the name of the mouse and the battery level. BUT nothing is showing up under bluetooth Keyboard, I can't figure out how to change this and don't know if it is contributing to the problem.
    When I go under the bluetooth logo on the top bar I find the mouse and both keyboards referenced, the old keyboard is shown as disconnected and the other two are connected. I have tried to update the device's name but it doesn't seem to let me.
    I have double clicked on the device under bluetooth and it shows the new keyboard as discoverable, paired and connected. Hence, I am using the new keyboard to write this inquiry.
    Please, any assistance would be of great help. I have tried to be thorough in order help narrow the possible problem. Thanks!!

    Hendry
    Just thought I'd let you know.  Our suspicions were correct, it was the OS. After I installed Snow Leopard (10.6.8) all the problems were corrected.  I also updated the RAM from 1 gb to 6 gb. The mac is working all around better. Sorry it took so long to get back to everyone. My superdrive had pooped out. Rather than replace it I got an external drive from OWC connected with firewire 800.  So far everything is running very well, as far as I can tell this external drive is better than the original superdrive. My superdrive has always acted funny, infact I returned the first mac I got after a week because its superdrive was also malfunctioning. Anyway, all that to say everything seems to be fully functioning again.
    Roy
    Re: Function keys are not working correctly 

  • LaserJet Pr0 200 color MFP M276nw Touch Screen not Working correctly

    Hello, I'm having an issue with a LaserJet Pr0 200 color MFP M276nw Touch Screen not Working correctly. I have followed the instructions to reset the printer, but now am unable to select 'English' as my language because every time I select the 'English' option 'Spanish' is selected. I am then given two options to select 'Si' or 'No' both of which can not be selected on the touch screen?
    Anybody know of a way round this?

    Hi @dnhowes ,
    I see that you are having issues with the touch screen not working correctly. I will do my best to help you.
    Make sure the printer is connected directly to a wall outlet. (don't use a power hub or a surge protector) This ensures the printer is receiving full power and may help this situation.
    Was it the Nvram reset back to factory settings that you tried or a hard reset?
    Try selecting the option on the display a little higher above the icon to see if that helps. Some touch screens are finicky.
    I find that on the Lab printers when I am selecting different menus.
    If the issue continues, please call our technical support at 800-474-6836 for further assistance. If you live outside the US/Canada Region, please click the link below to get the support number for your region.
    http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Have a nice 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

  • Screen Not Working Correctly- Horizontal Lines

    For the past few weeks, when I open my computer, sometimes the bottom half of my screen is just a lot of lines or is not working correctly. Sometimes if I tilt the screen enough, it will go away. But I don't know what to do!

    First step in user troubleshooting is to turn the phone off and back on. If that doesn't help, then a reset. Hold the sleep/wake and home buttons together until you see the Apple logo and then release. The phone will restart. If this does not solve it, then a restore from backup, and finally if necessary, a restore as a new device.
    You do not indicate what iPhone version you have. You also do not say if the phone has been dropped or any user damage to the screen. If anything, you can make an appointment with the Apple Store Genius bar to get the hardware checked.

  • Substitution rule is not working correctly

    Hi PS Gurus,
    We have a problem in one of the newly created projects that the substitution rule is not working correctly; the data is not copied to the WBS element Cust. Enhancement tab.
    Project 1 is working fine and the data is copied & Project 2 and Project 3 are not getting all the data copied to the WBS element,
    In that project profile (substitution rule is given), substitution rule is also maintained 
    So please help why in one project substitution rule in working & other isnu2019t.
    Many Thanks in Advance.
    MM

    Hello Menaka,
    Select the WBS element in the project builder.
    Cleck on Edit --> Validation Substitution --> Substitution
    You will get the list of Substituitions, Double click on the required Substition rule.This action will generate a log, whether substitution has been succesfully caried out or with some error.
    Kindly provide us that error log to guide you further.
    Regards
    Ravi

  • System Update not working correctly

    Hi forum,
    System Update (Version 4.00.0024) is not working correctly on my T500 with Windows 7.
    1: Not detecting old versions
    SU is not detecting, that there is an old version of Access Connection (5.42) installed although there is a new version 5.50 avaliable. I had to do a manual update.
    2: Not installing a suggested update
    Each time I run SU, I get a suggested update for "Fix for Issue of HDD with HDP Detection for Windows Vista/7". After downloading there comes a meaningless message "package was not installed" (Paket wurde nicht installiert). No hint for any error.
    3: Some drivers (e.g. for the ultranav) have not been downloaded at all - I had to test the functions of some hardware components and download the appropriate drivers manually in case of malfuncion.
    Probably there is a solution known within the forum community, at least this should be a message to lenovo (I received no response from the help desk when reporting this finding).
    Regards
    AH_DE

    Dear Herik,
    thanks for your answer.
    I checked the log  file and found thousands of entries. Here are the lines related to "Fix for ...".
    Info    2010-02-03 , 08:40:37
              bei Tvsu.Gui.CustomComponents.UpdatePanel.SynchronizeBoxPackage(Object sender, EventArgs args)
              Message: Selected to install: Fix for Issue of HDD with HDP Detection for Windows Vista/7, with
    Info    2010-02-03 , 08:40:43
              bei Tvsu.Coreq.LoadCoreqsProcessor.ProcessUpdatesImplementation(Update[] ups)
              Message: Candidate list:
    Fix for Issue of HDD with HDP Detection for Windows Vista/7[reboot type 3]
    Info    2010-02-03 , 08:40:57
              bei Tvsu.GenericPackageInstaller.GenericPackageInstaller.ExtractFiles(String extractCommand)
              Message: osfq03ww.exe -s -ex -fC:\SWTOOLS\OSFIXES Extract command was executed sucessfully in Fix for Issue of HDD with HDP Detection for Windows Vista/7 update
    Info    2010-02-03 , 08:40:57
              bei Tvsu.GenericPackageInstaller.CmdInstaller.InstallUpdate()
              Message: Update Fix for Issue of HDD with HDP Detection for Windows Vista/7 is being install using Windows Service
    Info    2010-02-03 , 08:40:57
              bei Tvsu.Engine.Process.PackageInstallerProcess.InstallNewUpdates()
              Message: Update Fix for Issue of HDD with HDP Detection for Windows Vista/7 installation failed
    ADDITIONAL ENTRIES 
    Info    2010-02-03 , 08:40:57
              bei Tvsu.Gui.FlowScreens.Results.AdjustComponent()
              Message: System updated:
              Installed=0
              Not Installed=Tvsu.Beans.Update[]
              Deferred=0
              Download Failed=0
              Hidden=0
    Severe          2010-02-03 , 08:41:17
              bei Tvsu.Sdk.SuSdk.ShutDownApplication()
              Message: Has happened an exception while the UNCAuthenticator.Shutdown() was executedShare name can not be null or empty
    Since I'm a normal user only, I can't interprete this information. Do you know what to do?
    Kind Regards
    AH_DE

  • Query is not working correctly

    Hi all,
    Below query is not working correctly. Please let me know, if you find the mistake
    select
    a.name,
    b.VOD_NAME,
    count(xm.ATTRIB_03)
    from
    siebel.s_vod b
    left outer join ISS_OBJ_DEF c on b.OBJECT_NUM=c.PAR_VOD_ID
    left outer join vod d on c.VOD_ID=d.row_id
    left outer join PROD_INT a on d.OBJECT_NUM=a.CFG_MODEL_ID
    left outer join PROD_INT_XM xm on a.row_id=xm.PAR_ROW_ID
    where
    b.VOD_TYPE_CD='CLASS_DEF'
    and
    c.LAST_VERS = 0
    and
    b.vod_name='Componentes'
    group by a.name,b.vod_name having count(xm.ATTRIB_03) >=5

    user9522927 wrote:
    Hi all,
    Below query is not working correctly. Please let me know, if you find the mistake
    select
    a.name,
    b.VOD_NAME,
    count(xm.ATTRIB_03)
    from
    siebel.s_vod b
    left outer join ISS_OBJ_DEF c on b.OBJECT_NUM=c.PAR_VOD_ID
    left outer join vod d on c.VOD_ID=d.row_id
    left outer join PROD_INT a on d.OBJECT_NUM=a.CFG_MODEL_ID
    left outer join PROD_INT_XM xm on a.row_id=xm.PAR_ROW_ID
    where
    b.VOD_TYPE_CD='CLASS_DEF'
    and
    c.LAST_VERS = 0
    and
    b.vod_name='Componentes'
    group by a.name,b.vod_name having count(xm.ATTRIB_03) >=5I couldn't see through the internet what happend when you ran said query. How about helping us out by showing us the evidence that it "is not working correctly".
    "Here's a picture of my car sitting in the driveway. Why won't it start?"

Maybe you are looking for

  • Scanning with HP LaserJet Pro MFP M127fn

    Hello everyone, I installed my printer HP LaserJet Pro MFP M127fn on a network. I am able to print from many different computers, but I can not scan. On computer where I want to install scanner I am using Ubuntu 12.04. I tried to use "Simple scan" an

  • Unable to find the path of automatic (command line) backup of LCM

    I created the batch script to take the LCM backup on Essbase/FDQM (ESB01) Detail is as under 1. Copy utility.sh and utility.bat file from  D:\Oracle\Middleware\EPMSystem11R1\common\utilities\LCM\11.1.2.0\bin  to   D:\Oracle\Middleware\user_projects\e

  • HT1212 How do I unlock my disabled itouch after trying all steps posted on this sight. It is stil not working

    I tried all the steps to unlock my disabled itouch but it isn't working. I. After I do the restore steps the window that pops up is the same as before "you must enter the passcode on the ipod before it can be synced with this computer" I need more su

  • SC with Internal Order

    Hi, We are in SRM 7.0.While creating a SC with IO.When you click on details tab of the cost assignent,the field CC is not dispalyed. Kindly provide the pointers. Regds, RKS

  • Set value of ord_block_reason

    Hi, Im trying to set values of ord_block_reason (BP_head,BP_head/account details,status,) to 'AS' when I choose the yes button in popup message. How to set the values? Please tell me steps to find the iv_relation_name for attribute ord_block_reason.