How to disable warnings in JDev

When I build my application using Jdev I get 0 error and approx 100 warnings but when I use ant to build the application I get approx 100 errors and
no warnings.
Again I use Jdev to build, now I am getting 100 errors and no warnings.
My question is after running ant ,is ant turnning the warnings into errors.
Is there any way to turn off the warning flag in JDev.

Hi Timo,
I am using JDev 10.134 and ant version is Version 2.0 , as the application is pretty old it user an older version of ant also I am using java1.4.2.
Yes I remember deleting the classes folder.
I have a doubt that somewhere ant is turning on some compiler flag to convert the errors into warnings.

Similar Messages

  • How to disable warnings?

    When I open spreadsheets from Excel, sometimes I'll get a warning popup because a font is missing. How can I disable these warnings?

    A quick search in Google with the complicated key string :
    calibri AND mac
    returned :
    http://www.tecnerd.com/2009/09/09/calibri-font-free-download/
    They explain that the fonts are available in the File Format Converter for Mac 1.0 available from :
    http://www.microsoft.com/downloads/en/confirmation.aspx?FamilyId=6B9238E1-CF69-4 8C4-BF2D-C4A8ACEEE520&displaylang=en
    If I just want to delete any Calibri references out of my Numbers spreadsheet, that should keep it from warning right because the font isn't there and neither is the reference. But how do I delete out the reference?
    I described that several times.
    I even posted a script to do that.
    Go to my iDisk :
    <http://public.me.com/koenigyvan>
    Download :
    For_iWork:iWork '09:changeFont.zip
    The problem is that you will have to apply the script on the file each time you will receive a modified version.
    This is why I think that it's more efficient to install the font.
    Yvan KOENIG (VALLAURIS, France) samedi 8 janvier 2011 21:36:52

  • How to disable warnings dropdown?

    Is there any way to disable the "warnings" dropdown that appears when some documents are loaded? All I find when I review the warnings is a couple of fonts aren't available. Most of the time I really don't care and would prefer to have this thing disabled.
    The documents are usually short items that arrive in email that I check out using Pages rather than other applications (my computer is Adobe- and Microsoft-free). However one document that I reuse every month also has putative font problems, though I have checked all parts of the document and have found no stray fonts. In fact, at one point I deleted all text boxes and started over, yet the warning still persists. This is driving me nuts! Help! With thanks!

    No, but...
    You can dismiss the drop down alert with a single keystroke.
    Press esc.
    Regards,
    Barry

  • How to disable field validation when block is in query mode ?

    Hi,
    we use Jdev 11g TP3 and implemented a button to set a block of input fields in query mode.
    Some of this fields are mandatory.
    When performing an execute operation this mandatory fields are validated and the JS error message pops up.
    In query mode this fields must not be mandatory !
    How to disable the validation of those mandatory fields when the block are in query mode?
    BR
    Peter

    Hello Peter,
    A little correction to Chris' suggestion, it should be:
    <af:inputText value="#{bindings.<your field name>.inputValue}"
                        label="#{bindings.<your field name>.hints.label}"
                        required="#{!bindings.<your iterator name>Iterator.findMode && bindings.<your field name>.hints.mandatory}">
    ...etc...The only difference is the removal of the ? : operator since it isn't required and represents both an additional parsing and processing effort. Go micro-optimization!
    ~ Simon

  • How to disable application versioning

    Hi,
    using Jdev 11.1.1.1.0 for an ADF fusion web app and generating an EAR, the Deployer automagically adds the following manifest file
    myapp.ear!/META-INF/MANIFEST.MF
    Manifest-Version: 1.0
    Weblogic-Application-Version: V2.0
    Does anyone know how to disable this feature? Searching the current fusion web app dev guide there is no occurence on 'Weblogic-Application-Version'....
    Should I provide my own MANIFEST.MF without Weblogic-Application-Version: V2.0 included?
    Thanks for any clarifying comments.
    Regards,
    Andreas Koop

    yo dude,
    The PopupManager is what you need.  See the docs here: http://help.adobe.com/en_US/flex/using/WS6c678f7b363d5da52e8f1ca1124a0430dcf-8000.html 

  • 11g: how to disable tooltip for gauge?

    Hi,
    dvt:graph and dvt:gauge (type=LED) displays a tooltip by default when you move mouse over series or led.
    With dvt:graph you can set property markertooltiptype to "MTT_NONE" to avoid this default tooltip.
    For dvt:gauge I can't find such a possibility.
    How to disable the default tooltip for dvt:gauge too?
    Jdev 11.1.1.0.2
    regards
    Peter

    Hi Peter,
    For a gauge, the best way to disable tooltips is to use the renderImagemap attribute with imageFormat="PNG". For example:
    <dvt:gauge gaugeType="LED" imageFormat="PNG" renderImagemap="false"/>
    If instead you decide to customize the gauge tooltips, you can use the shapeAttributes alt attribute (without the renderImagemap="false"):
    <dvt:gauge>
    <dvt:shapeAttributesSet>
    <dvt:shapeAttributes component="GAUGE_PLOTAREA" alt="Your Tooltip"/>
    </dvt:shapeAttributesSet>
    </dvt:gauge>
    Hope this helps,
    Hugh

  • How to disable parent window while popup window is coming

    Hi,
    I am working on Oracle Applications 11i.
    I am able to get the popup window using the Java script in the controller.
    Please see the below code for the reference.
    String pubOrderId = pageContext.getParameter("orderId");
    StringBuffer l_buffer = new StringBuffer();
    StringBuffer l_buffer1 = new StringBuffer();
    l_buffer.append("javascript:mywin = openWindow(top, '");
    l_buffer1.append("/jct/oracle/apps/xxpwc/entry/webui/AddAttachmentPG");
    l_buffer1.append("&retainAM=Y");
    l_buffer1.append("&pubOrderId="+pubOrderId);
    String url = "/OA_HTML/OA.jsp?page="+l_buffer1.toString();
    OAUrl popupUrl = new OAUrl(url, OAWebBeanConstants.ADD_BREAD_CRUMB_SAVE );
    String strUrl = popupUrl.createURL(pageContext);
    l_buffer.append(strUrl.toString());
    l_buffer.append("', 'lovWindow', {width:750, height:550},false,'dialog',null);");
    pageContext.putJavaScriptFunction("SomeName",l_buffer.toString());
    But here the problem is, even though popup window is there, i am able to do the actions on the parent page.
    So how to disable the parent page, while getting the popup window.
    Thanks in advance.
    Thanks
    Naga

    Hi,
    You can use javaScript for disabling parent window as well.
    Refer below link for the same:
    http://www.codeproject.com/Questions/393481/Parent-window-not-disabling-when-pop-up-appears-vi
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to Disable "Auto Align" in [System Pref.] - [Display] - [Arrangement]

    Does anyone know How to Disable "Auto Align" in [System Preferences] -> [Display] -> [Arrangement]?
    It always want to align the two screens from the top when they are lined up close together and I need them to be aligned from the bottom. Since the resolution heights are so close together (1080 & 1050) it does not allow one to align side by side from the bottom as it prioritizes top alignment.
    I guess I'm looking for a script to disable this feature.

    Anyone got any ideas?

  • How to disable the "turn page" event triggered by the scroll/swipe function?

    The problem is as follows.
    The default behaviour of Acrobat Reader (both stand alone and browser plug-in) is to allow scrolling/swiping with the mouse wheel/trackpad. This is useful when the pdf's page length is greater than the screen's own length, because you can read the pdf with no need to distract your attention from the text to the scrollbar button. However, the same scroll/swipe function turns into a usability problem when the pdf is embedded in a html page and the pdf's page length is smaller than the browser's length. In this case, the scroll/swipe turns the page, distracting your attention from the text to the unintended behaviour of the browser. What happens is that you are so used to scrolling/swiping that you did it unintentionally in the pdf's caption area. You really did not want to turn pages in the pdf. Furthermore, if the pdf takes the whole html page, being a website, the scroll/swipe function flips the website pages in ways that neither the reader nor the writer had ever intended. Hence the question. How to disable, in this case, the "turn page" event triggered by the scroll/swipe function? A JavaScript should do, but the SDK documents did not help so far...
    Message was edited by: 41457173
    Message was edited by: 41457173

    ... or release a patch for the API,
    ... or suggest an alternative route to achieve the intended result.

  • [Forum FAQ] How to disable Microsoft account default sign-in behavior when accessing Microsoft website on Windows 8.1

    Scenario
    By default it will sign in with current Microsoft account, if a user accesses Microsoft website (www.live.com, www.bing.com, etc.) with Microsoft account on Windows 8.1. This article describes how to disable this default sigh-in behavior if you want to use
    different Microsoft accounts every time. 
    Method
    To disable this default sign-in behavior, we can deny current Microsoft Account read permission of MicrosoftAccountTokenProvider.dll, please follow the following steps:
    Run Command Prompt with elevated permissions.
    Run the following command to take ownership of MicrosoftAccountTokenProvider.dll:
      takeown /f C:\Windows\SysWOW64\MicrosoftAccountTokenProvider.dll
    Run the following command to deny the read permission of the Microsoft:                                
     icacls C:\Windows\SysWOW64\MicrosoftAccountTokenProvider.dll /deny
    [email protected]:r                                                                                                                
    Note: Please replace your current Microsoft Account with the example
    [email protected]
    Change the owner of this file back to TrustedInstaller:
    Right-click MicrosoftAccountTokenProvider.dll under
    C:\Windows\SysWOW64\, choose Properties. Under
    Security tab, click Advanced.
    Click Change, in the box Enter the object name to select, type
    NT Service\TrustedInstaller.
    Click OK.
    Note: This operation would take some hours to work.
    Apply to:
    Windows 8.1
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Error: System cannot find the specified path
    I am getting this eroor
    Parashuram Singade www.distinctnotion.com

  • How to disable airplay mirroring on iPad with ios7

    How to disable airplay mirroring on iPad with ios7?

    I've had this problem ever since I was at my friend's house- she has Apple TV- and my iPad connected automatically. So, I have no idea why any of the practical solutions that people think of are not options BUT, in terms of just getting it done, I did figure out a way. The key for me was getting near another Apple TV. I was out of town so I took my iPad to another friend's house who also has TV. Once I was logged onto their wireless network (the same network that their Apple TV is on-- that's how it connected in the first place), then the Airplay icon and options showed up from the bottom-draw menu and I was able to make sure that mirroring was turned off from the Apple TV section and to make sure the selection was on iPad instead. Problem solved. Now whether or not this will stay the same (rather than me having to make sure it stays at this setting everytime I link up to a network that has an Apple TV on it) I don't know. So my advice is find someone with Apple TV and connect to their network with your iPad and then change it.

  • I have changed the apple ID (email, but on my iphone , the icloud is stil asking me to log in whit the old email.And it is poping-up on every 10 seconds.I never used icloud, and i dont want to use it.I just dont know how to disable the icloud.

    i have changed the apple ID (email) but on my iphone , the icloud is stil asking me to log in whit the old email.And it is poping-up on every 10 seconds.I never used icloud, and i dont want to use it.I just dont know how to disable the icloud.

    If you see that pop up you enabled icloud. Whether you want or do not want now to use it irrelevant until you actually disable activation lock.
    In order to do that you have to change your apple id back to do that just long enough to sign in and back out. System will ask you to verify, don't.
    Just sign in on the prompt you getting and then logout. Once done, change apple id to what you have now and verify. Then decide if you want to
    use icloud (who does not want to be able to track their phone if lost or stolen).

  • Can't use down key because it opens automator. Does any one know how to disable this short cut?

    Everytime I press down on down key it opens automator. It doesn't let me delete the app. I don't know what to do, it is very frustating to fill in a chart when I can't use the down key. Does any one know how to disable this short cut?

    Are you talking about the Down Arrow key? To my knowledge there is no way to use that key as a shortcut for anything. But look in the Keyboard section of System Preferences and the Keyboard shortcut tab.

  • I need to know how to disable my apps on my old system so that I can install them on new computer.

    I've just purchased a new iMac and need to know how to disable my apps on my old system so that I can install them on the new one.

    You are allowed to have two working installations so you do not have to disable the original if you prefer to have a backup.  Otherwise, to disable you can just sign out thru the CC manager.
    Creative Cloud Help / Sign out, Sign in | Creative Cloud desktop app
    http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html

  • How to disable a Entire row in a Matrix in Find Mode (User Form)

    Hi,
    How to disable a Entire row in a Matrix in Find Mode (User Form)
    Regards
    Jambu

    Hi,
       Iam using Bubble event = false in click event but the matrix row
    is allow to edit but we cant save the document in Find Mode That is fine.
    What is my actual requirement is In find mode matrix Row not allow to enter the data .
    For examble In ADD mode i enter the data in Three rows (Item Section - Matrix) and
    save the document. Whwn i open the document in find mode the three row is not allow
    to editable like the same functionality of PO, sales Order, etc ..
    Regards
    Jambu

Maybe you are looking for