FM navigate to SC, PO, etc

Hi all,
I'm creating a custom webdynpro in wich I have a table with some documents. I need to navigate to these documents when the user click on them.
I don't know if exits any standard FM for that, I couldn't find any.
So, I'm trying to create a custom FM for that based in the login I've seen in the WD component /SAPSRM/WDC_UI_DO_HISTORY, View V_DODC_HISTORY, Method ONACTIONSHOW_DOCUMENT.
But, by the moment doesn't work. This is my code:
DATA: lo_componentcontroller     TYPE REF TO ig_componentcontroller,
        lo_api_componentcontroller TYPE REF TO if_wd_component,
        lo_navigation_service      TYPE REF TO /sapsrm/cl_ch_wd_navi_serv,
        lo_navigation              TYPE REF TO /sapsrm/if_ch_wd_navi_serv,
        ls_obn_components          TYPE /sapsrm/s_wd_ui_obn,
        bus_parameter_table        TYPE wdy_key_value_table,
        bus_parameter_struc        TYPE wdy_key_value,
        lx_pdo_error_gen           TYPE REF TO /sapsrm/cx_pdo_error_gen.
  lo_componentcontroller =   wd_this->get_componentcontroller_ctr( ).
  lo_api_componentcontroller = lo_componentcontroller->wd_get_api( ).
  CREATE OBJECT lo_navigation_service
    EXPORTING
      io_api_componentcontroller = lo_api_componentcontroller.
  lo_navigation = lo_navigation_service.
  IF lv_object_type EQ 'BUS2121'.
    bus_parameter_struc-value     = /sapsrm/if_pdo_obj_types_c=>gc_pdo_shop.
    ls_obn_components-object_type = /sapsrm/if_feeder_constants=>c_obn_sc.
    ls_obn_components-operation   = /sapsrm/if_feeder_constants=>c_obn_op_detailprof.
    bus_parameter_struc-key = 'sap-client'.
    bus_parameter_struc-value = sy-mandt.
    INSERT bus_parameter_struc INTO TABLE bus_parameter_table.
    bus_parameter_struc-key = 'sap-language'.
    bus_parameter_struc-value = sy-langu.
    INSERT bus_parameter_struc INTO TABLE bus_parameter_table.
    bus_parameter_struc-key = 'sapsrm_botype'.
    bus_parameter_struc-value = /sapsrm/if_pdo_obj_types_c=>gc_pdo_shop.
    INSERT bus_parameter_struc INTO TABLE bus_parameter_table.
    bus_parameter_struc-key = 'sapsrm_mode'.
    bus_parameter_struc-value = 'DISPLAY'.
    INSERT bus_parameter_struc INTO TABLE bus_parameter_table.
    bus_parameter_struc-key = 'sapsrm_boid'.
    bus_parameter_struc-value = lv_guid.
    INSERT bus_parameter_struc INTO TABLE bus_parameter_table.
    ls_obn_components-business_parameters = bus_parameter_table.
    TRY.
        CALL METHOD lo_navigation->launch_target
          EXPORTING
            iv_target_type    = /sapsrm/if_ch_wd_navi_serv_c=>gc_target_type-obn
            is_obn_components = ls_obn_components.
      CATCH /sapsrm/cx_pdo_error_gen INTO lx_pdo_error_gen.
    ENDTRY.
  ENDIF.
Do you know if exits some function module for this?
Or if I have something wrong in my code ?
Thanks in advance.
Regards,
Ricardo.

Hello,
Try below code and check.
DATA: lrif_context_element            TYPE REF TO if_wd_context_element,
        lt_bus_parameter_table          TYPE wdy_key_value_table,
        ls_bus_parameter_struc          TYPE wdy_key_value,
        ls_obn_components               TYPE /sapsrm/s_wd_ui_obn,
        lrif_navigation_service         TYPE REF TO /sapsrm/if_ch_wd_navi_serv,
        lrif_task_factory               TYPE REF TO /sapsrm/if_cll_taskcon_factory,
        lrif_task_container             TYPE REF TO /sapsrm/if_cll_task_container,
        lrcl_pdo_error_gen              TYPE REF TO /sapsrm/cx_pdo_error_gen,
        lt_messages                     TYPE TABLE OF bbp_pds_messages,
        ls_sc_history                   TYPE wd_this->element_sc_history,
        lv_sc_object_id                 TYPE crmt_object_id_db,
        lv_sc_guid                      TYPE bbp_guid.
