Multiple entry points

Hi Friends,
There is a one-to-one relationship between an application and a component entry point.
My Query is if i wish to give my component multiple entry points, we must define multiple applications.
So how is this possible in WebDynpro Java Application.
Please help me out to move further.
Thanks and regards,
Chandrashekar.

Hi,
Do you mean you want to create multiple entries ie., applications for a component, Such that every appliation will be having a different view as an entry point. If this is your requirement then what you can do is
1) while creating an application from existing component you can see Interfaceview Inputfield, where you can set different views for each application.
Regards
Raghu

Similar Messages

  • Multiple entry points into a Page Flow

    Is it possible to define multiple entry points into a PageFlow ? That is, can I forward to an arbitrary Action inside a PageFlow (other then the standard begin) ?
    If so, is there sample code illustrating this ?
    Thank you
    Cristian

    The flow view should show the action from the anchor.
    "Cristian" <[email protected]> wrote in message
    news:405892c9$[email protected]..
    >
    John,
    That answers my questions.
    One more thing though :
    When using an anchor to forward from a jsp to an action in a pageflow,
    the 'Flow View' does not show the corresponding link. Is that normal ?
    Thank you
    Cristian
    "John Rohrlich" <[email protected]> wrote:
    Cristian,
    Yes the samples implicitly go to begin because jumping into the middle
    of
    some flow can lead to code that is difficult to follow and to debug.
    If
    there are pieces of a page flow that are useful in multiple contexts
    you
    might want to make them independent page flows or nested page flows
    You can go from a jsp to an action in another page flow using an anchor
    and
    setting the href attribute, for example
    <netui:anchor
    href="/WebApp/anotherPageFlow/someAction.do">continue</netui:anchor>
    notice that you set href= rather than action= because you are going
    outside
    of the local page flow.
    If you want to go from an action in one page flow to an action in another
    page flow of the same application you can do this
    * @jpf:forward name="success" path="/anotherPageFlow/someAction.do"
    If you want to pass a form to the action you can do that also. You just
    follow the last example and add the form to the forward, for example
    return new Forward("success", someForm);
    I hope that covers it - john
    "Cristian" <[email protected]> wrote in message
    news:405787a2$[email protected]..
    I need to go from either an action or a jsp in one page flow to ajsp/action in another page flow, passing around a session scoped action
    form.
    What is the syntax for the forwarding path ?
    All the samples I found implicitly
    forward to the 'begin()' action in the destination jpf.
    How do I tell it to go to
    another action/jsp in the target jpf ?
    Thanks
    Cristian

  • Data in the cube is showing multiple entries when compared with ODS

    Hello BW Gurus,
    We have a waste report in production planning on Cube and ODS separately. The same info package loads both targets (which means same infosource) but when we run a report on Cube, the records are showing multiple entries (i.e. Key Figures are not matching when compared to ODS) where as the ODS records are showing correctly as it was in R/3. There are totally 6 key figures out of which 4 pulled from R/3 and 2 are populated in BW.
    An Example:
    Waste report in PP run for plant 1000 for 12/2005 and process order 123456. The operational scrap should be 2.46% and the component scrap should be 3.00% for material 10000000. The report is showing 7.87% for planned operational waste % and 9.6% for planned component waste %. These values are not correct. The ODS values for order 123456 matched the data in R/3 for component and operational scrap.
    There is a Start routine to the ODS and also to the cube. I am not good at ABAP so requesting your Help.
    Here is the ODS Code:
    tables: /BI0/PPRODORDER.
    loop at data_package.
    select single COORD_TYPE
    PRODVERS
    into (/BI0/PPRODORDER-COORD_TYPE,
    /BI0/PPRODORDER-PRODVERS)
    from /BI0/PPRODORDER
    where PRODORDER = data_package-PRODORDER
    and OBJVERS = 'A'.
    if sy-subrc = 0.
    if /BI0/PPRODORDER-COORD_TYPE = 'XXXX'
    or /BI0/PPRODORDER-COORD_TYPE = 'YYYY'.
    data_package-PRODVERS = space.
    else.
    data_package-PRODVERS = /BI0/PPRODORDER-PRODVERS.
    endif.
    endif.
    if data_package-calday = space
    or data_package-calday = '00000000'.
    if data_package-TGTCONSQTY NE 0.
    data_package-calday = data_package-ACTRELDATE.
    endif.
    endif.
    modify data_package.
    endloop.
    Here is Cube Code:
    tables: /BI0/PPRODORDER,
    /BIC/ODS.
    TYPES:
    BEGIN OF ys_mat_unit,
    material TYPE /bi0/oimaterial,
    mat_unit TYPE /bi0/oimat_unit,
    numerator TYPE /bi0/oinumerator,
    denomintr TYPE /bi0/oidenomintr,
    END OF ys_mat_unit.
    DATA:
    l_s_mat_unit TYPE ys_mat_unit,
    e_factor type p decimals 5.
    loop at data_package.
    select single COORD_TYPE
    PRODVERS
    into (/BI0/PPRODORDER-COORD_TYPE,
    /BI0/PPRODORDER-PRODVERS)
    from /BI0/PPRODORDER
    where PRODORDER = data_package-PRODORDER
    and OBJVERS = 'A'.
    if sy-subrc = 0.
    if /BI0/PPRODORDER-COORD_TYPE = 'XXX'
    or /BI0/PPRODORDER-COORD_TYPE = 'YYY'.
    data_package-PRODVERS = space.
    else.
    data_package-PRODVERS = /BI0/PPRODORDER-PRODVERS.
    endif.
    endif.
    if data_package-calday = space
    or data_package-calday = '00000000'.
    if data_package-TGTCONSQTY NE 0.
    data_package-calday = data_package-ACTRELDATE.
    endif.
    endif.
    data_package-agsu = 'GSU'.
    data_package-agsu_qty = 0.
    select single gr_qty
    base_uom
    into (/BIC/ODS-gr_qty,
    /BIC/ODS-base_uom)
    from /BIC/ODS
    where prodorder = data_package-prodorder
    and material = data_package-material.
    if sy-subrc = 0.
    if /BIC/ODS-base_uom = 'GSU'.
    data_package-agsu_qty = /BIC/ODS-gr_qty.
    else.
    SELECT SINGLE * FROM /bi0/pmat_unit
    INTO CORRESPONDING FIELDS OF l_s_mat_unit
    WHERE material = data_package-material
    AND mat_unit = 'GSU'
    AND objvers = 'A'.
    IF sy-subrc = 0.
    IF l_s_mat_unit-denomintr <> 0.
    e_factor = l_s_mat_unit-denomintr /
    l_s_mat_unit-numerator.
    multiply /BIC/ODS-gr_qty by e_factor.
    data_package-agsu_qty = /BIC/ODS-gr_qty.
    ENDIF.
    else.
    CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
    EXPORTING
    INPUT = /BIC/ODS-gr_qty
    NO_TYPE_CHECK = 'X'
    ROUND_SIGN = ' '
    UNIT_IN = /BIC/ODS-base_uom
    UNIT_OUT = 'GSU'
    IMPORTING
    OUTPUT = DATA_PACKAGE-gsu_qty
    EXCEPTIONS
    CONVERSION_NOT_FOUND = 1
    DIVISION_BY_ZERO = 2
    INPUT_INVALID = 3
    OUTPUT_INVALID = 4
    OVERFLOW = 5
    TYPE_INVALID = 6
    UNITS_MISSING = 7
    UNIT_IN_NOT_FOUND = 8
    UNIT_OUT_NOT_FOUND = 9
    OTHERS = 10.
    endif.
    endif.
    endif.
    modify data_package.
    endloop.
    some how the AGSU qyt is not populating in the cube and when I dbug the code, I could see a clean record in the internal table but not in the cube.
    your suggestion and solutions would be highly appreciated.
    thanks,
    Swathi.

    Hi Swathi
    In ODs we have option of overwriting and addition however in Cube we have only adition.Thats why you are getting multiple enteries.
    If you are running daily full load on the cube then please delete the earlier requests.
    So at one point of time there should be only one full load request in cube. Hope this will solve your problem.
    Regards,
    Monika

  • Under Options , Applications There are multiple entries for the same item (Acrobat Document). how can I delete the duplicates?

    Under Options, Applications there are multiple entries for the same item. (Adobe Acrobat) . Three show Adobe Acrobat Reader 9.3 and the other shows (ask) or (save file) with no ability to select Acrobat Reader . Is there a way to edit this list to remove the duplicates and
    the incorrect entry? Adobe installed a very quick update today.

    They are all different. Hover your mouse pointer over each of the "Content Type" descriptions and you should see a "tooltip" to see that each has a different description.
    You need to update your plugins. It is important to keep them updated due to continuing security fixes and improvements in those plug-ins:
    * Adobe Shockwave for Director Netscape plug-in, version 11.5 (you '''<u>may</u>''' need to update)
    * Shockwave Flash 10.1 r53
    * Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    #Check your plugin versions: http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update Shockwave Flash'''
    #*Use Firefox to Download and SAVE to your hard drive from the link in article below
    #*SAVE to your Desktop so you can find it
    #*After download completes, close Firefox
    #*Click on the file you just downloaded and install
    #**Note: Vista and Win7 users may need to right-click the installer downloaded and choose "Run as Administrator"
    #**Note: Most browsers other than IE will also get updated with this one download
    #**Note: To update IE, same procedure '''<u>but use IE</u>''' to go: http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_ax.exe
    #*After installation, restart Firefox and check your version again.
    #*'''<u>Download link and other information</u>''': https://support.mozilla.com/en-US/kb/Managing+the+Flash+plugin#Updating_Flash
    #* Also see: http://support.mozilla.com/en-US/kb/Installing+the+Flash+plugin
    #* Also see (if needed): http://kb2.adobe.com/cps/191/tn_19166.html#main_Uninstall
    #'''Update Java:'''
    #* Download and update instructions: https://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox

  • How to rid of multiple entries in ical

    How the blazes do you you get rid of MULTIPLE entries in ical? I have read many answers and printed off a few to follow them but invariably i get to a point where I am unable to take the next step! I back track and and unable to find a fault of where I went wrong!! Then I have to ask myself WHY? Why on earth am I having to go to such extreme lengths to get rid of the unwanted entries?
    Come on now Apple it is you who should be providing the simple logic answer to this?
    I decided to give up? just ignore the other entries it easier than going frantic trying (and anyway I am frightened I may throw the macbook in my temper)
    bye bye
    bob

    Hi pvonk
    I do know how to delete the odd file but I have things like bank holidays entered 7 or 8 times and Trooping the colour 15 entres Queens jubilee 14 times.
    I just want to stop the thing from doing that and if there is a way my question is why do I have to do it? surely apple should fix it or whatever
    peardrop

  • ITunes.exe - Entry Point Not Found itunes will install but wont run!!!!!!!!

    I updated itunes and it wont work. i unistalled all apple apps, about 5 to 10 times. i get this message on my HP 530,32 bit windows vista. At the top in the error window it says
    *iTunes.exe - Entry Point Not Found* Then under that in the error box it says:
    *The procedure entry point*
    *QTCF_CFUniCharGetUnicodePropertyDataForPlane could not be located in the dynamic link library QTCF.dll.*
    What do i DO PLEASE HELP ME OUT!!!!!!!!

    I found the qtcf.dll file in the sys32 moved it to the desktop tried iTunes and still same error message as above.
    Okay ... sometimes there can be multiple copies of them lurking about on a PC.
    Try heading into Computer, and typing QTCF.dll in your Search field. When Vista tells you it can't find the file, click "advanced" and tick the "Search hidden, non-indexed and system files (might be slow)" and then start another search.
    This search *will indeed be slow.* Wait until the green progress bar up at the top of the screen has completely vanished, otherwise you might accidentally stop the search too soon.
    What copies of QTCF.dll do you find, and where are their file locations? (The default location on a 32-bit Vista PC is in C:\Program Files\QuickTime\QTSystem\QTCF.dll)

  • Error messages - DDE Server Windows itunes.exe - Entry point Not found and iTunesHelper.exe - The procedure entry point asl_add_log_file could not be located in the dynamic link Library ASL.dll

    Hi
            I have tried to research these problems I am getting, but have not been able to resolve them.
    1st is the above DDE Server Windows iTunes.exe - entry point not found.
    This only occurs when I try to start iTunes.
    if I click ok , several times, iTunes will start but slowly.
    If at any time I have to reboot my computer I get
    iTunesHelper.exe - the procedure entry point asl_add_log_file could not be located in the dynamic link library ASL.dll
    if I click 3 times OK it goes away.
    To this end I have uninstalled iTunes and rebooted my machine then gone to iTunes web site and downloaded the latest version.
    Installing it but still get the same errors on reboot and trying to run iTunes
    Anyone any ideas please.
    I have a self build PC it has an Intel core 2 quad Q6000 @ 2.40GHz
    Ram 4.00GB
    32bit OS
    Windows 7 Ultimate SP1
    Firewall - Zonealarm
    Virus   -  Zonealarm
    Thanks in advance
    Steve
    Message was edited by: Ybslik
    Message was edited by: Ybslik

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. If you're using Vista or 7, now head into your Uninstall a program control panel, select "Apple Application Support" and then click "Repair". If you're using XP, head into your Add or Remove Programs control panel, select "Apple Application Support", click "Change" and then click "Repair".
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post. (If you've got XP, although the procedure is for Vista and 7, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things.)
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever

  • Error: EdgeInspect.exe - Entry Point Not Found

    I'm getting the following error message when launching the Adobe Edge Inspect:
    ---------------------------EdgeInspect.exe - Entry Point Not Found---------------------------The procedure entry point SetGestureConfig could not be located in the dynamic link library USER32.dll. ---------------------------OK   ---------------------------
    Followed by another dialog mentioning C:\Program Files (x86)\Adobe\Adobe Edge Inspect\EdgeInspect.exe Edge Inspect has stopped working
    More details:
    Problem signature:
      Problem Event Name:          APPCRASH
      Application Name:          EdgeInspect.exe
      Application Version:          1.0.372.4762
      Application Timestamp:          51098b6d
      Fault Module Name:          USER32.dll!SetGestureConfig
      Fault Module Version:          6.0.6002.18541
      Fault Module Timestamp:          4ec3e39f
      Exception Code:          c0000139
      Exception Offset:          0006f52f
      OS Version:          6.0.6002.2.2.0.256.6
      Locale ID:          1033
      Additional Information 1:          9d13
      Additional Information 2:          1abee00edb3fc1158f9ad6f44f0f6be8
      Additional Information 3:          9d13
      Additional Information 4:          1abee00edb3fc1158f9ad6f44f0f6be8
    I tried googling but I haven't found any solutions, so I thought I'd ask for help here.

    No, there is no timeline like that. Vista support for any product will vary from team to team depending on a huge variety of factors.
    For us, we're not even sure why it no longers works on Vista. As I said above, it could be a recent change we made or a change in one of the libraries we use with the desktop application. The solution is nowhere near as simple as posting the older version of the desktop application. Edge Inspect is a system of multiple pieces that all have to work together and be able to communicate with each other. Even if we posted the older version of the desktop piece, it's likely that you'd find Edge Inspect features that didn't work because the other pieces no longer spoke to it correctly. It would get progressively worse with each release until it stopped working entirely. And we simply don't have the resources to support a Vista version of the desktop application and keep it up to date with all the other pieces of the application.
    We never devoted any of our limited dev or testing resources to testing on Vista and can't start doing that now. In our original FAQ we noted that it was not supported but that we didn't know of any issues with Edge Inspect running on Vista. That's now changed. I've updated the FAQ, and we'll be modifying the installer to reflect the new situation.
    I'm sorry, but the final word from engineering and product management is in, Edge Inspect does not support Vista.

  • I downloaded the latest version of itunes.  Now I cannot open iTunes.  I receive this error message: The procedure entry point AVCFAssetCreateWithByteStreamAndOptions could not be located in the dynamic link library AVfoundationCF.dll.  Thoughts?

    I downloaded the latest version of iTunes on my PC.  Now I cannot open iTunes.  I receive the following error message: "The procedure entry point AVCFAssetCreateWithByteStreamAndOptions could not be located in the dynamic link library AVfoundationCF.dll"  After pressing the "OK" button I receive a second error message: 'iTunes not installed correctly.  Please reinstall iTunes.  Error 7 (Windows error 127)".  I've uninstalled iTunes and reinstalled to no avail.  I've also eliminated the temp files (per suggestions on the trouble-shooting page) and no luck.  I also tried system restore and that did not fix the problem.  Any thougths on a repair?   

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. Head into your Add or Remove Programs control panel, select "Apple Application Support", click "Change" and then click "Repair".
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post. (Although the procedure is for Vista and 7 and you've got XP, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things.)
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever since I did that my itunes won't open any more.  Itunes starts but before anything loads a

  • Help!  I tried downloading version 10.6 off the website rather than through my current iTunes software.  The first set up was not successful, 2nd attempt-chose repair. Now I just receive a warning everytime that the entry point cannot be found.

    Full details:
    When I click on any iTunes program link, I receive the following warning "The procedure entry point AVCF AssetCreateWithByteStreamAndOptions could not be located in the dynamic link library AVFoundationCF.dll."
    I click ok and it tells me "iTunes was not installed correctly.  Please reinstall iTunes.  Error 7 (Windows error 127)."  I tried reinstalling twice through a repair and this has not been successful.  The only other option available is to remove the software off my computer than (I assume) start again.  This makes me nervous as I fear I will lose all the songs and videos previously purchased.
    I cannot find my original iPod which is why I purchased a new one today.
    Grateful for any assistance or expertise!

    I receive the following warning "The procedure entry point AVCF AssetCreateWithByteStreamAndOptions could not be located in the dynamic link library AVFoundationCF.dll."
    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. If you're using Vista or 7,now head into your Uninstall a program control panel, select "Apple Application Support" and then click "Repair". If you're using XP, head into your Add or Remove Programs control panel, select "Apple Application Support", click "Change" and then click "Repair".
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post. (If you've got XP, although the procedure is for Vista and 7, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things.)
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever

  • HT1926 I am getting this message when loading Itunes after updating to the latest upgrade..The procedure entry point uloc_getLocaleforLCID_4_0 could not be located in the dynamic link library icuuc40.dll (i have windows 7)

    I have windows 7 and after updating Itunes to the latest version, I get this error message...
    The procedure entry point uloc_getLocateeForLCID_4_0 could not be located in the dynamic link library icuuc40.dll.
    I have tried repairing and reinstalling even deledted Itunes and did a re-install but keep getting the same error message.
    what can I do to fix this error?

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. If you're using Vista or 7, now head into your Uninstall a program control panel, select "Apple Application Support" and then click "Repair". If you're using XP, head into your Add or Remove Programs control panel, select "Apple Application Support", click "Change" and then click "Repair".
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post. (If you've got XP, although the procedure is for Vista and 7, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things.)
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever

  • When i open iTunes i get this message "iTunes: iTunes.exe - Entry Point Not Found" "The procedure entry point RefAudioFileWritePackets could not be located in the dynamic link library CoreAudioToolbox.dll." how do i fix this!

    when i open iTunes i get this message "iTunes: iTunes.exe - Entry Point Not Found" "The procedure entry point RefAudioFileWritePackets could not be located in the dynamic link library CoreAudioToolbox.dll." how do i fix this!

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. Now head into your Uninstall a program control panel, select "Apple Application Support" and then click "Repair".
    Does iTunes launch properly now?
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post:
    Re: I recently updated to vista service pack 2 and I updated to itunes

  • I just tried updating to iTunes 10.7 on my pc and when I try to launch it I get this error message-The procedure entry point AVCFPlayerSetDirect3DDevice could not be located in the dynamic library AVFoundationCF.dll.  Any Ideas?

    I just tried updating to iTunes 10.7 and when I try to launch it I get this error message-The procedure entry point AVCFPlayerSetDirect3DDevice could not be located in the dynamic library AVFoundationCF.dll.  Them it tells me to re-install iTunes and the same thing happens again.  Any Ideas?

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. If you're using Vista or 7, now head into your Uninstall a program control panel, select "Apple Application Support" and then click "Repair". If you're using XP, head into your Add or Remove Programs control panel, select "Apple Application Support", click "Change" and then click "Repair".
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post. (If you've got XP, although the procedure is for Vista and 7, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things.)
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever

  • 11.2 iTunes update has made me unable to open iTunes. It says "The procedure entry point ADiAdID_AquireMatchSlotIfNecessary could not be located in the dynamic link library iAdCore.dll" I have done everything imaginable! Please help?!

    I deleted, reinstalled, searched, enabled, disabled--EVERYTHING and yet iTunes will not open! This is exactly why I hate updates rom Apple because they do this time and time again. I deleted multiple .dll files and nothing has worked. This is a glitch from the newest update 11.2. It says: "The procedure entry point ADiAdID_AquireMatchSlotIfNecessary could not be located in the dynamic link library iAdCore.dll" and I have no idea what the heck that means!
    If there is anybody that is having similar issues and know of what the issue might be, please help =[
    Thanks.

    Hi, Did you strip out all components, delete the named folders and reboot as in the second box of  Troubleshooting issues with iTunes for Windows updates?
    Checking on my computer here (Windows XP SP3 32 bit) I have one copy of iAdCore.dll in the main \Program Files\iTunes folder with the following properties:
    Size 3,004  KB
    Created 8th May 2014
    Modified 8th May 2014
    File Version 1.0.0.1
    Product Version 1.0.0.1
    I'll try to get a look at 64-bit system later to confirm the correct path.
    tt2

  • ITunes 10.7 quits on launch (Windows 7 64 bit) - "The procedure entry point CVDirect3DTextureGetSurface could not be located in the dynamic link library CoreVideo.dll."

    I get the following dialog upon launching iTunes 10.7 on my Windows 7 64 bit
    "The procedure entry point CVDirect3DTextureGetSurface could not be located in the dynamic link library CoreVideo.dll."
    After that another dialog
    "iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows Error 127"
    I repaired iTunes. Same error.
    I uninstalled and reinstalled. Same error.
    Please help.

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. If you're using Vista or 7, now head into your Uninstall a program control panel, select "Apple Application Support" and then click "Repair". If you're using XP, head into your Add or Remove Programs control panel, select "Apple Application Support", click "Change" and then click "Repair".
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post. (If you've got XP, although the procedure is for Vista and 7, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things.)
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever

Maybe you are looking for