Import packages and Compilation issues

hello,
I am trying to compile and import a package in eclipse but it is not working.
Any helpful links or feedback would be helpful.
In the left pane is package explorer.
I right clicked and imported the apache commons .jar files.
The source .java files are in the same project folder.
On the top navigation in Eclispe the Project Button is not showing the build project accessible.

Your problem is really vague. It´s too generic and visually. Please use technically correct terms. Also please tell what error message exactly you got.
As far it sounds like that you don´t understand how classpaths work and how the Eclipse´s buildpath is related to that.

Similar Messages

  • Import package and create view object

    Hi,
    How can i import package from another project and create a new view object with my package and with the imported package.
    Thanks
    null

    Hi,
    How can i import package from another project and create a new view object with my package and with the imported package.
    Thanks
    null

  • Import package and dllhost process hanging

    When attempting to run the import package through data manager, the window freezes while attempting to select an import file. The application server shows one of the dllhost.exe processes using all available CPU capacity from this step. After terminating the data manager on the client, the dllhost.exe that consumes the CPU on the application server terminates as well.
    We are on BPC release 7.5.104.03 on the MS platform.
    Any help would be appreciated.
    Thanks.
    Tom

    as pavan said take a backup and delete expired archivelogs ...
    connect as RMAN @target database...
    rman target /
    rman>report obsolete;
    rman>delete expired archivelog all;
    if no files are eligible for deletion ...then increase the FRA size....
    SQL> alter system set db_recovery_file_dest_size=xG SCOPE=BOTH; larger amount
    please post below details.....
    SELECT * FROM V$RECOVERY_FILE_DEST;
    Select file_type, percent_space_used as used,percent_space_reclaimable as reclaimable,
    number_of_files as "number" from v$flash_recovery_area_usage;
    select name, space_limit as Total_size ,space_used as Used,
    SPACE_RECLAIMABLE as reclaimable ,NUMBER_OF_FILES as "number"
    from V$RECOVERY_FILE_DEST;
    source is oracle.com
    Edited by: dbc001 on Mar 21, 2013 6:50 PM

  • Import package and Variables

    Hi, I need your help
    It is possible to modify the import package to PROMPT for some dimensions when running...? Like for example, ask the user to select Dimension Category and then send that parameter to the construction of the import to be uploaded?
    For example tohave as source file
    ERP,sales,p1,2011.JAN,500
    ERP,sales,p2,2011.jan,350
    PROMT when run in DM.
    Select Category: PRON2
    Converted file
    ERP,sales,PRON2,p1,2011.JAN,500
    ERP,sales,PRON2,p2,2011.jan,350

    Hi Ana
    As per Sorin's post, it would make more sense to use a transformation file and then use *IF mapping functions.
    *If (Condition1 then Action1;Condition2 then Action2;Default Action)
    [http://help.sap.com/saphelp_bpc75/helpdata/en/5A/69200C88AA40C9B18844A25259F147/frameset.htm]
    For Example:
    CATEGORY=*If (TIME=JAN then PROD1;TIME=FEB then PROD2;COL(2))
    Hope this helps
    Kind Regards
    Daniel

  • Problem with package and compile

    I am new to Java. I am currently using Java in developing a simple system. However, my system need to import other external classes.
    The main problem is i dont know how to compile this file when they are in separate folder (i am using windows). Let say the main .java is in one folder and other external .java in other folders. I knew this can be done with the use of package. the problem is when i try to compile, there is a problem.
    I used to refer from the below link for many times, but still cannot get it.
    http://java.sun.com/j2se/1.3/docs/tooldocs/win32/javac.html
    can anyone provide me the most simple way of:
    1. import from external classes into my main system
    e.g: import com.jrefinery.report.Element;
    2. how to compile all .java from different directory
    3. after i compile, i need the .class files place in other directory
    advanced thanks to those who able to provide help.
    Sosan

    can anyone provide me the most simple way of:
    1. import from external classes into my main system
    e.g: import com.jrefinery.report.Element;You can use the -classpath option with javac, specifying the path of your external classes.
    javac -classpath C:/classes D:/classes
    2. how to compile all .java from different directoryYou simply indicate the path of the different sources files one after the other, like that :
    However, you really should put all your source files in the same package unsig the package instruction. All files that belong to the same package must reside in the same directory indicated by the package name. Look up some doc about the package instruction.
    javac -classpath C:/classes D:/classes C:/source/myclass.java D:/source/myClass.javaYou should put all the source files in 1 directory an compile using the * wildcard by :
    "javac C:/sources/*.java" for example
    3. after i compile, i need the .class files place in
    other directoryuse -d option with javac to specify the output directory :
    javac -classpath C:/classes D:/classes -d C:/outputdir C:/source/myclass.java D:/source/myClass.javaTo simplify things, put all source files in the same directory and put a copy of each external package you use in this directory. So you won't have to use classpath.
    I also suggest you write a .bat file to do all the operations at once, and stick with it so that each time you change something in the sources you won't have to go through all the steps.
    Beware, because path issues in java can be very tricky.

  • Importing Packages and Efficiency

    is it more efficient to import only the classes your program needs ( in a single package) or would it be the same as importing everything in that package?
    many thanks
    akz

    Import has no impact at all on runtime performance.
    Importing might have some impact on compilation performance. Whether it is measurable depends on what you are doing and what the compiler does.

  • Data Modeler importing packages and triggers

    Hi,
    I don't see any option to import triggers or packages from an Oracle Database, is it possible?
    Despite having no option for trigger import, and no option on the GUI tree or table properties to display the available table triggers, to my surprise there is a 'triggers' tab in the DDL generation window. So I think triggers are imported automatically, but neither are visible, nor can be created. Please correct me if I'm wrong.
    For packages I haven't seen any option, can this be true?
    Thanks

    Importing packages would be a useful thing, and also having more control of the other PL/SQL objects like triggers.
    By the way, DDL file generation lacks customization, like generating multiple files depending on the type of objects.
    I hope points like these could be introduced in the next release.

  • Importing packages and classes

    Hi, I wanted to know if anyone could tell me how to import a packages under the following circumstances:
    Say the class i'm importing TO is called SourceClass1, and is in a folder SourceFolder1, and SourceFolder1 is in the folder Root. Let's say I want to import a package that is in another directory called SourceFolder2 and SourceFolder2 is also in Root. So I want to import Root.SourceFolder2.* but I need to tell java to go up a directory and into SourceFolder2. I tried
    import ../SourceFolder2.*;
    But that's an invalid syntax. Thanks for your help!

    Thanks for your input, I appreciate it. However, the class that i am writing is in a directory whose parent has another directory containing a class i want.
    Root
    Directory1 Directory2
    SourceClass.java ToBeImported.java
    Is there a way of doing this without setting the classpath? just by pointing to the relative path of the directory and package?

  • Import Saturation and Contrast Issues

    Hi all,
    Strange issue popped up today. On import, my video appears dull and lifeless (red bricks grey). The video camera lcd looks great (red bricks red). I've imported multiple times before without this issue, including from the same mini dv tape and camera set up. Have I messed up the settings somewhere that I can't find. I know I can adjust saturation, etc from imovie, but I'd like to start with something at least close. . . .
    Using iMovie '11 and Panasonic mini-dv that's several years old.
    Thanks,
    Steve
    PS I've looked, but can't find a solution on the forum, though the issue has been posted up before.

    Set up new user, same issue.
    To get it close to reality, I have to bump saturation up nearly 200% with the level sliders about 7 and 95 as well. Indoor lighting, red banner, girl with red hair, red bricks, all terribly muted. LCD screen and direct to tv quite vibrant. . . .
    Thanks for any suggestions.
    Best,
    Steve

  • ITunes and Compilation issues

    Well, I think it's a problem many people have, but I have not been able to find a good answer. (Plus I am lazy, to be fair).
    I have a fairly big collection of Ministry of Sound albums (all of which are compilations of several artists). I have labelled the Album Artist as "Ministry of Sound" while retaining the real artist and album name.
    I have also marked the songs as part of the compilations and selected the box in the Advanced options to group compilations, yet I get this:
    http://img21.imageshack.us/img21/3039/compilationissue.jpg
    As you can see, the list is sporadic and unordered, the albums are all over the place making the cover look horrible.
    Please help out. I am using the latest version of iTunes.

    Click on the column header for Album.
    You can click again, slowly, to cycle through Album, Album by Year, or Album by Artist.
    You currently have Album Artist selected. I can tell, because there is a little triangle in that header.
    Well done on posting a screen shot! Worth a thousand words, and all that...

  • Java-JSP working with packages and classes

    Hi everybody,
    I'm bearly new on Java-JSP developping and I wanted to know how Tomcat (for example) manage the imported packages and classes.
    The fact is I'm working on a project ('/bob') which use some packages that I don't see in the '/bob' directory. So, is that possible that '/bob' is downloading packages and classes from Internet to '/bob/download' virtual repertory and use it? If it is true, is it possible to override this download by making '/bob' project using local packages or classes (example : com.boblibrary.classes.util in '/bob/WEB-INF/classes/com/boblibrary/classes/util') instead of downloading it?
    Therefore, the '/bob' project is using bugged classes (that I think it downloads from Internet) which I can't correct.
    Thanks for your help.
    - Renaud

    Thank you for your answer, but I can't imagine where is physicaly the class that my project use and show me as http://localhost:8080/atlassian-jira-3.13.2/download/ressources/br.com.ecore.jira.plugin.projectViewPlugin:ProjectViewTabPanel/js/projectviewtabpanel.js. Where is that Javascript file suppose to be on my hard drive? Or where is that class 'br.com.ecore.jira.plugin.projectViewPlugin' suppose to be on my hard drive? If it is not dowloaded from the Internet.
    I have no trace of that class on 'atlassian-jira-3.13.2/', neither on 'jdk1.6.0_18/', 'jre6/' or 'apache-tomcat-5.5.28/common/classes/'.
    Thanks.

  • PHP5.2.4 with oci8 Compiling issues

    Hi I had installed apache .2.0.54 rpm and installed oracle-instantclient-basic and oracle-instantclient-devel and compliled php-5.2.4 with the follwoing options
    sudo ./configure with-oci8=instantclient,/usr/lib/oracle/10.2.0.3/client/lib/  prefix=/opt/php with-apxs2=/usr/local/apache2/bin/apxs     enable-sigchild --with-config-file-path=/etc/httpd/conf
    Make gives a error
    /usr/bin/ld: skipping incompatible /usr/lib/oracle/10.2.0.3/client/lib//libclntsh.so when searching for -lclntsh
    /usr/bin/ld: cannot find -lclntsh
    collect2: ld returned 1 exit status
    make: *** [libphp5.la] Error 1

    Hi Cj
    Thx As you told i followed the steps and Compiling issues is resolved and i had some other issue like oci8 extns was not visible in phpinfo.php and after Trial and error its started working.
    The reason for oci8 not visible is i httpd-devel was not installed , after installing httpd-devel and recompiling with the following options oci8 was enabled.
    ./configure \
    --with-oci8=instantclient,/opt/instantclient_10_2 \
    prefix=/opt/php   with-apxs2=/usr/sbin/apxs \
    enable-sigchild with-config-file-path=/etc/httpd/conf
    Thx for the Help :) :) :)
    Christian Jones
    Karthik

  • Packages and the big picture

    Hitting the chapter on subprograms and packages in the 2-day developer guide brought up material that is completely new to me, so I'm trying to think my way through it and hoped you guys might help me put some of the pieces together into at least a rough overall picture of how this works.
    Here's one statement that particularly caught my eye: "Many Oracle customers allow client programs to access the databases only by calling subprograms."
    To help explicate this, I'll take as an example a company with a sizeable plant near where I live: Baldor, which makes electric motors. That seems at least roughly like the kind of company that would fit the model of the hr database that Oracle provides as example--big enough to have multiple office locations, decent sized IT department but also lots of users who have no clue with regard to the inner workings of the database but who all still need to acces data of various kinds.
    Now suppose I (picturing myself with a good deal more knowledge than I currently have) am supposed to be developer for an Oracle database that is going to handle Baldor's data of various kinds. Aside from the obvious intricacies of setting up all the tables and their interrelationships, what I'm wondering (particularly since I'm coming from Access, where issues of this kind are outside the scope of the program) is how to picture the various interfaces for various user-types.
    They're going to have their administrators, who will know how the program works and how to tweak it to improve performance and all that. And they are skilled enough to use several possible interfaces, maybe develop their own, maybe just use one of the various access options that Oracle has in the drawer.
    But now, back to the packages and subprograms issue, which is the point of departure for my question: Am I supposed to set the database up so that everything that the non-IT guys in accounting, HR, sales, etc. need is set up in subprograms (that need to be designed accordingly) and will then be presented in various kinds of front ends (generated in whatever programming languages) that non-IT people can comfortably use and which provides additional protection for keeping consistent and accurate data in a context where lots of people are dealing with (and editing) it--i.e, the subprograms provide additional control over how the data is manipulated by the various non-IT people who need it and work with it.
    Is that the basic idea of how the subprograms and procedures fit into the overall scheme of things in Oracle?

    SQL and PL/SQL (or SQL Server, or MySQL, or ?? implementations of procedural SQL, for that matter) is a specialized skill set. My experience is that Java, .NET, VB, Python, Ruby on Rails, (or whatever comes next) programmers tend to not be very strong in SLQ or PL/SQL. Packages or procedures and functions provide a way to protect the database from these programmers. It also serves to allow more freedom in the front end development because the business rules and logic reside with the data and does not have to be recreated and tested whenever the front end language or platform changes. Used to be Mainframe with CICS, IDMS, IMS. Then client server. Now browser based applications. Next Smart phone applications. After that, who knows. But the data and business logic remains, the only thing that changes is how you get to it.
    HTH

  • Redraw issues after FLA imported to Flash, and Compiled in Air

    I created a test file in inDesign. It has 3 pages. The pages are pretty simple. Though there are some clipping paths and animation.
    I ported the filed to Flash, as a FLA.
    I added video in Flash, and some more animation.
    I added code so the file will go from frame to frame, (what were the pages), on mouse click in the frame.
    If I complie it is Flash, it works great.
    If I compile it in Air, which I want to do, when it gets to the last page, it starts to have redraw-issues.
    When the user clicks on page 3, there is a gotoAndStop(), which normally takes the user back to page 1. But in Air, the user gets to page one, but only sees page 3, as the redraw never occurs. I tested this very carefully, by rebuilding the whole thing and removing every element.
    The issue seems to be, if I remove all the pagespreads, which are now "movieclips" in Flash, it works fine without redraw issues.
    If I add any of the pagespread movieclips to a frame, as they were when imported, the redraw issue occurs, but only when I compile in Air.
    Have you heard of this before? I was wondering if there might be some settting in Air that is conflicting with the inDesign created pages, which are now movieclips.I am hoping there is something that I can do to fix it, as I would like to continue to create the spreads in inDesign.
    I am working on a PC in Windows Vista. I wondered if this was the issue as well. I can share the file if you want to see it, compiled in flash, and compiled in Air.
    Thanks very much,
    e

    Just to update. this is relevant for inDesign users who want to port to Flash, and compile as an app in Air.
    It turned out what was causing the problem was  my use of the TLF text. Air did not like it and caused it to error and not function. I rasterized the text on export as a FLA instead, and it compiled fine. It may be my use of kearning, hanging indents, etc. I refined the text alot in inDesign, as would most designers. Maybe the samples used in testing never had hanging indents? Anyway, it works fine, as long as I rasterize. This loses the nice TLF editing function in Flash. But at least it works and the text looks good.
    Any info on this, or if anyone reproduces the error, I'd be interested in hearing.

  • Compiling Packages, Functions, and Procedures Issues

    If you are in the editor for a package and attempt to compile a know good package under another schema (compiled in SQL+ and Toad), you receive the following errors:
    Error(21,5): PLW-06002: Unreachable code
    Error(131,7): PLW-07202: bind type would result in conversion away from column type
    (122) TN_EXISTS NUMBER := 0;
    (131) IF TN_EXISTS > 0 THEN ...
    When commenting a line with if you have something like the following it tells you there is a syntax error
    -- some comment here --
    When compiling a PL/SQL function that returns a Boolean, you get this error: Error(40,4): PLW-06002: Unreachable code

    Kris,
    I seem to have the same problem.
    Is there a way to 'deactivate' this behaviour, or do we need to wait for another Raport Release.
    This is basically preventing me from using Raptor at all for any PL/SQL development ;-(
    Wouter

Maybe you are looking for

  • WRE54G not working with D-Link DIR-655

    After having 2 Linksys WRT310N units fail within 14 months, I was given a D-Link DIR-655 to use for my home network.  When I originally purchased the WRE-54G for use with the 310N, the signal strength as indicated on a Tivo and PS3 went from 20%-40%

  • File to Mail with content as excel attachment

    Hi there, Can somebody please guide me in achieving this goal. I have a requirement in which I have to send the email content as an excel attachment which is very new to me. Requirement File.............XI............Mail Sender File: xyz.xml Mapped

  • Trying to play Audiobooks with my Creative ZE

    Hi there!?I?ve downloaded a few Audiobooks from "Audible.co.uk" in format 4, and then got them into my Audible Manager program and set my device (creative ZEN Vission M), and I?ve imported them into my Device but When I try playing anyone of them a m

  • How do I set up Description meta tag on pages

    Hi, I have set up page titles but can't see how to set up description on pages.  Any help appreciated.

  • Formatting displayed output

    Hi: how do I format the output so that it shows me the complete value for the EVENT_ID field =========== SQL> select /*+ FIRST_ROWS */ EVENT_ID from EVENT_DATA where AGENT_ID IN (160,212,264); EVENT_ID 4.9561E+18 4.9561E+18 ================ TIA Ravi