Unable to double click Value Hierarchy on CL31

Hi all,
We have recently upgraded from R/3 Release 4.6C to SAP ECC 6.0 and I am experiencing the following problems when running transaction CL31.
After selecting Class Type, Select Chars it brings up the "Value Hierarchy for Char. Sub Type" screen. When on this screen on the old system I am able to double click within the Hierarchy to expand all the Subtypes however the new system does not allow me to double click, it only allows expanding when clicking on the arrows to the left but not by the double click. When I double these Subtypes the following error comes up on the performance assistant. See below:
Value "SASOL1" cannot be selected
Message no. C1853
Diagnosis
From a value hierarchy, you want to choose a value that has subordinate values. This is not possible. You can only choose the lowest values in a value hierarchy.
Procedure
Explode the structure down to the lowest values and choose one of these.
Please help with this issue:)
Kind Regards,
Preneshen

Hi Hoshwa, and a warm welcome to the forums!
Do you have another Mouse to try?
I have tried the disk on other computers with no problem.
If you do need to A&I, you can use another Mac with Firewire as an expensive DVD drive...
If you have another Mac with Firewire & a FW cable, put the Install Disc in the other Mac, boot the Other Mac into Target mode...
http://docs.info.apple.com/article.html?artnum=58583
Boot the G4 with the Option key held down, see if the Install Disc in the other Mac shows up as a boot choice.
At this point I think you should get Applejack...
http://www.versiontracker.com/dyn/moreinfo/macosx/19596
After installing, reboot holding down CMD+s, (+s), then when the DOS like prompt shows, type in...
applejack AUTO
Then let it do all 5 of it's things.
At least it'll eliminate some questions if it doesn't fix it.
The 6 things it does are...
Correct any Disk problems.
Repair Permissions.
Clear out Cache Files.
Repair/check several plist files.
Dump the VM files for a fresh start.
Trash old Log files.
First reboot will be slower, sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files!
Disconnect the USB cable from any UPS so the system doesn't shut down in the middle of the process.