get relevants objects
get task context
  lrif_task_factory = /sapsrm/cl_ch_wd_taskcont_fact=>get_instance( ).
  IF lrif_task_factory IS INITIAL.
    EXIT.
  ENDIF.
  lrif_task_container = lrif_task_factory->get_task_container( ).
  IF lrif_task_container IS INITIAL.
    EXIT.
  ENDIF.
get sc guid
  CALL FUNCTION 'BBP_PD_SC_GUID_GET'
    EXPORTING
      iv_object_id = sc number
    IMPORTING
      ev_guid      = lv_sc_guid
    TABLES
      et_messages  = lt_messages.
  IF sy-subrc NE 0.
    EXIT.
  ENDIF.
set navigation
OBN Action
  ls_obn_components-object_type      = /sapsrm/if_feeder_constants=>c_obn_sc.
  ls_obn_components-operation        = /sapsrm/if_feeder_constants=>c_obn_op_detailprof.
OBN Parameter
  ls_bus_parameter_struc-key         = 'sapsrm_botype'.
  ls_bus_parameter_struc-value       = /sapsrm/if_pdo_obj_types_c=>gc_pdo_shop.
  INSERT ls_bus_parameter_struc INTO TABLE lt_bus_parameter_table.
  ls_bus_parameter_struc-key         = 'sap-client'.
  ls_bus_parameter_struc-value       = sy-mandt.
  INSERT ls_bus_parameter_struc INTO TABLE lt_bus_parameter_table.
  ls_bus_parameter_struc-key         = 'sap-language'.
  ls_bus_parameter_struc-value       = sy-langu.
  INSERT ls_bus_parameter_struc INTO TABLE lt_bus_parameter_table.
  ls_bus_parameter_struc-key         = 'sapsrm_mode'.
  ls_bus_parameter_struc-value       = 'DISPLAY'.
  INSERT ls_bus_parameter_struc INTO TABLE lt_bus_parameter_table.
  ls_bus_parameter_struc-key         = 'sapsrm_boid'.
  ls_bus_parameter_struc-value       = lv_sc_guid.
  INSERT ls_bus_parameter_struc INTO TABLE lt_bus_parameter_table.
  ls_obn_components-business_parameters = lt_bus_parameter_table.
  lrif_navigation_service =   lrif_task_container->get_navigation_service( ).
  TRY.
    set navigation in next html roundtrip
      CALL METHOD lrif_navigation_service->launch_target
        EXPORTING
          iv_target_type    = /sapsrm/if_ch_wd_navi_serv_c=>gc_target_type-obn
          is_obn_components = ls_obn_components.
    CATCH /sapsrm/cx_pdo_error_gen INTO lrcl_pdo_error_gen.
      EXIT.
  ENDTRY.
Regards,
Neelima

