Work Area Wizard problem

The 'Workarea Wizard' appears disabled in the Welcome screen of the Repository Object Navigator and in the Tools menu into this app.
The help mention something about a WorkArea privilege that I am not sure the Repsitory Owner has:
Note: You must have the Workareas repository privilege before you can perform this operation. The repository owner can assign this privilege to you.This are the system privileges of the Repository Owner:
SQL> select privilege,admin_option from user_sys_privs;
PRIVILEGE                                ADM
CREATE ANY SYNONYM                       NO
CREATE PROCEDURE                         NO
CREATE SEQUENCE                          NO
CREATE SYNONYM                           NO
CREATE TABLE                             NO
DROP ANY SYNONYM                         NO
UNLIMITED TABLESPACE                     NOAny idea about this?

Ulises,
You need to enable Versioning. Do this by starting the Repository Administration Utility (RAU) as the repository owner. Select Options --> Enable Version Support.
Once enabled, you cannot disable version support but you will be able to manage Work Areas.
Hope this helps...
J.T.

Similar Messages

  • Dreamweaver 8 work area redraw problem

    Hi all, I'm having severe problems with screen refreshes in
    the work area - dreamweaver doesn't seem to be able to redraw the
    screen. I've no idea what is going on to try and resolve the
    problem and have tried completely removing dreamweaver and doing a
    'clean' reinstall to no avail.
    When first started up dreamwaver draws the menus, property
    bars and tool palettes ok but the Windows XP desktop shows in the
    workarea. pages can be displayed and worked on alright in the split
    window view, but neither the code or design views display
    correctly, and CSS style sheets cannot be displayed for editing (a
    window appears, but you can't see anything in it - or a split
    code/design window style is displayed). dragging a document window
    around the workarea leaves a trail of 'echos' of the window in the
    work area.
    This is a complete mystery to me - have tried installing on
    two different machines (both WinXP SP2) and applying available
    updates to DW8... similar problems on both machines.
    Anyone got any ideas?

    Please provide a link (URL).....
    Regards
    John Waller

  • Error when trying to copy a work area in Oracle designer

    In oracle designer,I tried to copy a work area by selecting.
    File-->>Change work area.
    Then from the "Work area" pop up window,I selected the new option.
    In the Create work area wizard i chose "Copy a work area" and gave the Name ,description and the work area to be copied.
    When i click the finish button,I am getting the following error.
    "CDR-01005: Workarea compilation failed: ORA-01422: exact fetch returns more than requested number of rows. "
    Please let me know how to copy a work area in Oracle designer.
    Thanks in advance.

    Note 277801.1
    Views Return Records From The Wastebasket.
    Possible Symptoms
    ~~~~~~~~~~~~~~~~~
    1) executing a SELECT FROM CI_... views return more rows than expected.
    2) SELECT ... INTO ... FROM CI_... views raises error
    ORA-1422: exact fetch returns more than requested number of rows.
    3) Deleting an object from the repository fails with the following errors:
    RME-00020: Internal API error -
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "<repos_owner>.JR_NAME", line 3680
    ORA-06512: at "<repos_owner>.JR_NAME", line 4138
    ORA-06512: at "<repos_owner>.JR_ERROR", line 193
    ORA-06512: at "<repos_owner>.SDD_TAB_D", line 961
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-04088: error during execution of trigger '<repos_owner>.SDD_TAB_D'
    NB: the name of the trigger (SDD_TAB_D in the above example) will vary
    depending on the object type you are deleting
    4) Compilation of a Workarea fails with the following errors:
    CDR-01005: Workarea compilation failed:
    ORA-01422: exact fetch returns more than requested number of rows.
    Workaround
    ~~~~~~~~~~
    For symptoms 1 and 2, define the context of a workarea before selecting from
    the CI_... views:
    exec jr_context.set_workarea ('<Workarea Name>');
    For the other symptoms, the errors are caused by RDBMS bugs that were fixed
    in the last patch set releases of databases.
    We recommend that you upgrade to a version of the database that is certified
    with the release of Designer that you are using.
    See Note 60705.1 for details

  • Problem in modifying the code using work area concept

    Hi,
    I am working on a code in which i am on the code in which i am using the modify statement but it is not giving the right output.
    here's d code:-
    LOOP AT T_ITPO5 INTO W_ITPO5.
            LOOP AT T_ITPO4 INTO W_ITPO4 WHERE AUFNR = W_ITPO5-AUFNR.
           LOOP AT T_ITPO4 INTO W_ITPO4 FROM WV_INDEX.
             IF W_ITPO4-AUFNR EQ W_ITPO5-AUFNR.
             IF ITPO4-NTGEW <> 0 .
                CALL FUNCTION 'ZGET_ITEM_WEIGHT'
                  EXPORTING
                    P_BUID   = W_ITPO4-WERKS
                    P_ITEMID = W_ITPO4-MATNR
                    P_QTY    = 1
                    P_UOM    = W_ITPO4-MEINS
                    P_UOM1   = 'KG'
                  IMPORTING
                    P_RETVAL = W_ITPO4-WTKG.
                TOTWT1 = W_ITPO4-WTKG * W_ITPO4-MENGE.
             IF W_ITPO4-BWART = '261'.
              W_ITPO5-I_QTY = W_ITPO5-I_QTY + TOTWT1.
             ELSEIF W_ITPO4-BWART = '101' OR W_ITPO4-BWART = '531'.
              W_ITPO5-I_QTY = W_ITPO5-I_QTY - TOTWT1.
             ENDIF.
           ENDLOOP.
             MODIFY T_ITPO5 INDEX SY-TABIX FROM W_ITPO5.
           MODIFY T_ITPO5 FROM W_ITPO5 TRANSPORTING AUFNR.
       ENDLOOP.
         WRITE: / 'PRD.NO       ITEM DESCRIPTION                               WIP(KGS)'.
        ULINE.
        LOOP AT T_ITPO5 INTO W_ITPO5.
          READ TABLE T_ITPO1 INTO W_ITPO1 WITH KEY AUFNR = W_ITPO5-AUFNR.
          SELECT SINGLE MAKTG FROM MAKT INTO W_ITPO5-ITEMDESC WHERE MATNR = W_ITPO1-MATNR.
          if sy-subrc = 0 .
          WRITE: / W_ITPO5-AUFNR,W_ITPO5-ITEMDESC,W_ITPO5-I_QTY.
          TOT_QTY = TOT_QTY + W_ITPO5-I_QTY.
          else.
          write 'Unsuccessful'.
          endif.
        ENDLOOP.
        ULINE.
        FORMAT COLOR 3.
        WRITE: / 'GTOTAL',55 TOT_QTY.
        FORMAT COLOR OFF.
    plzz provide me guidelines to solve this problem.

    here's d code;-
    TYPES: BEGIN OF ITPO1,
           AUFNR TYPE AFPO-AUFNR,      "Order Number
           PSMNG TYPE AFPO-PSMNG,      "Order item quantity
           WEMNG TYPE AFPO-WEMNG,      "Quantity of goods received for the order item
           DWERK TYPE AFPO-DWERK,      "Plant
           MATNR LIKE AFPO-MATNR,      "Item Id
           END OF ITPO1.
    DECLARATION FOR AUFM TABLE
    TYPES: BEGIN OF ITPO4,
           AUFNR TYPE AUFM-AUFNR,      "Order Number
           BWART TYPE AUFM-BWART,      "Movement Type (Inventory Management)
           MENGE TYPE AUFM-MENGE,      "Quantity
           MEINS TYPE AUFM-MEINS,      "Base Unit of Measure
           BLDAT TYPE AUFM-BLDAT,      "Document Date in Document
           WERKS TYPE AUFM-WERKS,      "Plant
           MATNR TYPE AUFM-MATNR,      "Material Number
           NTGEW TYPE MARA-NTGEW,      "Net Weight
           WTKG  TYPE MARA-NTGEW,
           END OF ITPO4,
           BEGIN OF ITPO5 ,
           AUFNR TYPE AUFM-AUFNR,
           MENGE TYPE AUFM-MENGE,
           I_QTY TYPE AUFM-MENGE,
           ITEMDESC LIKE MAKT-MAKTG,
           END OF ITPO5.
        WORK AREA AND INTERNAL TABLE DECLARATION
    DATA : W_ITPO1 TYPE ITPO1,
           W_ITPO4 TYPE ITPO4,
           W_ITPO5 TYPE ITPO5,
           T_ITPO1 TYPE ITPO1 OCCURS 0,
           T_ITPO4 TYPE ITPO4 OCCURS 0,
           T_ITPO5 TYPE ITPO5 OCCURS 0.
    VARIABLES
    DATA: TOTWT1 LIKE AUFM-MENGE,
          TOT_QTY LIKE AUFM-MENGE.
    PARAMETERS N SELECT-OPTIONS
    PARAMETERS: PLANT LIKE AFPO-DWERK.
    SELECT-OPTIONS: PO_DATE FOR AFKO-GSTRP.
        LOOP AT T_ITPO5 INTO W_ITPO5.
            LOOP AT T_ITPO4 INTO W_ITPO4 WHERE AUFNR = W_ITPO5-AUFNR.
                CALL FUNCTION 'ZGET_ITEM_WEIGHT'
                  EXPORTING
                    P_BUID   = W_ITPO4-WERKS
                    P_ITEMID = W_ITPO4-MATNR
                    P_QTY    = 1
                    P_UOM    = W_ITPO4-MEINS
                    P_UOM1   = 'KG'
                  IMPORTING
                    P_RETVAL = W_ITPO4-WTKG.
                TOTWT1 = W_ITPO4-WTKG * W_ITPO4-MENGE.
             IF W_ITPO4-BWART = '261'.
              W_ITPO5-I_QTY = W_ITPO5-I_QTY + TOTWT1.
             ELSEIF W_ITPO4-BWART = '101' OR W_ITPO4-BWART = '531'.
              W_ITPO5-I_QTY = W_ITPO5-I_QTY - TOTWT1.
             ENDIF.
           ENDLOOP.
             MODIFY T_ITPO5 INDEX SY-TABIX FROM W_ITPO5.
           MODIFY T_ITPO5 FROM W_ITPO5 TRANSPORTING AUFNR.
       ENDLOOP.
         WRITE: / 'PRD.NO       ITEM DESCRIPTION                               WIP(KGS)'.
        ULINE.
        LOOP AT T_ITPO5 INTO W_ITPO5.
          READ TABLE T_ITPO1 INTO W_ITPO1 WITH KEY AUFNR = W_ITPO5-AUFNR.
          SELECT SINGLE MAKTG FROM MAKT INTO W_ITPO5-ITEMDESC WHERE MATNR = W_ITPO1-MATNR.
          if sy-subrc = 0 .
          WRITE: / W_ITPO5-AUFNR,W_ITPO5-ITEMDESC,W_ITPO5-I_QTY.
          TOT_QTY = TOT_QTY + W_ITPO5-I_QTY.
          else.
          write 'Unsuccessful'.
          endif.
        ENDLOOP.
        ULINE.
        FORMAT COLOR 3.
        WRITE: / 'GTOTAL',55 TOT_QTY.
        FORMAT COLOR OFF.
    I want to have output that the production order is displayed along with the deficit quantity. but using this concept it shows only production order no. and qty 0.

  • Problem in Printing the work area

    Hi Everybody,
    I'm working in upgrade project.
    in 4.7 version, directly trying to print the work area and assign to some other fields.
    Eg: write: Mara.
    text = mara.
    but in 6.0, its not allowing to assign directly like this.
    Plz help me urgently. B'coz, we struck in middle.
    Thanks in advance.
    Regards,
    JaganMohan.

    Hi,
    basically the problem might be in the ecc 6.0 for the attributes of the program where u r writing it might be u checked the unicode check box if it so remove it and then try or else it is proiblem with the unicode in the ecc 6.0 system where u r working
    plzz reward if it is usefull
    plzz dont forget to reward...

  • I am getting problem with internal table & work area declaration.

    I am working with 'makt' table ..with the table makt i need to work with styles attributes ..so i declared like this
    TYPES : BEGIN OF ty_makt,
             matnr TYPE makt-matnr,
             spras TYPE makt-spras,
             maktx TYPE makt-maktx,
             maktg TYPE makt-maktg,
             celltab TYPE lvc_t_styl,
           END OF ty_makt.
    DATA : i_makt TYPE TABLE OF ty_makt.
    DATA : wa_makt TYPE ty_makt .
        But end of program i need to update dbtable "makt"...i am getting problem with internal table & work area declaration.
    i think makt table fields mapping and internal table/work area mapping is not correct. so please help me to get out from this.

    Hi Nagasankar,
    TYPES : BEGIN OF TY_MATNR,
                  MATNR TYPE MAKT-MATNR,
                  SPRAS TYPE MAKT-SPRAS,
                  MAKTX TYPE MAKT-MAKTX,
                  MAKTX TYPE MAKT-MAKTG,
                  CELLTAB TYPE LVC_T_STYL,  " Its Working perfectly fine..
                 END OF TY_MAKT.
    DATA: IT_MAKT TYPE STANDARD TABLE OF TY_MAKT,
              WA_MAKT TYPE TY_MAKT.
    Its working perfectly fine. if still you are facing any issue post your complete code.
    Thanks,
    Sandeep

  • My Mac suddenly started getting a pop up message saying "There was a problem conecting to the server. URLs with the type "file" are not supported." My internet is working fine,no problem connecting. I just keep getting this message which I click off .

    My Mac suddenly started getting a pop up message saying "There was a problem conecting to the server. URLs with the type "file" are not supported." My internet is working fine,no problem connecting. I just keep getting this message which I click off and continue working.

    Open the Time Machine pane in System Preferences. If it shows that Time Machine is ON, click the padlock icon in the lower left corner, if necessary, to unlock it. Scroll to the bottom of the list of backup drives and click Add or Remove Backup Disk. Remove all the disks, then add them back. Quit System Preferences. Test.

  • Original Cisco GLC-GE-100FX gbics are not working in WS-C3560CG-8PC-S while Third-Party gbics work without any problems

    Hi all,
    i have a gbic problem with my WS-C3560CG-8PC-S.
    My original 100FX gbics are not working
    Mar 30 01:28:41.575: %PHY-4-SFP_NOT_SUPPORTED: The SFP in Gi0/10 is not supported
    Mar 30 01:28:41.575: %PM-4-ERR_DISABLE: gbic-invalid error detected on Gi0/10, putting Gi0/10 in err-disable state
    100FX Third-Party Gbics are working without any problems.
    NAME: "GigabitEthernet0/9", DESCR: "100BaseFX-FE SFP"
    PID: Unspecified       , VID:      , SN: AFFxxxxx
    What can i do?
    I tried different firmware versions (12.2 and 15.2(1)E3)
    I also tried the "service unsupported-transceiver" command.
    It still does not work with 8 Switches and 16 original gbics :(

    GLC-GE-100FX and GLC-T is not supported as documented in the 3560C Data Sheet.
    You could try contacting your Cisco SE/AM and request for a Product Enhancement Request (PER).

  • Adobe aftereffects is not working on os x maverics all updates...... is dis soft. will work on the new os x yosemite.??  y apple is nt working on dis problem wen users are facing problems with new os x .....

    Adobe aftereffects is not working on os x maverics all updates...... is dis soft. will work on the new os x yosemite.??  y apple is nt working on dis problem wen users are facing problems with new os x .....

    I suggest you contact Adobe tech support or their Mac forums for assistance.

  • Apple are working on the problem apparently..

    Ok, so my replacement PB arrived this morning.
    Same screen issue, and a completely dead battery too, along with the usual keyboard beeps when you type as mentioned in my previous topic on the General Forum. the light sabre noise is not present though, as this replacement has a Seagate drive rather than a Toshiba..
    The higher level tech support person said that they can send out a new battery no problem, as they are aware of the issue, but she also said that if I took my PB to a repair centre they could fix the screen problem too. I asked if the repair centres had different screens to the shipped models and she said 'yes, we are aware of the problem and are working on it.' Whether that was in fact an answer to my question or not I don't know...sometimes these guys are a little hard to understand.
    My argument is that I can't really do without my powerbook - my ibook isn't quite powerful enough and I need the portability. I also can't see a fix for this screen problem in the near future however, as there have only been one or two folks on here that say they have defect-free screens.
    I suggested that I hang on to my PB, as currently sending out a replacement will just cost Apple as I don't think the problem will be fixed, and then in a few months time if PB's are rolling off the line with fully functioning screens we can arrange for a replacement then.
    They weren't too keen on that idea, so we've gone for replacement number 3 right now (actually 4, as I had previously purchased a PB from a retail store too!)
    So.. I'm just hoping against hope that I get a brand new unit that has a decent screen (and a battery that works!), or I have to make the decision as to whether I ask for a refund and do without my PB until I'm guaranteed a unit that works.
    So far I can't fault Apple Customer service, although my opinion of the quality of the PB has taken a stark nosedive unfortunately.
      Mac OS X (10.4.2)  

    I have found a free program called iBackupBot. I got it off of cnet.com. This program allowed me to look at all of my contacts, notes and photos from the so called "back up does not exist" error message. I was able to copy and print out the items, I have not backedup anything yet, I'm gonna try that in the morning. I wanted to get this link out to all of you who are having problems with missing data. Good Luck to all of Us.
    http://Download.cnet.com/iBackupBot/3000-18551_4-10969873.html

  • We recently purchased the iphone5 (2) and are having problems with sound coming thru the earbuds when we plug them in to the iphones.  works fine with the ipad.  help please

    recently purchased the iphone5 (2 of them) and are having problems with the earpods.  no sound when plugged in to the iphone.  both phones.  works with the ipad.  help please

    Hi P5052,
    Welcome to the Support Communities ... and congratulations on the purchase of your iPhone 5's!
    It is very unusual that neither phone is working with the new earpods. 
    Have you tried a different headphone just to see if the issue is with the earpods or the iPhones?
    The article below will give you the basic troubleshooting steps for this issue.
    Click on the link below to see more details and screenshots. 
    I've quoted some helpful highlights for you:
    iPhone: Can't hear through the receiver or speakers
    Symptoms
    When someone calls, I can't hear them through the receiver or speaker phone, and I can't hear music through the speaker. I also can't be heard by someone who is calling me.
    Note: iPhone has one speaker, which is adjacent to the dock connector. On iPhone 4 or later models, the speaker is to the right of the dock connector. On earlier iPhone models, the speaker is to the left of the dock connector.
    Resolution
    Verify that there is nothing plugged in to the headset jack, including headsets, headphones, or adapters.
    Make sure the Ring/Silent switch is not switched to silent.
    While on the Home screen, adjust the volume buttons. If you see the icon below, indicating that headphones are attached, there may be debris or an object lodged in the headset jack:
    Check the headset jack. If there is an object lodged in the headset jack that is not easily removed, have the iPhone serviced to remove object.
    For Original iPhone: If there is light debris, such as lint, in the headset jack, try connecting a pair of headphones to the headset jack and then remove the headphones. Repeat this several times to remove the debris.
    If you have installed a protective film on the display, either ensure that the receiver is not covered or remove the film completely.
    Check the receiver mesh (which is on the top front of the device, above the display). If it appears blocked, use a clean, small, dry, soft-bristled brush to carefully and gently brush away any debris.
    If you have paired with a Bluetooth headset that is nearby, either use the headset or turn Bluetooth off (chooseSettings > General > Bluetooth).
    Restart the iPhone.
    If restarting the iPhone doesn't resolve the issue, try restoring the device.
    If the issue persists, go to the Service Answer Center - iPhone for information on service.
    Hope this helps!
    - Judy
    <Edited by Host>

  • Structure of table and work area are not compatible - table control wizard

    Structure of table and work area are not compatible is the error i am getting when specifying my internal table and work area in my table control?  What am I doing wrong?

    hii
    this error comes when you have different structure of work area then internal table..so work area will not work here and you will not be able to append records in internal table.
    check strucure of internal table and work area.it should be like below.
    TYPES:
      BEGIN OF type_s_kna1,
         kunnr LIKE kna1-kunnr,            " Customer Number
         name1 LIKE kna1-name1,            " Name
         vbeln LIKE vbap-vbeln,            " Sales Document
      END OF type_s_kna1.
    * Internal Table And Work Area Declarations For Customer Details      *
      DATA : t_kna1 TYPE STANDARD TABLE OF type_s_kna1,
             fs_kna1 TYPE type_s_kna1.
    regards
    twinkal

  • Work Area Problem

    Hi, I don't know what I did. My work area has moved up to the
    right side of the timeline. It's like two parallel columns now
    going side by side. I was not able to move it down UNDER the
    timeline. Does anybody have any ideas of how to fix it?

    your welcome!
    you might wanna mark this as answered so that others don't
    waste their time coming in here to check out the issue.

  • Photoshop CC work area troubleshooting on wacom tablet

    Hi I have a very odd problem going on with photoshop cc while using my wacom tablet. For the most part it runs fine with no real problems whatsoever. I can work on photoshop normally until I move my cursor away from the wacom screen, back to my MacBook, and click out of the program. Once I do this the work area in photoshop disappears. specifically meaning the window where my current file is being made goes blank. everything around the work area appears the same, like the tools, tabs, etc.  My only solution to this problem is to turn off and on the wacom tablet. It works fine after that until I click out of the program again. Its getting pretty annoying to deal with now so any help would be super appreciated. I will post pics to give you guys an example when I get the chance. Posting from my phone right now.
    here are my specs:
    Macbook Pro  15-inch
    2.3 GHz Intel Core i7
    4 GB 1600 MHz DDR3
    NVIDIA GeForce GT 650M 512 MB
    OSX 10.9.2 (13C64)
    Cintiq 13 HD

    Is it just slow drawing, or is actual computation (image size, rotate, GBlur, etc.) also slow?
    If the slowdown is drawing, then the most likely culprit would be the video card driver. Update your driver from the GPU maker's website.
    If the computation slows down, then something is interfering with Photoshop. We've seen some third party plugins, and some antivirus software cause slowdowns over time.

  • "iTunes has stopped working.  A problem caused the program to stop working correctly.   Windows will close the program and notify you if a solution is available."

    Whenever I connect to the iTunes store i receive an error message "iTunes has stopped working.  A problem caused the program to stop working correctly.   Windows will close the program and notify you if a solution is available."    This causes iTunes to close.  I am using iTunes version 10.5.0.142 on a Windows Vista (64) PC.  I have reinstalled iTunes selecting the "repair" option and also uninstalled and reinstalled iTunes.  Any help will be deeply appreciated.  Thank you.  Below is the result of the diagnositc.
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    HP-Pavilion BN474AV-ABA HPE-150t
    iTunes 10.5.0.142
    QuickTime not available
    FairPlay 1.13.35
    Apple Application Support 2.1.5
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.96
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.3.494
    Gracenote MusicID 1.9.3.106
    Gracenote Submit 1.9.3.136
    Gracenote DSP 1.9.3.44
    iTunes Serial Number 002FAD94098CD0E0
    Current user is not an administrator.
    The current local date and time is 2011-11-13 22:08:54.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce GT 220
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: 2cb3fff3fa771d265b0f8ffdcca13b55
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name: {F4A2029C-16AA-4BDF-8DB7-9EC2A75B5991}
    Description: Realtek PCIe GBE Family Controller
    IP Address: 192.168.1.6
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.1.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.1.1
    Lease Obtained: Sun Nov 13 21:09:29 2011
    Lease Expires: Mon Nov 14 21:09:29 2011
    DNS Servers: 192.168.1.1
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Disabled
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2011-11-13 22:02:08.
    **** CD/DVD Drive Tests ****
    LowerFilters: PxHlpa64 (2.0.0.0),
    UpperFilters: GEARAspiWDM (2.2.0.1),
    E: hp DVD A DH16ABLH, Rev 3HD9
    Data or MP3 CD in drive.
    Found 1 songs on CD, playing time 15:40 on CDROM media.
    Track 1, start time 00:02:00
    Get drive speed succeeded.
    The drive CDR speeds are: 8 16 24 32.
    The drive CDRW speeds are: 8.
    The drive DVDR speeds are: 8.
    The drive DVDRW speeds are: 8.
    The last failed audio CD burn had error code 4251(0x0000109b). It happened on drive E: hp CDDVDW TS-H653R on CDR media at speed 24X.
    **** Device Connectivity Tests ****
    iPodService 10.5.0.142 (x64) is currently running.
    iTunesHelper 10.5.0.142 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B34. Device is working properly.
    Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B3C. Device is working properly.
    FireWire (IEEE 1394) Host Controllers:
    VIA 1394 OHCI Compliant Host Controller. Device is working properly.
    Connected Device Information:
    Bruce's iTouch, iPod touch (2nd generation) running firmware version 4.2.1
    Serial Number: 1C9053CC201
    **** Device Sync Tests ****
    Sync tests completed successfully.

    Same exact thing with me.  And no help from apple.  Just dropped nearly $600 and cannot get a decent working setup.
    Apple's only suggestion was to uninstall iTunes and Quicktime, and re-install... of course (the I.T. Crowd tactic).
    The crash happens only on iTunes store access.

Maybe you are looking for

  • AET error while creating a new field

    Hi Experts, We have a requirement to create a check box/newfield on Account Details screen in Web UI. I am trying to create a new field using AET but am getting the following error message. Please help. 1. Error during generation of object CI_EEW_BUT

  • How To Get Oracle fresher Dba jobs in a company

    How to get oracle dba job in a company . Not a single company consider the fresher for dba. Then how can they get experience without start.

  • Mini Just Stopped Working

    I sat down the other day, and my display was on sleep mode. So I moved the mouse to wake it up, and nothing happened. Typed on the keyboard...nothing. Shut the mini off in the back, and turned it back on, and the light in the front came on, but no bo

  • I cant get my computer to authorize

    I have 3 ipods, and just got my iphone, but it wont let me get my apps on it, because its not authorized. I tried authorizing, but it says 3 computers are already authorized.. what to do?

  • How to clear Apple Configurator "Restore" items

    I would like to clear the old items in the Restore dropdown in Apple Configurator and I can't seem to find a pref file or anything that relates to it.