Similar Messages

  • Unable to double click after using at line-selection

    hi all...
    unable to double click after using at line-selection. But if i comment set pf-status, i can double click on the line but on first double click everytime i just get last record i.e. 200th and after second double click i'm not getting output. what is the problem? plz reply...
    REPORT  YP2 line-count 10(2).
    tables: lfa1, LFB1.
    data: itab like lfa1 occurs 0 with header line,
          JTAB LIKE LFB1 OCCURS 0 WITH HEADER LINE.
    SELECT-OPTIONS: vendor_n for lfa1-lifnr.
    *SET PF-STATUS 'MENU'.
    INITIALIZATION.
    vendor_n-low = '1'.
    vendor_n-high = '200'.
    vendor_n-option = 'BT'.
    APPEND vendor_n.
    clear vendor_n.
    At selection-screen.
    IF VENDOR_N-LOW < 1.
    MESSAGE w000(sabapdocu).
    clear vendor_n.
    ELSEIF vendor_n-HIGH > 200.
    MESSAGE S001(sabapdocu).
    ENDIF.
    START-OF-SELECTION.
    SELECT * FROM lfa1 INTO TABLE ITAB WHERE lifnr IN vendor_n.
    WRITE:5 SY-ULINE(72).
    LOOP AT ITAB.
    WRITE: /5 SY-VLINE,9 ITAB-lifnr,20 SY-VLINE, 22 ITAB-name1,58 SY-VLINE, 60 ITAB-telf1, 76 SY-VLINE.
    ENDLOOP.
    top-of-page.
    WRITE:/5 SY-ULINE(72).
    WRITE: /5 SY-VLINE, 'Vendor_code', 20 SY-VLINE, 28 'Name' ,58 SY-VLINE, 60 'Phone', 76 SY-VLINE.
    WRITE:/5 SY-ULINE(72).
    end-of-page.
    WRITE:5 SY-ULINE(72).
    WRITE:/ 'THE PAGE NO IS',SY-PAGNO.
    WRITE:/5 SY-ULINE(72).
    END-OF-SELECTION.
    WRITE: /5 sy-uline(72),/ 'THE RECORD IS CLOSED'.
    AT LINE-SELECTION.
    IF SY-LSIND = 1.
    SELECT * FROM  LFA1 INTO TABLE ITAB WHERE LIFNR = ITAB-LIFNR.
    LOOP AT ITAB.
    WRITE: /5 SY-VLINE,9 ITAB-lifnr,20 SY-VLINE, 22 ITAB-name1,58 SY-VLINE, 60 ITAB-telf1, 76 SY-VLINE.
    ENDLOOP.
    WRITE:/5 SY-ULINE(72).
    ELSEIF SY-LSIND = 2.
    WRITE:/5 SY-VLINE,6 'Vendor No.',17 SY-VLINE,18 'Company code',28 SY-VLINE, 29 'Created by',39 SY-VLINE.
    SELECT * FROM LFB1 INTO TABLE JTAB WHERE LIFNR = JTAB-LIFNR.
    LOOP AT JTAB.
    WRITE:/5 SY-VLINE,6 JTAB-LIFNR,17 SY-VLINE,18 JTAB-BUKRS,28 SY-VLINE, 29 JTAB-ERNAM,39 SY-VLINE.
    ENDLOOP.
    WRITE:/5 SY-ULINE(72).
    ENDIF.
    AT PF7.
    IF SY-LSIND = 1.
    SELECT * FROM  LFA1 INTO TABLE ITAB WHERE LIFNR = ITAB-LIFNR.
    LOOP AT ITAB.
    WRITE: /5 SY-VLINE,9 ITAB-lifnr,20 SY-VLINE, 22 ITAB-name1,58 SY-VLINE, 60 ITAB-telf1, 76 SY-VLINE.
    ENDLOOP.
    WRITE:/5 SY-ULINE(72).
    ELSEIF SY-LSIND = 2.
    SELECT * FROM LFB1 INTO TABLE JTAB WHERE LIFNR = JTAB-LIFNR.
    LOOP AT JTAB.
    WRITE:/5 SY-VLINE,6 JTAB-LIFNR,17 SY-VLINE,18 JTAB-BUKRS,28 SY-VLINE, 29 JTAB-ERNAM,39 SY-VLINE.
    ENDLOOP.
    WRITE:/5 SY-ULINE(72).
    ENDIF.
    AT USER-COMMAND.
    IF SY-UCOMM = '0001'.
    IF SY-LSIND = 1.
    SELECT * FROM  LFA1 INTO TABLE ITAB WHERE LIFNR = ITAB-LIFNR.
    LOOP AT ITAB.
    WRITE: /5 SY-VLINE,9 ITAB-lifnr,20 SY-VLINE, 22 ITAB-name1,58 SY-VLINE, 60 ITAB-telf1, 76 SY-VLINE.
    ENDLOOP.
    WRITE:/5 SY-ULINE(72).
    ELSEIF SY-LSIND = 2.
    SELECT * FROM LFB1 INTO TABLE JTAB WHERE LIFNR = JTAB-LIFNR.
    LOOP AT JTAB.
    WRITE:/5 SY-VLINE,6 JTAB-LIFNR,17 SY-VLINE,18 JTAB-BUKRS,28 SY-VLINE, 29 JTAB-ERNAM,39 SY-VLINE.
    ENDLOOP.
    WRITE:/5 SY-ULINE(72).
    ENDIF.
    ENDIF.

    Hi,
    copy and paste the code given below it works....
    START-OF-SELECTION.
    SELECT * FROM lfa1 INTO TABLE ITAB WHERE lifnr IN vendor_n.
    WRITE:5 SY-ULINE(72).
    LOOP AT ITAB.
    WRITE: /5 SY-VLINE,9 ITAB-lifnr,20 SY-VLINE, 22 ITAB-name1,58 SY-VLINE, 60 ITAB-telf1, 76 SY-VLINE.
    hide : itab-lifnr.
    ENDLOOP.
    clear itab.
    top-of-page.
    WRITE:/5 SY-ULINE(72).
    WRITE: /5 SY-VLINE, 'Vendor_code', 20 SY-VLINE, 28 'Name' ,58 SY-VLINE, 60 'Phone', 76 SY-VLINE.
    WRITE:/5 SY-ULINE(72).
    end-of-page.
    WRITE:5 SY-ULINE(72).
    WRITE:/ 'THE PAGE NO IS',SY-PAGNO.
    WRITE:/5 SY-ULINE(72).
    END-OF-SELECTION.
    WRITE: /5 sy-uline(72),/ 'THE RECORD IS CLOSED'.
    AT LINE-SELECTION.
    IF itab-lifnr is not initial.
    IF SY-LSIND = 1.
    SELECT * FROM  LFA1 INTO TABLE ITAB WHERE LIFNR = ITAB-LIFNR.
    LOOP AT ITAB.
    WRITE: /5 SY-VLINE,9 ITAB-lifnr,20 SY-VLINE, 22 ITAB-name1,58 SY-VLINE, 60 ITAB-telf1, 76 SY-VLINE.
    HIDE ITAB-LIFNR.
    ENDLOOP.
    CLEAR ITAB.
    WRITE:/5 SY-ULINE(72).
    ELSEIF SY-LSIND = 2.
    WRITE:/5 SY-VLINE,6 'Vendor No.',17 SY-VLINE,18 'Company code',28 SY-VLINE, 29 'Created by',39 SY-VLINE.
    SELECT * FROM LFB1 INTO TABLE JTAB WHERE LIFNR = ITAB-LIFNR.
    LOOP AT JTAB.
    WRITE:/5 SY-VLINE,6 JTAB-LIFNR,17 SY-VLINE,18 JTAB-BUKRS,28 SY-VLINE, 29 JTAB-ERNAM,39 SY-VLINE.
    ENDLOOP.
    CLEAR ITAB.
    WRITE:/5 SY-ULINE(72).
    ENDIF.
    ENDIF.
    AT PF7.
    IF itab-lifnr is not initial.
    IF SY-LSIND = 1.
    SELECT * FROM  LFA1 INTO TABLE ITAB WHERE LIFNR = ITAB-LIFNR.
    LOOP AT ITAB.
    WRITE: /5 SY-VLINE,9 ITAB-lifnr,20 SY-VLINE, 22 ITAB-name1,58 SY-VLINE, 60 ITAB-telf1, 76 SY-VLINE.
    HIDE ITAB-LIFNR.
    ENDLOOP.
    CLEAR ITAB.
    WRITE:/5 SY-ULINE(72).
    ELSEIF SY-LSIND = 2.
    SELECT * FROM LFB1 INTO TABLE JTAB WHERE LIFNR = JTAB-LIFNR.
    LOOP AT JTAB.
    WRITE:/5 SY-VLINE,6 JTAB-LIFNR,17 SY-VLINE,18 JTAB-BUKRS,28 SY-VLINE, 29 JTAB-ERNAM,39 SY-VLINE.
    ENDLOOP.
    CLEAR ITAB.
    WRITE:/5 SY-ULINE(72).
    ENDIF.
    ENDIF.
    AT USER-COMMAND.
    IF SY-UCOMM = '0001' and itab-lifnr is not initial.
    IF SY-LSIND = 1.
    SELECT * FROM  LFA1 INTO TABLE ITAB WHERE LIFNR = ITAB-LIFNR.
    LOOP AT ITAB.
    WRITE: /5 SY-VLINE,9 ITAB-lifnr,20 SY-VLINE, 22 ITAB-name1,58 SY-VLINE, 60 ITAB-telf1, 76 SY-VLINE.
    HIDE ITAB-LIFNR.
    ENDLOOP.
    clear ITAB.
    WRITE:/5 SY-ULINE(72).
    ELSEIF SY-LSIND = 2.
    SELECT * FROM LFB1 INTO TABLE JTAB WHERE LIFNR = JTAB-LIFNR.
    LOOP AT JTAB.
    WRITE:/5 SY-VLINE,6 JTAB-LIFNR,17 SY-VLINE,18 JTAB-BUKRS,28 SY-VLINE, 29 JTAB-ERNAM,39 SY-VLINE.
    ENDLOOP.
    CLEAR ITAB.
    WRITE:/5 SY-ULINE(72).
    ENDIF.
    ENDIF.
    Regards,
    Siddarth

  • I am unable to double click on anything on my MacBook pro, any suggestions?

    I am unable to double click on anything on my MacBook pro, any suggestions?

    1. Try slower double click speed.
        System Preference > Universal Access > Mouse & Trackpad
        Click the "Trackpad options" button.
        Set Double Click Speed at a slower speed.
    2. Take the MBP to the Apple store to have the battery and the trackpad checked.
    Best.

  • HT5192 After installing IOS 5.1, I am unable to double click the home button and access the camera. Is anyone else experiencing this issue? Does a fix or work aroud exist?

    After installing IOS 5.1, I am unable to double click the home button and access the camera. Is anyone else experiencing this issue? Does a fix or work aroud exist?

    I just updated--my Camera is a disaster.  Yes, I know how to turn (and position) the Camera now. However, every photo I take is UPSIDE DOWN in the Camera Roll OR Photo Stream.  Even worse, a number of my Apps (Weather Underground, for example) are ALSO now upside down.  Has anyone here experienced these serious orientation problems after this update?  I've read the 'Manual' and its as if it doesn't exist.  However, if I leave the Apple site, customer complaints about orientation abound...
    This is my first time posting here about an issue (well, the same issue - I posted last week about the Camera, and no one responded).  Any advice at all about how to get this corrected is much appreciated!
    Thank you!
    Lisa

  • Unable to double-click or drag/drop files to open.

    I'm running Photoshop CC 64 on a Windows 7 64 machine and am only able to open files in Photoshop by going to File->Open. Double-clicking from Explorer doesn't work and i can not drag/drop files into the open application window or taskbar icon. Right clicking on files and selecting "Open with" also doesn't work.
    I checked file associations and made sure to choose CC 64. If I right click on the shortcut and choose "Run As Administrator" which I have to do in order to get files to open between Lightroom and Photoshop (both need to be Run As Administrator), I'm still unable to open from Windows Explorer. However, if I check the box to "Run this program as administrator" in the shortcut's Compatibility tab, I can double-click to open from Explorer but am prompted with a UAC warning every time. Dragging/dropping into the open app still doesn't work.
    Opening between Bridge and PS works as expected so long as both programs are "Run As Administrator"
    Been searching the forums here and seen suggestions of similar but not the same issue, at least not that I've found.
    Anyone else experiencing? Suggested remedies?

    This is an OS permission problem.  Make sure you have ownership of the HD.  Do a web search on how to check.  External HD can be a problem for permission.

  • Unable to "double-click"

    After having issues with Leopard and FCP, I downgraded back to Tiger but now I am unable to use my double click feature, as well as the "right click" feature on my touch pad. Therefore I am unable to open my links in new tabs or save pictures, etc. It's not just my internet browser (sing Firefox) but I am unable to do that with anything. Help would be appreciated.

    Hi ngar and a warm welcome to the discussions.
    Have you reset the settings in System preferences/Keyboard and Mouse under the "trackpad" tab?
    You may also wish to try creating a new account in System preferences/Accounts to see if the problem still occurs.
    Cheers
    Rod

  • In osx 10.9 i am unable to double click on contacts to add to an email

    I was long able to merely click on the contacts icon when creating a new message and the contact would be added to the list of addressees. Since "upgrading" to OSX 10.9, that function seems to have disappeared. Is there a way to restore this?

    If the downloads are gone, it's possible that Windows is removing the downloads based on security policies set in IE. I realize that sounds strange, but it's related to Firefox's feature of submitting downloads to your virus scanner and marking them as having come from the internet.
    To test this theory, you could try disabling the scan feature. I assume you have good "real time" antivirus protection which checks every file saved to your hard drive. (If not, you really should get that, and you can use Microsoft's free [http://windows.microsoft.com/en-US/windows/products/security-essentials Microsoft Security Essentials] for now until you have time to review all the available choices.)
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''scan''' and pause while the list is filtered
    (3) Double-click '''browser.download.manager.scanWhenDone''' to toggle its value.
    Firefox now should ignore Windows' download security. Does it change how Windows handles the file?

  • Unable To Double Click Open Folders On Desktop!

    I am running a G4 450 mhz with 1GB Ram OS 10.4.11. Recently I have not been able to double click open folders or launch applications from the desktop. The cursor also seems very jerky. I can open with a Command O or using Open from the Menu bar. I have zapped the pRam, Reset Open Firmware, Repaired Prefs with no luck. I would prefer not to do an archive and install if I do not have to, as I understand that sometimes files and apps get messed up. Any suggestions would be greatly appreciated. Also, if i have to do an archive and install I have another problem. i am unable to boot from my 10.4 CD as the CD/DVD drive kicks it out. I have tried the disk on other computers with no problem. Other OS boot from this drive so I do not think it is the drive or the disk. I could boot off of a external hd disk set as my startup disk but Apple tells me that it I do this and try to mount the 10.4 disk on the desktop and do a archive and install from there it will not work, only if I boot off of the disk holding down the C key at startup. I am lost. Can anyone help!!!

    Hi Hoshwa, and a warm welcome to the forums!
    Do you have another Mouse to try?
    I have tried the disk on other computers with no problem.
    If you do need to A&I, you can use another Mac with Firewire as an expensive DVD drive...
    If you have another Mac with Firewire & a FW cable, put the Install Disc in the other Mac, boot the Other Mac into Target mode...
    http://docs.info.apple.com/article.html?artnum=58583
    Boot the G4 with the Option key held down, see if the Install Disc in the other Mac shows up as a boot choice.
    At this point I think you should get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, reboot holding down CMD+s, (+s), then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 6 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Trash old Log files.
    First reboot will be slower, sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files!
    Disconnect the USB cable from any UPS so the system doesn't shut down in the middle of the process.

  • OBIEE 11g Unable to browse multiple value hierarchy for analysis.

    Hi All,
    We are using OBIEE 11g Value Hierarchy feature to display GL Segment Hierarchies.
    -     We have set the hierarchies to be Ragged and Skipped Levels in the RPD Business Model.
    -     We have dragged the hierarchies from Business Model to Presentation Layer.
    -     When selecting the hierarchies during Analysis, the first hierarchy that is browsed appears correctly. The next hierarchy when browsed just hangs.
    For example:
    Step 1: Browse Hierarchy1 (Block). The values show correctly.
    Step 2: Browse Hierarchy2 (Account). The hierarchy does not open with a blinking circle remaining forever.
    Alternatively;
    If we selected, Hierarchy 2(Account) first, the hierarchy shows correctly, but when selecting Hierarchy1 (Block) a blinking circle appears and remains for ever without opening the hierarchy.
    The nqquery.log shows correct result. My suspicion is that the issue is on the front end presentation services/javascript side.
    Is there any additional setup/configuration required to open multiple value hierarchies during analysis.
    Thanks and Regards,
    Sasi

    I have a pretty good guess at the hanging problem, unforntunitly i have no solutions yet.
    I having same type of issue, hangs when building filters on for 2nd or 3rd dim table.. I can see obiee fireing off the query to populate the dropdown by running
    select distinct on and joining to the fact table and dimensions that the users usually have selecte prior to start creatinng the filters.
    It is sort of like doing a intra dimension filter.. Sounds good but if user does not cut way down on number of fact rows by the time 2nd filtered column is selected the generated query to populate the drop down can run and run.
    OBI SE Once and discoverer dd not do this, at least not out of the box.

  • I'm Unable to 'double click' when screen sharing from iMac to MBP

    I want to use my new iMac to display the Macbooks screen but the double click doesn't seem to work ( most of the time ) !
    I set up realVNC client on the iMac as well and the same problem happens, I can connect OK to windows hosts and can double click OK. This is a really odd problem it must be related to the VNC server built into OSX, is there a better/less buggy one that's free to use and easy enough to install ? I've never actually tried VNC to my MBP before.. I've recently started using the Remote desktop client from m$ too which seems OK
    I've also managed to get Virtual box to reproducible hang my entire system, I thought thte iMac had overheated and shut down at first, the top gets pretty warm.
    I am in love with this thing, 4 cores are definitively better than 2 !
    Simon

    I believe I may have fixed this. My wireless router kept on needing resets so I changed its 'channel' to Auto from hard set to 10 ( default setting infact ;0) )..
    Since I did that, the Doubleclick on VNC to MBP is working now and no more WIFI router reboots since. I Don't know if this is related to the new iMac on the net seems like a weird coincidence though if not. I can't really think of the reason for this BTW..

  • Search help exit while user double click

    Hi,
    As it was done earlier but while test facing some issue,Double clicked value from the output is not returned to input screen whatever thevalues only last value is returning to the screen
    please ooverview some of my code,
    IF callcontrol-step = 'DISP' or
        callcontrol-step = 'SELECT' or "or "AND
       callcontrol-step = 'RETURN'.
    *  EXIT.
       SELECT *
       from /ain/dm_loct
       into table lt_loct.
       IF sy-subrc eq 0.
         READ TABLE shlp-INTERFACE into ls_interface INDEX 1.
         if ls_interface-shlpfield = lc_gln. "'GLN'.
           lv_cp_gln = ls_interface-value.
         ENDIF.
         loop at lt_loct INTO ls_loct.
           CALL FUNCTION '/AIN/UI_MAPPED_LOC_ID_GET'
             EXPORTING
               IV_LOC_GUID = ls_loct-loc_guid
               IV_ID_TYPE  = lc_fmcg "'FMCG'
             IMPORTING
               ET_VALUE    = lt_value.
    *         ET_RETURN   =
           READ TABLE lt_value into ls_value with key element = lc_gln.
    *    'GLN'.
           if sy-subrc = 0.
             ls_loc_gln-GLN     = ls_value-element_value.
             ls_loc_gln-locdesc = ls_loct-locdesc.
             APPEND ls_loc_gln to lt_valuex.
           endif.
           REFRESH lt_value.
         ENDLOOP.
         endif.
    *-- Mape  output data
    if callcontrol-step = 'DISP' OR
        callcontrol-step = 'SELECT'.
           IF lv_cp_gln = '' AND lt_valuex IS NOT INITIAL.
             CALL FUNCTION 'F4UT_RESULTS_MAP'
               EXPORTING
    *           SOURCE_STRUCTURE   =
                 apply_restrictions = gc_true "'X'
               TABLES
                 shlp_tab           = shlp_tab
                 record_tab         = record_tab
                 source_tab         = lt_valuex
               CHANGING
                 shlp               = shlp
                 callcontrol        = callcontrol
               EXCEPTIONS
                 illegal_structure  = 1
                 OTHERS             = 2.
    *      endif.
    *        exit.
           Else.
             refresh: record_tab[],lt_final.
             LOOP at lt_valuex into ls_loc_gln where gln cp lv_cp_gln.
               ls_loc_glnx-GLN =    ls_loc_gln-gln.
               ls_loc_glnx-locdesc = ls_loc_gln-locdesc.
               APPEND ls_loc_glnx to lt_final.
             ENDLOOP.
             IF sy-subrc eq 0 and lt_final is NOT INITIAL.
               CALL FUNCTION 'F4UT_RESULTS_MAP'
                 EXPORTING
    *             SOURCE_STRUCTURE   =
                   apply_restrictions = gc_true "'X'
                 TABLES
                   shlp_tab           = shlp_tab
                   record_tab         = record_tab
                   source_tab         = lt_final
                 CHANGING
                   shlp               = shlp
                   callcontrol        = callcontrol
                 EXCEPTIONS
                   illegal_structure  = 1
                   OTHERS             = 2.
             else.
             ENDIF.
             IF record_tab[] is INITIAL.
               message 'No values Exist' type 'S'.
             ENDIF.
           endif.

    sorry only first value is going to input screen

  • Finder - Cannot double click items to open

    Since I upgraded to Snow Leopard, intermittently I have been unable to double click some items to open them in their default programs. I can go into the program and open them via File - Open.
    If I double click an item with it's default program open, nothing happens. If I double click an item and the program is not open, the program bounces in the dock and does not open.
    Same for .dmg files. If I download them, I can only open them using Disk Utility.
    These problems are not present when I boot up. They only happen at some point later. A restart fixes the problem.
    Anyone else experiencing this?

    I am having the same issue with my machine, and 3 other iMac machines. All updated to 10.6.1. At first I thought it was just attachments in e-mails not opening correctly... Then I discovered that double-clicking, or right (option) clicking and choosing open, or open with, did not do anything. If the default program for that file is open, it will take you to the program but will not open anything. I have found this to be a problem with .pdf, .doc, .docx, .jpg files. I tried deleting the finder preference file, which has done nothing. No solutions as of yet.

  • Double-click not working on trackpad after Mavericks installation

    After doing a fresh installation of OS X Mavericks and zapping PRAM, I noticed that I'm unable to double-click using my trackpad (this is true throughout all applications, not just the Finder).  Can anyone advise me on how to remedy this?
    My system is a Late 2002 MacBook Pro Retina.
    Thanks,
    Nicholas

    You can type Command-Shift-G and type in ~/Library/Preferences
    I had some challenges deleting everything here while logged in, so you'll have to do this from another Admin account. 
    I suggest just doing a clean install if you have the time.  That solved all my problems and reduced my boot time as well.

  • Preview doesn't launch when I double-click a previewed photo in finder

    Just noticed today that when I preview a photo in the finder by clicking on the spacebar, I'm unable to double click it so that it launches in the Preview application. I don't remember fiddling with anything before this, and it was okay several weeks ago. Any ideas?

    I retract this question. I tried again and it seems to work fine now. Wonder what happened.

  • Magic Trackpad Double Click Speed Inconsistency

    I have set the double click speed in the system preferences for the Magic Trackpad at about the halfway point. But it won't stay there.
    Every so often, about once a day, I find myself unable to double click and I discover that the slider that controls double click speed has gone to its highest setting. I set it back, and pretty soon the same thing happens again.
    I think there's a bug. Please reconfigure the software so that the double click speed setting remains where it was put.

    When the Magic Mouse and Magic Trackpad are used together it is not possible to set the double-click speed independently.
    If the trackpad is set to the highest speed the mouse will not double click. Lower the mouse speed and the trackpad becomes hypersensitive, producing inadvertent selection and dragging problems.

Maybe you are looking for