Java5.0 features are not accepting by sap netweaver developer studio7.0.18

Hi
I recently installed NetWeaver 7.0 and sap netweaver developer studio 7.0 with sp18.
I have one application which was developed using java1.5 and used java 1.5 features. When I import that project and try to build, IDE is not accepting java1.5 features.
I checked jdk compliance level options in windows>Preferences>java-->compiler then I found that IDE is capable to take upto 1.4.
Now my questions are:
1. How can build and deploy my application through NW Developer Studio?
2. Is there any jdk1.5 compatible developer studio version available?
3. Are there any configurations or setting I need to do?
Could you please help me in this regard..
Thanks & Regards
Srinivas

Hi Srinivas,
I think your posting is not correct in this forum here which covers the offering Accelerated Application Delivery. You should better try to post and receive an answer in another forum. I would recommend to use a forum like: [Application Server --> Java EE 5 @ SAP|Java Development; or the SAP NetWeaver.
Best regards
Jana

Similar Messages

  • Error during installation SAP SAP NetWeaver Developer Studio

    Hello,
    Can somebody help installing SAP SAP NetWeaver Developer Studio?
    I get the message:
    SAP NetWeaver Developer Studio 2.0.0. Setup Wizard not Completed
    The SAP NetWeaver Developer Studio 2.0.0 Setup has not successfully installed all selected components on your computer, either because a component could not be installed or the process has been aborted.
    Click Finish to exit the wizard.
    The following program files could not be installed:
         c:\documents and settings\all users\documenten\sap\workspace\.metadata\.plugins\org.eclipse.jdt.launching\vmconfiguration.xml
    The installed applications may not function correctly until all program files are successfully installed. For detailed error descriptions, please open file://D:\IDE\setup\saplogvw.exe .
    The following program files could not be installed:
         c:\documents and settings\all users\documenten\sap\workspace\.metadata\.plugins\org.eclipse.jdt.launching\vmconfiguration.xml
    The installed applications may not function correctly until all program files are successfully installed. For detailed error descriptions, please open file://D:\IDE\setup\saplogvw.exe .
    It looks like a Windows XP problem, because manually I can't copy or create a file in de directory:
    C:\Documents and Settings\All Users\Documenten
    So the following directory doesn't exits:
    c:\documents and settings\all users\documenten\sap\workspace\.metadata\.plugins\org.eclipse.jdt.launching\
    It's weird that I don't have access to the "Documenten" directory (this is the dutch Shared-documents-directory) , because I never changed it.
    When I right-click the directory "Documenten", and I go to Properties, then I don't see a tab setting access groups.
    How can I get access again to the "Documenten"-directory?
    Kind regards,
    Alwin.

    Sunil,
         There is a NW-DS version on the NW4 test drive DVD given out at TechED which I believe was also posted on the ftp.sap.com before TechEd '04 for CeBit 2004. I personally would like to put my vote out there for getting preview versions to the hands of admins to install and kick the tires before we try to convince management to buyin to purchase a product. Another way SAP reduces TCO?
    Bill

  • Is SAP NetWeaver Developer Studio 2004s Supported on SUSE Linux

    Hi,
    Is SAP NetWeaver Developer Studio 2004s supported on Linux? It appears you can get a trail version of SAP NetWeaver Developer Workplace 2004s for Linux but there are no installation guides (SAP NetWeaver Developer Workplace nor SAP NetWeaver Developer Studio) to be found anywhere.
    Thanks,
    Luke

    Hi Sajesh,
    The SAP NetWeaver Developer Studio Installation Guide does not say Linux is supported (see below).
    Luke
    1 Overview
    Purpose
    This document describes how to install the SAP NetWeaver Developer Studio as a standalone version. To install as part of the SAP NetWeaver Developer Workplace, see the installation guide Developer Workplace for SAP NetWeaver 2004s.
    You can see the SAP NetWeaver installation guides at service.sap.com/instguides.
    Platforms
    You can install the SAP NetWeaver Developer Studio on:
    Windows 2000
    Windows XP
    Web Browser
    You require Internet Explorer 5.5, or higher.
    Minimum Hardware Requirements
    The SAP NetWeaver Developer Studio requires approximately 500MB disk space, 512MB RAM, and an 800MHz processor.

  • How do i check the list of invoices which are not posted into sap.

    Hi All,
    Iam displaying(ALV) the list of invoices and epayments for both PO & non PO transactons which are being processed in workflow but not posted in sap.
    (Non po transaction is th eone with out reference of a PO)
    How to check and list out the invoices that are not posted in sap. where does this get stored.
    please help.
    Thanks
    jyothi.

    Hello Jyothi,
    U can give try with EKBE table for getting invoices for PO. In this table there is a field vgabe which has various status. U can try that. Now for Non PO, u would be directly creating invoice doucment using FB60(i guess) which would create an entry directly into BKPF/BSEG. U can scan BKPF for the date range company code document type KR which vendor invoice.

  • How do I find out what features are not useful in my Classifier?

    How do I find out what features are not useful in my Classifier? I am trying to trim down the number of features to speed up the training of my data, I have about 3700 features. I have found the Filter Based Feature Selection Module and have not been successful
    in using it. I have looked through all the examples and have not been able to find any examples using the module. Will the Filter Based Feature Selection Module help me to trim features. If so how do I use it?

    One way to do this would be is to use a random forest classifier. Feature/variable importance can be obtained relatively easily with random forests. 
    Here is how you may do it in R.
    > install.packages('randomForest') #install randomForest package in R if it is not already there
    > library(randomForest) # reference the library
    > data(mtcars) # load motor cars data that ships with 
    #train a random forest 
    > mtcars.rf <- randomForest(mpg ~ ., data=mtcars, ntree=1000,keep.forest=FALSE, importance=TRUE)
    > importance(mtcars.rf)
    > importance(mtcars.rf)
    #You will see an output like below
           %IncMSE IncNodePurity
    cyl  16.168645     169.96741
    disp 18.672188     260.08722
    hp   17.584375     184.95007
    drat  6.948743      63.54528
    wt   17.818509     254.30347
    qsec  4.772889      33.25546
    vs    5.303058      24.39064
    am    5.210181      17.36626
    gear  4.619161      21.55450
    carb  8.577037      28.46715
    # or plot the importance as follows
    > varImpPlot(mtcars.rf)
    What this tells you is how important predictors/features/variables like horsepower(hp), weight(wt), no. of cylinders (cyl) is in predicting miles per gallon (mpg).
    If you are wondering how the data looks like. Try this
    head(mtcars) # gives first few lines of the data set.
     mpg cyl disp  hp drat   wt ... 
    Mazda RX4     21.0   6  160 110 3.90 2.62 ... 
    Mazda RX4 Wag 21.0   6  160 110 3.90 2.88 ... 
    Datsun 710    22.8   4  108  93 3.85 2.32 ... 
    . Try this
    Here is a few useful resources:
    Random Forest documentation (Check out the pages on variable importance and variable importance plot)
    http://cran.r-project.org/web/packages/randomForest/randomForest.pdf 
    Motor cars data: http://stat.ethz.ch/R-manual/R-devel/library/datasets/html/mtcars.html

  • Oracle xml DB and text features are not installed

    HI,
    I installed Sql developer 3.0 ,oracle 11g and jdk 7 on centos 5.when iam running sql developer its showing error message oracle xml DB and text features are not installed.
    pls anyone help me out.
    thanks
    srinivas
    Edited by: srinivas on Oct 17, 2011 4:49 AM

    may be help you
    Re: Connection Error - Oracle XMLDB and Text Features are not installed.

  • How can I re-install Imovie ? some features are not available ( world globes ,etc...)

    How can I re-install Imovie 10? some features are not available ( world globes ,etc...) after the update from today

    I'd suggest a fresh reinstall of iMovie then. Delete the Application and re-download from the Mac App Store. You should see something like this:

  • Some Brazillian certificates are not accepted by Firefox

    Some certificates from Brazillian Government sites are not accepted by Firefox

    The ICP-Brasil root certificates aren't installed in Firefox and are currently pending.
    Install the ICP-Brasil root certificates (you need the v1 root certificate for this site).
    Check off the trust bit to allow the certificate to identify websites.
    * http://www.mozilla.org/projects/security/certs/pending/#ICP-Brasil
    Autoridade Certificadora Raiz Brasileira
    Autoridade Certificadora Raiz Brasileira v1

  • The new track and mask features are not showing on my version of premiere cc. It says it's uptodate.

    The new track and mask features are not showing on my version of premiere cc. It says it's uptodate.

    Please double-check the exact version as displayed in the About box. The new release is an entirely separate version referred to CC 2014.0; it is not merely an update to CC7. That means that if you launch CC7.2.2 and go Help>Updates, it will report that the program is up to date.
    If you're on CC7.2.2, then the easiest way to install CC2014.0 is to launch the Creative Cloud app and scroll down the Apps tab looking for "Premiere Pro CC (2014)."
    Note that once CC2014 is installed, you will need to use a new app icon to launch it; the old icon will continue to launch CC7.

  • The Parallel Data Warehouse (PDW) features are not enabled.

    Tryin to use the Over Clause and receiving the following message:
    Msg 11305, Level 15, State 10, Line 2
    The Parallel Data Warehouse (PDW) features are not enabled.
    Microsoft SQL Server Management Studio 10.0.5500.0
    Microsoft Analysis Services Client Tools 10.0.5500.0
    Microsoft Data Access Components (MDAC) 6.1.7601.17514
    Microsoft MSXML 3.0 5.0 6.0 
    Microsoft Internet Explorer 9.0.8112.16421
    Microsoft .NET Framework 2.0.50727.5456
    Operating System 6.1.7601

    That's only the information about your client tools; the SQL Server version is mor of interest. You can query it with
    SELECT @@VERSION
    Olaf Helper
    * cogito ergo sum * errare humanum est * quote erat demonstrandum *
    Wenn ich denke, ist das ein Fehler und das beweise ich täglich
    Blog
    Xing

  • Delivering the crystal formated reports to users who are not defined BO/SAP

    Hi,
    The requirement is to send the crystal formatted report to number of users who are not in BO/SAP System. Can we use the whole dynamic contact list for automated personalization and distribution to people not set up as a user in the system?
    Can we deliver a publication to the users who are not at all defined in the BO system or any SAP system
    its to the users who are all together different vendors who do not have any login.
    Please let me know if this is possible via publication if possible could any one provide me any doc which states the same
    Thanks in Advance,

    Moved to BOE Admin forum.
    I assume you are using a BOE Scheduling options to distribute your reports?
    Check the Scheduling Guide and formats for more info.
    And yes simply send them a DPF file and set up a Group in your e-mail Server, or individual if that works better. More work though.
    Don

  • Administrator credentials are not accepted

    When a normal user account is logged in and an application upgrade asks for the credentials of an administrator account the credentials provided are not accepted in spite of the fact that the credentials are correct.

    Obviously forgot to mention that when i log the user out and log in with the credentials of the administrator account it logs in correctly. Logging out and log in with user account and than providing credentials for administrator account for update gives the error text: login name or password incorrect. Which i just proven to be correct.

  • My security answers are not accepted when downloading movies. Why

    My security answers are not accepted when downloading movies.TRIED restting the security question that did not work.  Called apple support --- no help.
    I'm at a lost PLEASE HELP

    Reset Security Questions
    Frequently asked questions about Apple ID
    Manage My Apple ID
    Or you can email iTunes Support at iTunes Store Support.
    If all else fails:
    Go to: Apple Express Lane;
    Under Product Categories choose iTunes;
    Then choose iTunes Store;
    Then choose Account Management;
    Press Continue;
    Now choose iTunes Store Security and answer the bullet questions, then click Continue;
    Sign in with your Apple ID and press Continue;
    Under Contact Options fill out the information and advise iTunes that you would like your security/challenge questions reset;
    Click Send.
    You should get a response within 24 hours by email.
    Presently there appears to be problems on Apple's end, so it may be quite some time before they respond.
    Another user had success doing the following:
    I got some help from an apple assistant on the phone. It is kind of round about way to get in.
    Here is what he said to do and it is working for me...
    on the device that is asking you for the security questions go to "settings", > "store" > tap the Apple ID and choose view"Apple ID" and sign in.
    Tap on payment information and add a credit/debit card of your preference then select "done", in the upper right corner
    sign out and back into iTunes on the device by going to "settings"> "store" > tap the Apple ID and choose "sign-out" > Tap "sign -in" > "use existing Apple ID" and you should be asked to verify your security code for the credit /debit card and NOT the security questions.
    At this time you can remove the card by going back in to edit the payment info and selecting "none" as the card type then saving the changes by selecting "done". You should now be able to use your iTunes store credit without answering the security questions.
    It's working for me ...I just have to put in my 3 digit security pin from the credit card I am using.
    Good Luck friends!

  • Security question answers are not accepted when renting movies. Why? How do you correct?

    Correct Security answer are not accepted when renting movies.
    Why? How do I correct the problem so I can watch movies?

    Reset Security Questions
    Frequently asked questions about Apple ID
    Manage My Apple ID
    Or you can email iTunes Support at iTunes Store Support.
    If all else fails:
    Go to: Apple Express Lane;
    Under Product Categories choose iTunes;
    Then choose iTunes Store;
    Then choose Account Management;
    Press Continue;
    Now choose iTunes Store Security and answer the bullet questions, then click Continue;
    Sign in with your Apple ID and press Continue;
    Under Contact Options fill out the information and advise iTunes that you would like your security/challenge questions reset;
    Click Send.
    You should get a response within 24 hours by email.
    Presently there appears to be problems on Apple's end, so it may be quite some time before they respond.
    Another user had success doing the following:
    I got some help from an apple assistant on the phone. It is kind of round about way to get in.
    Here is what he said to do and it is working for me...
    on the device that is asking you for the security questions go to "settings", > "store" > tap the Apple ID and choose view"Apple ID" and sign in.
    Tap on payment information and add a credit/debit card of your preference then select "done", in the upper right corner
    sign out and back into iTunes on the device by going to "settings"> "store" > tap the Apple ID and choose "sign-out" > Tap "sign -in" > "use existing Apple ID" and you should be asked to verify your security code for the credit /debit card and NOT the security questions.
    At this time you can remove the card by going back in to edit the payment info and selecting "none" as the card type then saving the changes by selecting "done". You should now be able to use your iTunes store credit without answering the security questions.
    It's working for me ...I just have to put in my 3 digit security pin from the credit card I am using.
    Good Luck friends!

  • I answer the security questions correctly, but the answers are not accepted

    I just got ISo8. i am trying to do the set-up routine. I answer the security questions correctly, but the answers are not accepted, so the process is stalled.
    How do I get things moving?

    Forgotten security questions - https://discussions.apple.com/message/18402551
    More involved forgotten question issues - https://discussions.apple.com/thread/3961813

Maybe you are looking for