Disable floppy check

How can I disable that annoying java popup that shows up when
there is no floppy on the drive when I try to get the system root
files ?
FileSystemView fsv=FileSystemView.getFileSystemView();
fsv.getRoots()[0];

Maybe this will help:
http://forum.java.sun.com/thread.jsp?forum=31&thread=464917

Similar Messages

  • Floppy Check in JSF Editor

    I am getting a floppy check (disk whirring/growling) whenever I change a property on a JSF page. This is NEW behavior and I have rebooted the system involved. I am using JDEV 10.1.3.0.4 (SU5) - build 3673 on Windows XP SP2.
    I started seeing this over the weekend on a another machine and didn't catch the JDev connection at the time.
    Any ideas?
    Thanks,
    Joe

    Joe, i don't know if this solution would be appropriate but in this case
    i'd disable the floppy drive under windows Device Manager and enable when
    necessary.
    Maybe this link could help you:
    http://www.annoyances.org/exec/show/article07-037
    Good Luck.
    Luis R.

  • Preventing disabling of check box - item okay in MIGO

    Dear all,
    In the MIGO transaction - during goods receipt for subcontractor material, when the item (incoming) is checked as item okay - automatically the child material (Material sent to subcontractor) is also activated thereby to enable 543 movement.
    Unfortunately some of the users are disabling the check box (for the material sent to the subcontractor). This prevents depletion of stock from the subcontractor but inflates the stock of the incoming material.
    Is there any way - either by authorisation check to prevent users disabling the check box or other methods?
    Experts suggestion is required in this regard.
    Thanks in advance.
    Regards,
    M.M

    Hi Magesh,
    it is possible. use Badi enhancement
    MB_MIGO_BADI goto
    IF_EX_MB_MIGO_BADI~POST_DOCUMENT
    tell your abaper to put the logic like
    parent ID and subcomponent ID need to select
    if either of two is not selected
    then error message will prompt not to save the GR doc since subcomponent is unselected.
    reference field EKPO check PSTYP
    hope this help you.
    regards,
    Maia
    Edited by: Maia on Apr 18, 2008 3:07 PM

  • Disabling the Check for Update feature in 10.1.3

    Hi,
    I work at a government facility that has tight security restrictions regarding downloading software. We are about to prepare a software delivery package for JDeveloper 10.1.3 that will let our IT department install JDeveloper on all of our developer workstations. One thing we would like to do as part of this deployment package is to disable the Check for Updates and PlugIn feature of JDeveloper. Is there a setting in a configuration file that controls this menu item?
    Thanks,
    Richard

    Hi,
    Is the requirement to disable the check for updates feature altogether (i.e. remove the menu item), or to just disable the automatic check that happens on startup?
    There isn't currently a documented way to totally disable the feature altogether, however it's possible to add such a feature in a future service update if necessary.
    There is a potential way in which you can modify the behavior of the wizard such that it will always find no updates (the menu item will still be present, however). If this is an acceptable solution to you, let me know and I'll fill you in on the details.
    Thanks,
    Brian

  • Disabling a Check box

    In my BSP View am using two check box.
    I want to disable one check box when the other one gets checked and vice versa.
    Right now am doing with some logics and with server side events.I want to do this in the client side.
    In <b>Java script</b> how i can code this in my BSP page where the checkbox is created with the help of htmlb.
    Kindly help me in this regards.

    Hi,
    put this in your documentHead:
    <script language="javascript">
         function uncheckyes(){
          document.form_id.yes.disabled='TRUE';
          </script>
    <script language="javascript">
         function uncheckno(){
          document.form_id.no.disabled='TRUE';
          </script>
    and this in your layout (documentBody):
           <htmlb:checkboxGroup columnCount = "2"
                                         id          = "expense" >
                      <htmlb:checkbox text          = "Yes"
                                      id            = "yes"
                                      onClientClick = "javascript:uncheckno()" >
                      </htmlb:checkbox>
                      <htmlb:checkbox text          = "no"
                                      id            = "no"
                                      onClientClick = "javascript:uncheckyes()" >
                      </htmlb:checkbox>
                    </htmlb:checkboxGroup>
    grtz
    Koen

  • Using Javascript to disable a check box

    Friends,
    I am stuck on what should be a simple requirement and I am hoping you can help.
    I need to disable a form region checkbox if a field on the same form region has anything entered.
    What I have done so far is:
    1) On the item that determines whether the check box should be disabled I have added a call to my Javascript function "onChange="disableDefaultDisplay();" in the "HTML Form Element Attributes"
    2) My javascript funcion is: (this is the basic version, all I am trying to do is disable the check box at this point)
    function disableDefaultDisplay()
    alert("Start of the function");
    var defaultDisplay = document.getElementById("P13_DEFAULT_DISPLAY");
    *defaultDisplay.enabled = false;*
    alert("End of the function");
    Using a combination of firebug and the alert messages I can see that function is called at the correct time (i.e. when the user changes and then leaves the field) and that the values of the variable, defaultDate are set but my attempts to disable the checkbox have yet to work!
    When I look at the type of the checkbox (through the source of the page or firebug) I see the checkbox has the following "fieldset#P13_DEFAULT_DISPLAY.checkbox_group" Do I need to do anything different to disable this type of object?
    Any help would be very much appreciated!

    Hi Andy,
    I was returning to this thread to update it with how I resolved it, so thanks for the detailed response.
    In a nutshell, the solution I used was a loop through the field set(of which there is only one item in it) and disabling it.
    Where you say:
    Secondly, checkboxes are, as you have seen, wrapped within a fieldset tag. The fieldset tag has an ID of the page item name. Each checkbox within that tag has its own ID value, which will be the fieldset ID plus "_n" (where n is a sequential number starting from 0) - thus, the first checkbox will be, for example, "P1_CHECKBOX_0", the second will be "P1_CHECKBOX_1" and so on.From my searching for a solution I had expected to see something like that. But the source for the item I was trying to disable is shown below and I can't see any numbers after it.
    Do you know why? Is it because it is the only item?
    &lt;fieldset id="P13_DEFAULT_DISPLAY" class="checkbox_group"&gt;
    &lt;input type="checkbox" name="p_v18" value="Y" id="P13_DEFAULT_DISPLAY" /&gt;&lt;/fieldset&gt;
    Regards
    Ian
    Edited by: IanC2 on Feb 8, 2009 8:07 PM
    Edited by: IanC2 on Feb 8, 2009 8:08 PM

  • Disable a check box

    Hello Experts ,
    Need help to disable a check box via Scripting .
    Appreciate your help ..
    Regards,
    Tayi

    Hi Tayi,
    You can use IapiDocumentLockManager APIs to lock/unlock a particular field.
    Let us know if this is what you are actually looking for.
    Thanks
    Devesh

  • How can I disable a check box in one screen?

    Hi,
    I need to disable a check box in the screen 1106 on the program of the transaction F110. I can do that with a user exit or what I can use to do that?
    Thanks!

    you have two options :
    user exit  , check if there is one for this transction
    i attach program below .
    field exit  :
    Within the CMOD transaction type PRFB in the transaction window.
    PRFB is the ok-code to bring up the field exits.
    You can also use Program RSMODPRF to create field exits.
    hope its help u .
    program for user exut  :
    *& Report  ZUSEREXIT                                                   *
    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.

  • Disable individual check boxes in ALV

    Hi all,
    My requirement is that I have one check box against each row. User clicks on the check box then that row is selected and on clicking the push button, bapi is called.
    If result of bapi is success, I want to disable the check box for that particular row/rows. Can you please tell me how I can achieve that? I know how to disbale all the check boxes in the list but I dont know how to disable the individual check boxes.
    Thanks and regards,
    Ridhima

    For that you need to play with the EDITABLE feature of the ALV at the field level.
    Declare a field STYLE type LVC_T_STYL as a part of your internal table. Now, for each row, append the fields of that row to the STYLE column specifying whether it has to be editable or not. You can use the attributes cl_gui_alv_grid=>mc_style_enabled and cl_gui_alv_grid=>mc_style_disabled for this.
    You can look at these threads
    https://forums.sdn.sap.com/click.jspa?searchID=524737&messageID=473177
    https://forums.sdn.sap.com/click.jspa?searchID=524737&messageID=2469829
    https://forums.sdn.sap.com/click.jspa?searchID=524737&messageID=1947071
    Regards,
    Ravi
    Note - Please mark all the helpful answers
    Message was edited by:
            Ravikumar Allampallam

  • How to disable spell checker in editable forms?

    Hello, everyone,
    Asking for an advice.
    I want to disable spell checking in an editable PDF form, since I don't have the dictionary of my language.
    Spell checking in this case is bit annoying and slows down the editing.
    I have the checker disabled in the preferences. However the checker still tries to do it's job.
    How do I disable it?
    Greetings,
    Vytas

    Thanks for checking it out.
    If anybody has ideas about this, please share
    Cheers,
    Vytas

  • Disable authorization check RH_STRUC_GET

    hi,
    is there a possibility to use FM
    RH_STRUC_GET and to disable authorization check similar to  'HR_READ_INFOTYPE_AUTHC_DISABLE' for fm HR_READ_INFOTYPE?
    thanks for help

    stupid question - solved by myself.

  • How to disable avalibility check

    Hi,
    I don't want to avalibility check only in sales order. How can I disable avalibility check for sales order ? How can I customize for this case?
    Thank you,
    Regards,
    Hilal

    hi,
    u can do this by maintaining 'kp' in availability chek field in mrp3 view of material master. but make sure the same is active in delivery item category else the syatem will allow PGI even if there are no stocks.
    saurabh

  • Disabling password checking?

    Hi all,
    is it possible in Oracle to disable password checking, so that I could be connect with just
    <username>@<service name>
    without being prompted for a password?
    Now please don't condemn me... The idea is the following:
    It's all about a dedicated developer database / server.
    I have a lot of scripts which deploy the schema objects of our app, in several "connected" schemas, which are used by the app. For the sake of simplicity and speed we have been using <username>=<password>. But the consequence is, that these scripts cannot be used unchanged for deploying into production.
    It would be great, if I could only use the above mentioned connection script and by a central db-configuration, in one case it would connect me to the DB, in the other case I would be prompted for the password.
    Now please, don't value the approach. This not my idea. But is there a way disable password checking (entering question...)?
    Many thanks, in advance

    Mark D Powell wrote:
    What kind of scripts?
    What OS?
    What version of Oracle?
    We use an environment variables to hold the username and password. The OS then substitutes the current username and corresponding password into the script at run time. So the same Korn shell script we use in test can run in production unchanged and the developers do not know the production password.
    Oraclle also support global authenication via an Directory Server with the Advanced Security option.
    HTH -- Mark D Powell --I have the feeling, that you understood what I mean, still I don't understand your solution. But first I should provide more information...
    We are using 11gR2 on Linux machines, both for development as well as for production. We have a concept for continuous integration, where every schema object has it's own DDL script and then we have an allobjects.sql scripts which every single one of them (simply speaking).
    These are all SQL scripts, written to be executed in sqlplus. In SQLPLUS variables I am handling things like schema names and passwords. The "master" sql-scripts "connect"s itself to all necessary schemas for the app, and deploys every single database objects, executing its script. The consequence is, the "master" scripts contains many "connect" statements and in production every single one schema of the app, could have different password, so I can't just pass it as a parameter to the sql-script once.
    I hope, I have been more clear than the first time. So we have an app, which uses 8-9 schemas to be completely deployed. So I thought, if I could just use "<username>@<service name>" in my scripts, than the DBAs would be able to use them, unchanged, entering the production passwords, when prompted, without the developers knowing them....

  • Disable auto check-in with SharePoint

    Hi all,
    I apologize if this isn't in the right place; I couldn't find an obvious location for Adobe / SharePoint integration questions.
    Today one of my users complained that Adobe Reader X has suddenly started behaving differently in how it integrates with SharePoint (we're using 2007).  When she receives an email with a PDF attached, she opens it in Reader and saves it to SharePoint.  She then wants to review the document and possibly make comments, which again should be saved into SharePoint.  At the end of the review she'll check the document in.
    Today, when she did the initial save, Adobe automatically checked the document into SharePoint.  She tried this several times with different documents, and had the same behavior.
    Is this a new function?  Is there a way to disable it so my user can save the document in SharePoint without checking it in?
    Thanks,
    Kristin

    http://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Windows/FeatureLockdown.html#idk eyname_1_6751
    bDisableSharePointFeatures
    Top>FeatureLockdown>Services (Acrobat.com, SharePoint, etc.)>bDisableSharePointFeatures
    Data type
    boolean: DWORD value > REG_DWORD
    Default
    null
    Version #
    10.1 and later
    Lock Path
    HKLM\SOFTWARE\Policies\Adobe\(product name)\(version)\FeatureLockdown\cSharePoint
    Summary
    Disables the SharePoint integration features.
    Details
    Controls the application's ability to detect that a file came from a Sharepoint server, disables the check-out prompt, and removes the SharePoint specific menu items. Possible values include:
    0: Disable the SharePoint integration features.
    1: Same as "null." Don't disable the SharePoint integration features.

  • Does Anyone Knows How To Disable The "Check For Updates" Option in Adobe Edge Code and Reflow?

    Does Anyone Knows How To Disable The "Check For Updates" Option in Adobe Edge Code and Reflow?
    Thanks in Advance

    I don't think there is a way for Edge Code. I'm not sure about Reflow.
    Why don't you just upgrade? That will stop the notifications.
    Randy

Maybe you are looking for

  • Delivery without sale order

    How can we stop standalone delivery document. In other words, I do not want a delivery document to be raised unless there is a sale order attached. Similarly, a GRPO should not be raised unless there is a PO.

  • ITunes says i need 64bit version to sync, I already have it

    iTunes gives me the following error when I plug in my iPhone: "This iPhone cannot be used because the required software is not installed. Run the iTunes installer to remove iTunes, then install the 64-bit version of iTunes." I'm running vista 64-bit

  • Is there a restriction on moving the position of an image on A5 size paper?

    I would like to print an image in the top half of an A5 sized sheet, to fold to print a card. While I seem to be able to do this with A4 paper I cannot do so when A5 is chosen - the image remains in the centre. As I am new to Paintshop Elements and c

  • Can dynamic ip in windows cause connection failure?

    Recently I had cable internet installed, and the only change I know the techs did to my XP windows was change the ip from static to dynamic. Since then, I've been unable to connect via sqlplus. The listener doesn't register the database anymore. The

  • HP Deskjet 3050A

    With Windows 8 the high resolution printing is poor of quality compared to the printing with Windows XP. Who has a solution?