How can I get the list of drivers without getting popup message?

Every time the application gets to this line:
File[] roots = File.listRoots();
I get message box: "There is no disk in the drive.
Please insert disk into drive A:"
How can I get the list of drivers without getting
this message popup?

I don't have a solution to this problem. However, it does occur and it is annoying. I am testing our application on 4 client machines. On three of them, it NEVER asks for the floppy disk. On the remaining one, it ALWAYS asks. I have looked on the computers and cannot find any configuration differences (in fact, these machines are kept in a "closed environment", and therefore, they are configured, by default, exactly the same).
Does anyone have any thoughts?

Similar Messages

  • How can we find the list of user exits for a transaction

    hi all
    iam new in user exits please send the basic details
    how can we find the list of user exit for a perticular transaction and how can we determine that a particulr user exit is used for a field
    regards
    jagadish

    hi,
    check the below links for userexits
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    FAQ's
    http://http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.ficoexpertonline.com/downloads/User%20ExitsWPedit.doc
    http://www.easymarketplace.de/userexit.php
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    1. what is the defference between enhancement and user-exits?
    http://www.sap-img.com/abap/difference-between-badi-and-user-exits.htm
    Re: difference between user exits & customer exits
    Some Questions ! Plz help...
    http://searchsap.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid21_gci1190924_tax299358,00.html?bucket=ETA
    2. Difference between CMOD and SMOD?
    http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm
    http://www.sap-img.com/abap.htm
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/diff-between-cmod-and-smod-236095
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/diff-between-cmod-and-smod-236107
    check these links..
    http://www.sapgenie.com/abap/tips_and_tricks.htm
    http://www.sap-img.com/abap/field-exits-smod-cmod-questions-and-answers.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    passing selet-option variable to subrouine...
    Finding the user-exits of a SAP transaction code
    Finding the user-exits of a SAP transaction code
    Enter the transaction code in which you are looking for the user-exit
    and it will list you the list of user-exits in the transaction code.
    Also a drill down is possible which will help you to branch to SMOD.
    Written by : SAP Basis, ABAP Programming and Other IMG Stuff
                 http://www.sap-img.com/*
    report zuserexit no standard page heading.
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
             tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
       select single * from tadir where pgmid = 'R3TR'
                        and object = 'PROG'
                        and obj_name = tstc-pgmna.
       move : tadir-devclass to v_devclass.
          if sy-subrc ne 0.
             select single * from trdir where name = tstc-pgmna.
             if trdir-subc eq 'F'.
                select single * from tfdir where pname = tstc-pgmna.
                select single * from enlfdir where funcname =
                tfdir-funcname.
                select single * from tadir where pgmid = 'R3TR'
                                   and object = 'FUGR'
                                   and obj_name eq enlfdir-area.
                move : tadir-devclass to v_devclass.
              endif.
           endif.
           select * from tadir into table jtab
                         where pgmid = 'R3TR'
                           and object = 'SMOD'
                           and devclass = v_devclass.
            select single * from tstct where sprsl eq sy-langu and
                                             tcode eq p_tcode.
            format color col_positive intensified off.
            write:/(19) 'Transaction Code - ',
                 20(20) p_tcode,
                 45(50) tstct-ttext.
                        skip.
            if not jtab[] is initial.
               write:/(95) sy-uline.
               format color col_heading intensified on.
               write:/1 sy-vline,
                      2 'Exit Name',
                     21 sy-vline ,
                     22 'Description',
                     95 sy-vline.
               write:/(95) sy-uline.
               loop at jtab.
                  select single * from modsapt
                         where sprsl = sy-langu and
                                name = jtab-obj_name.
                       format color col_normal intensified off.
                       write:/1 sy-vline,
                              2 jtab-obj_name hotspot on,
                             21 sy-vline ,
                             22 modsapt-modtext,
                             95 sy-vline.
               endloop.
               write:/(95) sy-uline.
               describe table jtab.
               skip.
               format color col_total intensified on.
               write:/ 'No of Exits:' , sy-tfill.
            else.
               format color col_negative intensified on.
               write:/(95) 'No User Exit exists'.
            endif.
          else.
              format color col_negative intensified on.
              write:/(95) 'Transaction Code Does Not Exist'.
          endif.
    at line-selection.
       get cursor field field1.
       check field1(4) eq 'JTAB'.
       set parameter id 'MON' field sy-lisel+1(10).
       call transaction 'SMOD' and skip first   screen.
    *---End of Program
    if u want to find the function exit
    then check the below code
    REPORT ZV_FIND_EXIT NO STANDARD PAGE HEADING.
    TABLES : TSTC, TADIR, MODSAPT, MODACT, TRDIR, TFDIR, ENLFDIR.
    TABLES : TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE OBLIGATORY.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR WHERE FUNCNAME =
    TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'SMOD'
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT WHERE SPRSL EQ SY-LANGU AND
    TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(95) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Exit Name',
    21 SY-VLINE ,
    22 'Description',
    95 SY-VLINE.
    WRITE:/(95) SY-ULINE.
    LOOP AT JTAB.
    SELECT SINGLE * FROM MODSAPT
    WHERE SPRSL = SY-LANGU AND
    NAME = JTAB-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 SY-VLINE,
    2 JTAB-OBJ_NAME HOTSPOT ON,
    21 SY-VLINE ,
    22 MODSAPT-MODTEXT,
    95 SY-VLINE.
    ENDLOOP.
    WRITE:/(95) SY-ULINE.
    DESCRIBE TABLE JTAB.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , SY-TFILL.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    AT LINE-SELECTION.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    or
    1. in se11, goto table MODSAP
    View table contents
    2. in Type field, enter 'E' (for function exit)
    3. For that tcode, u should know the program name.
    eg. SAPLLMOB
    4. then type SAPLLMOB and execute
    or
    REPORT z34331_user_exit .
    TABLES : tstc, "SAP Transaction Codes
    tadir, "Directory of Repository Objects
    modsapt, "SAP Enhancements - Short Texts
    modact, "Modifications
    trdir, "System table TRDIR
    tfdir, "Function Module
    enlfdir, "Additional Attributes for Function Modules
    tstct. "Transaction Code Texts
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    START-OF-SELECTION.
    Validate Transaction Code
    SELECT SINGLE * FROM tstc
    WHERE tcode EQ p_tcode.
    Find Repository Objects for transaction code
    IF sy-subrc EQ 0.
    SELECT SINGLE * FROM tadir
    WHERE pgmid = 'R3TR'
    AND object = 'PROG'
    AND obj_name = tstc-pgmna.
    MOVE : tadir-devclass TO v_devclass.
    IF sy-subrc NE 0.
    SELECT SINGLE * FROM trdir
    WHERE name = tstc-pgmna.
    IF trdir-subc EQ 'F'.
    SELECT SINGLE * FROM tfdir
    WHERE pname = tstc-pgmna.
    SELECT SINGLE * FROM enlfdir
    WHERE funcname = tfdir-funcname.
    SELECT SINGLE * FROM tadir
    WHERE pgmid = 'R3TR'
    AND object = 'FUGR'
    AND obj_name = enlfdir-area.
    MOVE : tadir-devclass TO v_devclass.
    ENDIF.
    ENDIF.
    Find SAP Modifactions
    SELECT * FROM tadir
    INTO TABLE jtab
    WHERE pgmid = 'R3TR'
    AND object = 'SMOD'
    AND devclass = v_devclass.
    SELECT SINGLE * FROM tstct
    WHERE sprsl EQ sy-langu
    AND tcode EQ p_tcode.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    SKIP.
    IF NOT jtab[] IS INITIAL.
    WRITE:/(95) sy-uline.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    WRITE:/(95) sy-uline.
    LOOP AT jtab.
    SELECT SINGLE * FROM modsapt
    WHERE sprsl = sy-langu AND
    name = jtab-obj_name.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WRITE:/1 sy-vline,
    2 jtab-obj_name HOTSPOT ON,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.
    ENDLOOP.
    WRITE:/(95) sy-uline.
    DESCRIBE TABLE jtab.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No of Exits:' , sy-tfill.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'No User Exit exists'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    Take the user to SMOD for the Exit that was selected.
    AT LINE-SELECTION.
    GET CURSOR FIELD field1.
    CHECK field1(4) EQ 'JTAB'.
    SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    Regards,
    Naveen

  • How can we display the list of Report Names in Dashboard Prompt?

    How can we display the list of Report Names in Dashboard Prompt?

    Hi,
    No its not possible to display list of reports in dashboard prompts.
    Can do this using SQl results in prompt(we write query checking out report names manualy),but its not easy thing if you are having many report names to be displayed.
    Assign points and close your threads if answered.
    Refer : http://forums.oracle.com/forums/ann.jspa?annID=939
    Regards,
    Srikanth

  • How can I control the list of cipher suites offered in the SSL Client Hello message? I want to forbid MD5 and RC4.

    How can I control the list of cipher suites offered in the SSL Client Hello message?
    I want to limit my browser to negotiating strong cipher suites. I'd like to forbid DES, MD5 and RC4.

    Set the related SSL3 prefs to false on the about:config page (Filter: security.ssl3.).
    *http://kb.mozillazine.org/about:config

  • How can i extend the Apple TV storage to get an 1 TB? apple has any external hard disk or similar?

    how can i extend the Apple TV storage to get an 1 TB? apple has any external hard disk or similar?

    Only AppleTV1 has an internal PATA drive. The largest PATA drive available is 250gb.
    Hacks are available to use the USB port on AppleTV1 to access more storage.
    AppleTV2 does not have an internal drive.
    Why do you need more storage in your AppleTV? iTunes streams video to AppleTV so no need to store it locally.

  • How can I make the list of all bookmarks as my startpage?

    How can I make the list of all bookmarks as my startpage?

    i am also like what you asked because the bookmark i like chrome bookmarks arragement but not good on firefox and the current bookmarks makes hard to know where and what i am look i said the bookmarks not shows well and its hard
    I like bookmark must have a small image whenever saving the page and it have a small details about the page that helps to find easily

  • HT1420 How can I see the list of authorized devices?

    I recently had problems with my computer and in the middle of that, it said that iTunes was no longer working. I uninstalled it and then later reinstalled it once I figured out what was wrong with my computer. Now when I opened iTunes under the same username, it is not showing my songs. It is also saying that I have to authorize the computer yet says I am at my limit of 5. How can I see the list of devices so that I can edit it?

    There's none accessible from your end. If needed, use the Deauthorize All function.
    (90595)

  • How can i delete the masters of iPhoto without losing my photos

    Mac Book Pro (Mid 2012) 13 inches
    256 Solid State Start up Insert in DVD Drive
    1T Hard Drive in reg slot
    16 GB Ram
    Mavericks 10.9.4
    iphoto 9.5.1
    I am currently keeping my iPhoto library on my 256 SS Main Drive of my MacBook Pro.
    How can I delete the masters of iPhoto without losing my photos in the main iPhoto display library and all their masters and edits.
    I take loads of photos and import them and then will keep only 5% of the ones that I import.  As a result I have a masters folder of over 50GB and actual photos that take up less that 5GD.  Is it possible to delete the master folder without losing all the photos and without having to pain stakingly go through every folder and pick out from literally hundreds the ones that i kept and edited.  How do I reduce the size of the masters just down to the ones that I have kept and not every single photo and video that I imported in the history of my iPhoto experience.
    If I delete the master folder will all the photos and their edits be deleted.
    If so, is there a way to just delete the masters that are no longer in the iPhoto library, while keeping the masters and edits of the ones that I clearly want to keep because they are the ones that I did keep.
    Why do they keep the masters of photos that I clearly deleted and emptied the trash on.
    I like to maximize space and this would help a lot to clear up for me.  Thank you.

    All the 5000 photos that reappeared after repair today were from my canada mega event, but for some reason it did not do it for all the other mega events.  It is a start but not complete.
    Try the rebuild to recover more lost photos.
    If "rebuild" with iPhoto does not recover more lost photos, rebuild with iPhoto Library Manager as described by Old Toad in this thread, but rebuilding with iPhoto Library manager will not recover your projects like cards, bilks, slideshows.
    Re: iPhoto glitch with retained masters https://discussions.apple.com/message/26354337#26354337
    Mostly the way I organize all my photos is that I make a folder for each country I visit.  i.e. New Zealand Folder, Canada Folder, India Folder; and at the same time, any photos that I import I delete directly from new imports and just keep the ones i want and then i go up to events and move the latest imported event into a mega event for that country and so they all get joined in a sense.
    As a workaround, merge the events right after importing, before you start deleting photos.  And empty the trash always before merging projects.
    You might consider to use albums instead of events for your country lists.   I simply use the events as basic containers. One event for each day of shooting photos. I found, that smart albums and searches are quicker in iPhoto and Aperture, if the events are smaller, also browsing is easier, if the events are not so large.
    You can merge albums and remove photos from albums without the problems mentioned above.

  • How can I use itunes on my iphone without getting my daughter ipod stuff on my phone?

    How can I use itunes on my iphone without getting my daughter ipod stuff on my phone?

    Not sure what you mean.
    Why would your daughters stuff be on your iphone?
    Not sure what you think the correlation is.
    Please explain

  • Mail -- How can I change the default email account from which my messages go, without having to change it each time I draft a message?  It currently assumes an email account that I rarely use. Thanks.

    How can I change the default email account from which my messages go, without having to change it each time I draft a message?  It currently assumes an email account that I rarely use. Thanks.

    sorry, but I can't find the mail preference in the latest Yosemite OS. Do you know where I can find it?
    Thank you
    Don

  • I dont have a credit card how can i buy the adobe photoshop software without it

    i dont have a credit card how can i buy the adobe photoshop software without it

    You could use a pre-paid debrt card. and purchase a one year prepaid plan for $120.
    Prepaid
    Payment
    You will be charged the fees stated at the time of purchase. As soon as we have received full payment, your paid membership will begin.
    Renewal
    The price is valid for a full 12 months. After that, we'll renew your contract automatically unless you cancel. The price is subject to change, but we will always notify you beforehand.
    Cancellation
    We'd hate to see you go, but if you cancel within the first 30 days, we'll give you a full refund. If you ever need to cancel, just call Customer Support.

  • How can you trim the contact field value without cloudconnector?

    How can you trim the contact field value without cloudconnector?

    You can add your contacts to segments, while right-clicking on the criteria you have added in segments, you will see the option for Merge, Intersect & Trim.
    See the attached URL, it might help you .
    Merge, Intersect, Trim

  • My wife has vision problems. She has trouble reading her text when composing in 14 point font. How can she increase the font when composing without emailing out a larger font?

    My wife has vision problems. She has trouble reading her text when composing in 14 point font. How can she increase the font when composing without emailing out a larger font?

    Option + Command + 8    turns this function On and Off.

  • How can I edit the actual album info?  (Get info won't let me)

    How can I edit the actual album information.  I recently loaded CD of duets, the artist name is correct, but doesn't show up on my artist listwithnstead its shown as a compilation by various artists.  When I use "Get Info" the artist name is right on all the tracks but doesn't show the correct name on the actual album  column.  Anybody know how to fix this?
    Thanks

    Questions already been asked and answered,  thanks to Turingtest2 for his wisdom.
    richfromkeswick wrote:
    How can I edit the actual album information.  I recently loaded CD of duets, the artist name is correct, but doesn't show up on my artist listwithnstead its shown as a compilation by various artists.  When I use "Get Info" the artist name is right on all the tracks but doesn't show the correct name on the actual album  column.  Anybody know how to fix this?
    Thanks
    Rich

  • How can I prevent the open/save file confirmation window popup ? Mine is currently set for "always do this action" but I still get the popup.

    Whenever I "export" a QIF file from my bank I get a File Action confirmation window popup. I have the correct application selected and I have it selected to "open" and "always do this action" but the popup always pops.
    I have checked the applications tab and the correct application is selected.
    How can I prevent the confirmation popup window please ?

    Cheers for the reply.
    I have deleted the rdf file but no difference. I still get the opening file box popup.
    From the resetting download actions link. Both lines in the about:config are missing.
    I have also tried switching the download option for the qif file to use a csr file but that also opens the confirmation box.
    I pulled this from the rdf file
    <RDF:Description RDF:about="urn:mimetype:handler:text/x-qif"
    NC:alwaysAsk="false"
    NC:saveToDisk="false"
    NC:useSystemDefault="false"
    NC:handleInternal="false">
    <NC:externalApplication RDF:resource="urn:mimetype:externalApplication:text/x-qif"/>
    <NC:possibleApplication RDF:resource="urn:handler:local:C:\Program Files\Microsoft Money\System\msmoney.exe"/>
    </RDF:Description>
    <RDF:Description RDF:about="urn:scheme:webcal"
    NC:value="webcal">
    <NC:handlerProp RDF:resource="urn:scheme:handler:webcal"/>
    </RDF:Description>
    <RDF:Description RDF:about="urn:mimetype:externalApplication:text/x-qif"
    NC:path="C:\Program Files\Microsoft Money\System\msmoney.exe"
    NC:prettyName="msmoney.exe" />
    Not sure if that helps.
    Thanks again for the reply

Maybe you are looking for

  • Check box in ALV grid gets unselected for new selection

    Hi all, This is my code : TYPE-POOLS : slis. Variable DATA: g_repid LIKE sy-repid,       g_title TYPE lvc_title,       g_set_pf_stat TYPE slis_formname VALUE 'SET_PF_STATUS',       g_user_command TYPE slis_formname VALUE 'USER_COMMAND',       g_layou

  • Bug in Oracle 10.2.0.1.0-10.2.0.3.0: Sorted Hash Cluster

    I found another bug in Oracle: SQL> create cluster tfsys_cluster 2 ( 3 name varchar2(30), 4 cdp number(6), 5 stime number(6) sort) 6 hashkeys 1000 7 size 100; SQL> create table tfsys( 2 name varchar2(30) not null, 3 cdp number(6) not null, 4 stime nu

  • Forgotten administrator password for imac how do I reset?

    I have forgotten the password for teh administartor account on my imac.  There are no other admin accounts set up. How do I rest the password?

  • PHP service super-class regeneration

    Hello all ! I need your help with a strange problem.. In my Flex project, I have PHP files with the services automatically generated (the two .as files). My  problem is that one : When I modify my PHP file and click on the  refresh button (in the tre

  • HRUSER Trx and CUA to be synced up Any ideas...

    Hi All, I am a newbie for Security and I am stuck at a certain place, the scenario is as follows We have a ECC6.0 Box (R/3) , Portal 7.0 whose UME is the ECC Box and BW Box as other system, we have setup the R/3 as CUA. We are implementing the HR Por