Similar Messages

  • How to navigate to Documents, Downloads, etc in bootcamp ?

    Hello,
    Just a quick question. I was wondering how you would go about navigating to the documents folder from within bootcamp on your mac partition. I see that you can go and open up your mac partition folder in My Computer but I don't know how to get to the places I need to go. Any help would be appreciated. Thanks

    Hey,
    In the users folder I see a folder that has my username on it, with nothing in it, and a folder that says shared with sc info folder. Don't see anything with the "short name" of my Mac OS X account.

  • Zen Touch 40GB is absolutely GRE

    (This is further to my post in the thread "Experience with your Creative Player" ten days ago.)
    Hello everybody,
    two and a half weeks ago I received my Zen Touch 40GB and right from the beginning I was very happy with it -- easy to operate without having to use any kind of manual, reliable, beautiful, great sound quality, etc.
    Now, two and a half weeks later, this positi've judgement has become even stronger. The Zen Touch is really extraordinary! Battery life second to none, sound quality absolutely amazing (also when connecting it to my harman/kardon amplifier), good software (MediaSource Organizer), solid and reliable feel, Zen software never crashed, touchpad easy to operate after some initial training, display excellent, easy to navigate through the menus, etc.
    In the beginning I was very sceptical whether to spend that much money on an MP3 player, and also a bit sceptical whether I had chosen the right one (since there are many to choose from and there seems to be no immediate "first choice"). But today I'm more than happy with my purchase and couldn't imagine living without the Zen Touch 40GB anymore.
    The most amazing thing about it is simply the sound quality -- I keep listening to Jennifer Larmore singing Caesar's air "Va tacito" from Haendel's opera "Giulio Cesare in Egitto" (Julius Caesar in Egypt, HWV 7, 723), and it is stunning how crisp and clear the soloist's voice mixes with the outstanding horns and the beautiful harpsichord sound, etc... This alone is worth it. Having all my CDs in a belt-pocket everywhere I go is, in and of itself, another reason for such a device.
    OK, nuff said; I can honestly recommend this little gem!
    David
    <SPAN class=time_text>PS: For listening to operas an MP3 player is actually perfect since there is no need to change CDs -- I created a playlist for each opera, put the headphones on, lie down in my bed, and enjoy hours of musical delight without any breaks ;-)
    Message Edited by haardt on 0-7-2005 0:54 PM

    I just got my Zen Touch 40GB 2 days ago. I was surprised that it was slightly smaller than by Zen Xtra.
    My only concern with it is the operating system. Its missing many features compared to the Zen Xtra, some of which I really miss like the Tabbed View.
    And one annoying little detail, When a song is playing and you accidently touch the Touch Pad it automatically goes to the Seleced Music screen (Why?) If you press Pause in this area the song with just complete stop. And you have to start the song all over agian.
    Hopefully this little annoyance can be corrected in a Firmware upgrade.
    Also why isn't Creative advertising the 40GB player? All there pages still show the 20GB.Message Edited by TimT on 0-7-2005 03:25 PM

  • How can I make audio sound as if it's coming from AM radio?

    Hi. I'm kinda new to Soundtrack. I'm looking to add some audio to my video that sounds like it is being played through an AM radio. Not an old scratchy '30s sound, but more like something from the early '70s, (classic rock soundtrack) if that makes any sense. Are there settings that would start me in the right direction?
    Thanks in advance.
    Craig

    I found a program called Speakerphone that looks great, but the website is horrendous to navigate regarding pricing/ordering etc.They lost a potential customer because of it . . .
    Speakerphone is awesome. I have it and use it all the time for post effects. The company, Audioease is German - don't know if that's the cause of the web problems, but the plug-in is da bomb.
    On-line store is here
    http://www.audioease.com/Pages/Store/products_usd.html

  • No sound from any email i open

    Since upgrading to ML i am not able to hear any sound when opening email attatchments IE WMV files or anything

    On a whim I tried a different user, logging in as a guest, and it worked fine. How do I get it to work with my account?
    That indicates, that the problem is in your user library.
    Quit GarageBand and remove the following files from the User Library:
    ~/Library/Caches/com.apple.garageband/
    Check, if you have incompatible sound fonts in  ~/Library/Audio/Sounds/Banks/
    ~/Library/Containers/garageband10
    ~/Library/Preferences/com.apple.garageband10.LSSharedFileList.plist
    You user library may still be hidden, as is the default in Mavericks: To open your hidden user library:
    Select the "Home" folder icon (the little house)  in the Finder's sidebar and press the key combination ⌘J to open the "view options".
    Enable "Show Library Folder".
    Then open the Home folder and open the Library folder inside and navigate to ~/Library/Caches  , etc.
    After removiing these files, restart the mac, before launching GarageBand again.  You will have to reset all preferences, after removing these files, however.

  • Recover iPhoto library from crashed HD

    Hi
    My mac stopped working soon after i did the latest iTunes update, i was unable to repair the disk using disk utility so in the end i swapped the HD for a new one and recovered what data i had backed-up to that new drive.  Problem i have is that my back-up processes were somewhat slack!  I have none of my photos backed up...
    I have tried to view the contents of my old HD by connecting it up via USB.  It looked like it was going to work; i could see the drive, navigate through the folders etc then it just disappeared.  I can no longer see it in Finder.  I can still see it in disk utility and have tried to repair it again with no joy.
    All I want to do is recover the photos, there's nothing else on there that i need
    thanks folks....

    Other recovery software;
    Data Rescue 3;
    http://www.prosofteng.com/products/data_rescue.php
    Stellar Phœnix;
    http://www.macintosh-data-recovery.com/
    Both programmes will give you a free download to scan your HD and see if the files are recoverable, but you'll have to pay for the full application to actually recover them.

  • Tabs Dont Show up when opening in JDeveloper

    How to see the Tabs on the pages, when opened with Jdeveloper ?
    It doesnt show and tabs on the top for example with the projects . we cannot navigate to Financial, Control etc.
    Is there any way to Enable the tabs on the top, so that we can navigate ?
    Its not possible to Run individual Pages because, they all are depending on the Search we do and what we Select.
    Any help is greatly appreciated.
    Thanks
    Ram

    I think you cannot open the tab in Jdev Itself.
    Thanks
    --Anil                                                                                                                                                                                               

  • Preferences in infoview XIR3

    Hi all
    Did a new install of XIR3.1 and new ot it
    when i log in to Infoivew default page I see is Infoview with navigate, preferences, document list etc.,
    but i want to see the public folders
    i can go an change the preferences to folder and can save it.. for my self..
    but can we change this to all users globally??
    any ideas please
    Thanks

    [here's one way|Re: How to set default preferences for all users in Infoview 3.1/CRS 2008]
    bu I think an easier method was added to 3.1, either search the forums for other solutions or open a case with support/admin team to see if there are other ways.
    Regards,
    Tim

  • Updated iPhoto to 9.2.3, lost majority of photos - help!

    We updated iPhoto as recommended by Apple to version 9.2.3 and immediately had trouble with no photos showing in iPhoto.  The photo folder on the Mac drive is empty, and was the primary location for storing and accessing photos. After finding the iPhoto backup library on the My Book external drive, I imported and only recovered 1,000 of 10,000+ photos. The recovery files are dated with photos from 2005 - 2009, and nothing from 2010 to present.  It also required me to update the iPhoto library file upon import, something which I expected would automatically occur as part of the application update. 
    I am running an  iMac with OS X 10.6.8.
    Already tried to rebuild the library by launching iPhoto and holding command/option.  No new files were recovered. Any tips/advice is much appreciated to help recover 4 years of family memories!
    Frustrating to see the continued degradation of Apple's competive advantage: seamless interoperability and ease of use.  The iphone synch with itunes is a whole other discussion...
    Thanks,
    Scott

    Terrence: thanks for taking the time to reply. Here are replies to your questions:
    Pictures folder = yes
    Back up historically performed manually to My Book. 
    Wife performed the iPhoto update yesterday and did not back up prior to update.
    Why did you not restore? = new version of iPhoto not able to find or recognize the iPhoto library on the Mac drive. When launching iPhoto application after the update, and the application is attempting to pull from the Mac drive database, it is a never ending spinning wheel of white dashes as if searching but never finding.
    Why import from the backup? = Since no photos will load from the Mac drive database, I attempted to restore from the backup on My Book as the source
    Clarify the 'update the iPhoto library file' = when attempting to import the iPhoto library backup file from My Book (after the above sequence and failing in attempts to load from the Mac picture database), iPhoto required the My Book iPhoto library file to be updated, or reconfigured (can't confirm the exact language here), before proceeding.  It was definitely a separate prompt and process from the app update.
    Why are you mentioning crash reports when there is no mention of crashes? = after the initial post, I went back to my attempts to relaunch iPhoto and it crashed multiple times. Thought I would add in this thread (10 minutes later) in case it was helpful to someone assisting to resolve these issues.
    Certainly not looking to editorialize, but I've been using Mac products since the Apple IIe.  By no means an expert, as you can see by my problems here , but the reality is that the proliferation of peripherals makes it increasingly challenging for the average tech user to navigate compatibility, synching devices, etc.  Heck, I had to spend $1,500 on a new iMac just to get my iPad funcational a couple of years ago (my Mac Mini didn't support a current OS to run an iTunes version needed to activate the iPad).
    Not hating, I'm an unabashed Mac lover (9 devices and growing).  Also not ignorant to the challenges that developers and us 'tech users' face in the real world.
    Thanks and again I truly appreciate your input!
    -sw

  • [bc4j] Urgent jbutton binding problem

    Hi,
    I have a working application with a few panels, and a few viewobjects, viewlinks, etc. I can use the navigator to navigate through the records, etc, everything works fine.
    But when I add a jbutton to the panel, with an action binding for the view object ('insert new record' or 'next'), then when starting up the application, the view object begins to spill, all records seem to be loaded and spilled to the spill-table.
    If I remove the model form the jbutton and re-run, everything works fine again. What could cause this? All other binded controls (navigationbar, several jtextfields, and even a jtree) work fine, but the jbutton causes spills.
    And not even when I click it, but during startup of the app!
    Any idea?
    Greetings,
    Ivo

    Bug#2772798 filed after reproducing using your testcase. Thanks.
    Shailesh got back to me with this analysis:
    No bindings should force a range size of -1 by default except for Lov Bindings on Combo and List Boxes where all the data is needed on the client side control.
    ButtonlActionBinding's create method is setting the rangesize of the iterator to -1 leading to all rows being fetched. The workaround is to set the range size on the iterator in setPanelBinding() method after jbInit() to a desired size.
    Here's a line I added to Ivo's setPanelBinding() method of his PanelFootballView1.java class...
    jbInit();
    panelBinding.findIterBinding("FootballViewIter1").getRowSetIterator().setRangeSize(1);

  • Ipod Software Update: Error 1432

    Can anybody help? I've tried to upload the last two software updates to my Ipod without success. The last time I've tried, I've got an "unknown error" (1432) message which I can't seem to find any info on. Any ideas?
    Thanks,
    Paul

    Sorry, I can't help but I have a similar problem. "The iPod <iPod name> could not be restored. An unknown error occurred (1432)." My 30GB iPod video (5th generation) crashes whenever I try to sync it. I either get the error dialogue, or the 'device removal' dialog box after roundabout 4 minutes. But the connection is all right. I even tried a different cable. And a different computer. It mounts perfectly, starts to sync my library, but gets stuck after syncing a few songs. I thought the songs might be corrupted. So I tried sync my photos, not my music library. But the outcome is the same. Tried to restore. Worked once. Later, when I tried to sync the same s**t happened again. Now I can't even restore the iPod anymore, because the errors occur before the iPod can be restored. Tried to reset the iPod. Nothing. Tried the diagnostics, manual and auto. Auto shows M25 diagnostics 0.7 completed PLL: 0. Does anyone know what that means? The manual diagnostics for memory results in "Checksum=0x0CFF" for flash and "RUN: BL on / PASS: BL blink / FAIL: BL off" for SDRAM... Does that mean the memory is f**ked? Once I restart the iPod it works fine, I can navigate thru the menus etc. (Pointless without music on the iPod and without the possibility to sync...)
    If the RAM was broken the iPod shouldn't boot at all, am I right?
    Can anyone help???
    I am getting frustrated... the iPod is just a little bit too old for warranty!

  • Ipod software 1608 error

    when i try to install the software thies error message pops up
    1608:unable to create installdriver instance,
    Return code:-2147221021
    HELP!

    Sorry, I can't help but I have a similar problem. "The iPod <iPod name> could not be restored. An unknown error occurred (1432)." My 30GB iPod video (5th generation) crashes whenever I try to sync it. I either get the error dialogue, or the 'device removal' dialog box after roundabout 4 minutes. But the connection is all right. I even tried a different cable. And a different computer. It mounts perfectly, starts to sync my library, but gets stuck after syncing a few songs. I thought the songs might be corrupted. So I tried sync my photos, not my music library. But the outcome is the same. Tried to restore. Worked once. Later, when I tried to sync the same s**t happened again. Now I can't even restore the iPod anymore, because the errors occur before the iPod can be restored. Tried to reset the iPod. Nothing. Tried the diagnostics, manual and auto. Auto shows M25 diagnostics 0.7 completed PLL: 0. Does anyone know what that means? The manual diagnostics for memory results in "Checksum=0x0CFF" for flash and "RUN: BL on / PASS: BL blink / FAIL: BL off" for SDRAM... Does that mean the memory is f**ked? Once I restart the iPod it works fine, I can navigate thru the menus etc. (Pointless without music on the iPod and without the possibility to sync...)
    If the RAM was broken the iPod shouldn't boot at all, am I right?
    Can anyone help???
    I am getting frustrated... the iPod is just a little bit too old for warranty!

  • Mount error after a 2nd debug in eclipse

    Good morning everybody,
    I just started developping a Drive plug-in. I've read and follow the SDK documentation. All worked well untill this problem :
    When I start the plugin sample basicftp (for example) in debug mode in Eclipse, all is ok and I can connect myself on my ftp from the Drive connexion screen. I can see then the new mounted drive in windows explorer, and I can navigate in the directories, etc. If i disconnect from the drive interface and connect again, still no problem, the virtual drive is unmounted, and in the second connexion, the drive is mounted well again. But if I stop the debugging session in Eclipse, and then I start again a new debug, then from there, it is impossible to connect to my ftp like I did just before.  In the log file, it says :
    2012/03/09 17:24:34,558 [ConnectionHandler-Adobe Drive.exe-3708] ERROR MountService - osIntegration.mount() failed
    com.adobe.drive.data.model.DriveException: the server with uuid basicftp://127.0.0.1 could not be mounted
    at com.adobe.drive.internal.biz.filesystem.mount.OperatingSystemIntegrationWin.mount(Operati ngSystemIntegrationWin.java:109)
    at com.adobe.drive.internal.biz.filesystem.mount.MountService.internalMount(MountService.jav a:144)
    at com.adobe.drive.internal.biz.filesystem.mount.MountService.mount(MountService.java:102)
    at com.adobe.drive.ui.ncomm.handler.MountServerHandler.mountServer(MountServerHandler.java:2 09)
    at com.adobe.drive.ui.ncomm.handler.AddServerHandler.handle(AddServerHandler.java:136)
    at com.adobe.csi.internal.ncomm.InvokeHandler.handle(InvokeHandler.java:88)
    at com.adobe.csi.internal.ncomm.NCommDelegate.execute(NCommDelegate.java:107)
    at com.adobe.versioncue.internal.nativecomm.host.Host.execute(Host.java:200)
    at com.adobe.versioncue.internal.nativecomm.host.ConnectionHandler.handleRequest(ConnectionH andler.java:162)
    at com.adobe.versioncue.internal.nativecomm.host.ConnectionHandler.run(ConnectionHandler.jav a:81)
    at java.lang.Thread.run(Unknown Source)
    2012/03/09 17:24:34,587 [ConnectionHandler-Adobe Drive.exe-3708] ERROR AddServerHandler - Adding server failed
    com.adobe.drive.data.model.DriveException: the server with uuid basicftp://127.0.0.1 could not be mounted
    at com.adobe.drive.internal.biz.filesystem.mount.OperatingSystemIntegrationWin.mount(Operati ngSystemIntegrationWin.java:109)
    at com.adobe.drive.internal.biz.filesystem.mount.MountService.internalMount(MountService.jav a:144)
    at com.adobe.drive.internal.biz.filesystem.mount.MountService.mount(MountService.java:102)
    at com.adobe.drive.ui.ncomm.handler.MountServerHandler.mountServer(MountServerHandler.java:2 09)
    at com.adobe.drive.ui.ncomm.handler.AddServerHandler.handle(AddServerHandler.java:136)
    at com.adobe.csi.internal.ncomm.InvokeHandler.handle(InvokeHandler.java:88)
    at com.adobe.csi.internal.ncomm.NCommDelegate.execute(NCommDelegate.java:107)
    at com.adobe.versioncue.internal.nativecomm.host.Host.execute(Host.java:200)
    at com.adobe.versioncue.internal.nativecomm.host.ConnectionHandler.handleRequest(ConnectionH andler.java:162)
    at com.adobe.versioncue.internal.nativecomm.host.ConnectionHandler.run(ConnectionHandler.jav a:81)
    at java.lang.Thread.run(Unknown Source)
    The only thing I can do to can start a normal debug session again is to restart windows.  And if I run a debug session in Eclipse, it works, but if i close this debug session and that I start a new one, i got this same error again.
    I watched on the documentation, forum and even google, and I couldn't find an answer to that issue.
    To my opinion, It seems to me that when I shut down the debug session in Eclipse, it turns off some services used to mount the drive. So this services only start again after rebooting.
    Some additional informations :
    - I use Adobe Drive 3.0.0.70
    - Eclipse Indigo Service Relase 1 and JDK 7, but compiling in java 1.5 (all configured like in the tutorial of the documentation)
    - Windows 7 SP1
    - before to shut down the debug session in eclipse, I already tried to use the command "close" to exit cleanly the OSGI console.
    - note that I don't have this drive mounting problem when I start the plug-in from a compiled JAR file pre-installed in Drive. I got this bug only after turning off a debug session of that Drive plug-in in Eclipse.
    Thank you very much for your help,
    Guillaume
    ps: sorry for my bad english

    Hi,
    Please make sure all the virtual drives are disconnected before you start a new debug session in Eclipse.
    Thanks

  • Bigger Fonts on Ipad Mini

    I need to get bigger font sizes on Non-System Apps on my Ipad Mini.
    I know Ipad IOS has the ability of changing sizes on system apps like web browsers and mail.
    But I need to be able to globally enlarge fonts for a visually impaired user.
    The zoom feature doesn't solve my problem.
    is there an app for what I need to globally enlarge fonts on non system apps like "Facebook"???
    Help appreciated..

    It may be more useful to use voiceover.  I use it to navigate, read mail, Browse, etc.  It works in many apps.  I do not know about Facebook.  The iPad can be set to turn voiceover  on and off with 3 taps of the home button.

  • Finder Finds too Well

    As I recall, user's files are generally not available to other users.  I don't know if it has to do with Mavericks specifically, or just re-adding my wife's account to my computer via Migration Assistant, but I recently noticed that we now see all the other person's files in searches and can navigate through their folders etc.  What happened, and how do I fix it?

    This is what my admin user account looks like I'm setup with only one user and the default Guest.
    drwxrwxrwt   5 root   wheel  170 Oct 23 06:18 Shared
    drwxr-xr-x+ 18 macjack staff  612 Oct 31 06:06 macjack
    0: group:everyone deny delete
    1: user:_spotlight inherited allow list,search,readattr,readextattr,readsecurity,file_inherit,directory_inherit
    Try repairing permissions the Home folders.
    Boot up holding command-r keys into your Recovery Volume.
    From the menu bar choose Utilities then select Terminal.
    At the prompt type resetpassword
    Press return
    The Password reset utility will launch (do not reset password)
    Instead, click your Mac hard drive.
    Then from the drop-down select the user account you want to repair. At the bottom of the window, you’ll see an area labeled ‘Reset Home Directory Permissions and ACLs’. Click the Reset button there.
    The process takes a couple of minutes. When it’s done, quit the programs you’ve opened and restart your Mac.
    Note that I try to stay away from permissions at the command line in general, as they tend to make my head explode

Maybe you are looking for