Error about base class not being found in custom class when extending

I have gone through the process of extending the base View Object oracle.apps.icx.lov.server.ExpenditureTypeNoAwardLovVO. My extension object is: snl.oracle.apps.icx.lov.server.SnlExpenditureTypeNoAwardLovVO. The extension was done to change the query used in this LOV. I get the following 3 compile errors when I rebuild my project. Error: can't read: C:\JDevOAframework\jdevhome\jdev\myprojects\oracle\apps\icx\lov\server\ExpenditureTypeNoAwardLovVORowImpl.java
Error(2,35): cannot access class oracle.apps.icx.lov.server.ExpenditureTypeNoAwardLovVORowImpl; file oracle\apps\icx\lov\server\ExpenditureTypeNoAwardLovVORowImpl.class not found
Error(10,60): class ExpenditureTypeNoAwardLovVORowImpl not found in class snl.oracle.apps.icx.lov.server.SnlExpenditureTypeNoAwardLovVORowImpl
I have the oracle.apps.icx.lov.server package in my project and it has the following 3 files in it:
ExpenditureTypeNoAwardLovVO.xml
ExpenditureTypeNoAwardLovVORowImpl.class
ExpenditureTypeNoAwardLovVORowImpl.java
I do not have the last file (the .java one) on my local drive under C:\JDevOAframework\jdevhome\jdev\myprojects\oracle\apps\icx\lov\server.
Is the .java file not supposed to be in the package? I'm not sure how it got there since we don't have access to it on the server, etc.
If anyone has any suggestions your help is greatly appreciated!
Thanks,
Paula

The second 2 errors were solved by copying the ExpenditureTypeNoAwardLovVORowImpl.class to my myclasses directory under oracle/apps/icx/lov/server and then recompiling.
I'm still not sure why an empty .java file was added to my project causing the first error. I was doing this extension on a machine with Windows 2000 and I had created a new workspace (other than toolbox.jws) when I got this error. When I did the same extension on a machine with Windows XP and in the toolbax.jws workspace, the empty .java file didn't get added to my project and I didn't get the first compile error. Not sure if one of these variables was the cause.

Similar Messages

  • Coded UI Test now gets error about Newtonsoft.json not being found

    I have a simple coded ui test to log into an application. The test is data driven and uses data from TFS. We are using a TfsTestAgent user (that has admin privs) that is on both the server and the agent systems. When I execute the test, I see the following
    error:
    The unit test adapter failed to connect to the data source or to read the data.
    For more information on troubleshooting this error, see "Troubleshooting Data-Driven
    Unit Tests" (http://go.microsoft.com/fwlink/?LinkId=62412) in the MSDN Library.Error
    details: Could not load file or assembly 'Newtonsoft.Json, Version=4.5.0.0,
    Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The
    system cannot find the file specified.
    The test run log (UITestLog.html) shows this:
    I, 2524, 81, 2015/03/24, 13:27:09.815, 14494724802, QTAgent32_40.exe, ExtensionFramework : Reading extensions from custom dir 'C:\Program Files (x86)\Common Files\Microsoft Shared\VSTT\12.0\UITestExtensionPackages'
    V, 2524, 81, 2015/03/24, 13:27:09.830, .\QTAgent32_40.exe, UnitTestExecuter.RunClassInitializeMethod: Acquiring m_runner.SyncRoot.
    V, 2524, 81, 2015/03/24, 13:27:09.830, .\QTAgent32_40.exe, UnitTestExecuter.RunClassInitializeMethod: Acquired m_runner.SyncRoot.
    V, 2524, 81, 2015/03/24, 13:27:09.830, .\QTAgent32_40.exe, CodedUITest : CodedUITestExtension.BeforeClassInitialize()
    V, 2524, 81, 2015/03/24, 13:27:09.830, .\QTAgent32_40.exe, CodedUITest : CodedUITestExtension.AfterClassInitialize()
    V, 2524, 81, 2015/03/24, 13:27:09.830, .\QTAgent32_40.exe, UnitTestExecuter.RunClassInitializeMethod: Released m_runner.SyncRoot.
    V, 2524, 81, 2015/03/24, 13:27:09.830, .\QTAgent32_40.exe, UnitTestRunner.ExecuteDataDrivenTest: started.
    V, 2524, 8, 2015/03/24, 13:27:10.377, .\QTAgent32_40.exe, CodedUITest : CodedUITestExtension.BeforeClassCleanup
    V, 2524, 8, 2015/03/24, 13:27:10.377, .\QTAgent32_40.exe, CodedUITest : CodedUITestExtension.AfterClassCleanup
    V, 2524, 8, 2015/03/24, 13:27:10.393, .\QTAgent32_40.exe, CodedUITest : CodedUITestExtension.Dispose()
    I, 2524, 8, 2015/03/24, 13:27:10.393, .\QTAgent32_40.exe, UnitTestRunner.Dispose.
    The interesting thing is that Newtonsoft.Json (aka Json.Net) isn't used in the project at all or any referenced libraries. From the above log, it appears to me that this is outside of the coded UI test since it isn't registered as a script exception.
    The question then is, why did this start after changing the user that the Coded UI system runs tests under? I have tried reverting it back to the original user via a snapshot (and change the host environment in Test Manager). Doing so gives me the same result
    above.
    I'm looking for any ways to debug this further or ideas for fixes. I have tried the following as failed fixes:
    including Newtonsoft.Json in the solution
    copy over the library to c:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\PublicAssemblies
    revert to a known working build and run it (still get same error)
    Big thing to note is that last item. I had builds that I know worked and worked on multiple machines. Using those builds on any machine produces the same result. What could cause that error message and be machine/test code independent?

    Hi JasonUnrein,
    >> Could not load file or assembly 'Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The system cannot find the file specified.
    Based on the error message and your description, I assume that the issue might be caused by your application instead of the Coded UI test. Were the project which you test a Web Api project? If so, I would recommend you log into the application directly without
    the Coded UI project to check whether the application could work correctly. The link below might be useful to you:
    # Could not load file or assembly 'Newtonsoft.Json, Version=3.5.0.0
    http://stackoverflow.com/questions/6176841/could-not-load-file-or-assembly-newtonsoft-json-version-3-5-0-0
    >> Big thing to note is that last item. I had builds that I know worked and worked on multiple machines. Using those builds on any machine produces the same result.
    In my option, I will recommend you create a new web project and a new Coded UI test project to test instead of using the original project.
    If I misunderstood you, please feel free to let me know.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Crystal report error (The table '' could not be found)

    Dear Expert,
    As I know, the end user who don't want to edit the crystal report design no need to buy crystal report,right?
    Using the 'Crystal reports for SAP B1', they already view the report.
    But, how about, if I had created one crystal report, and then I want to distribute to end user. When I load the report on user machine that dont have crystal report, the system shown an error (The table '' could not be found).
    I think, maybe because of the database location. When I create the report, of course I made connection to my machine as a source of database location. But, how i'm going to change the database location to user machine?
    Is it when we login into SAP, did SAP auto detect the new location source? And will auto create connection to the crystal report?
    Thanks in advance for any help.

    Hi ,
    We do not create the database connection for the end user. the end user must have the same database connection as it is set up on your machine. The report is looking for the same connection, with the same access into the database.
    Best regards,
    Jadie

  • Sim Card not being found on Passport

    I have a new Passport which I like.
    It is locked to Vodafone and I have a Vodafone Sim
    First 10 days it was fine then the sim card was not being "found"
    I tried two new sims and no luck.
    It seems the device may be faulty.
    I bought it from a private user on Ebay for which it was an unwanted upgrade.
    How do I get it repared?

    Ok. Since it was purchased from an non-official retailer on eBay, I don't know...
    you might try the BlackBerry per incident support channel.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Images and .properties(bunldes) files are not being found from my JSPs

    Hi,
    I have created .ear file by using ANT Application. And deployed into Oracle9iAS(OC4J). Here problem is that images and .properties(internationalization bundles)files are not found from JSPs.
    Here is my directory structure.
    public_html--->locale -->BusinessEntity -->businessentity_en_US.properties
    --->enterprise -->images -->knowldege.jpg
    --->BusinessEntity-->BEAdd.jsp
    in my jsp bundle(.properties)file is accessed like this:-
    <i18n:bundle baseName="/locale/-->BusinessEntity/businessentity" id="businessentity" locale="<%= locale %>" />
    in my jsp images accessed like this:-
    src="/enterprise/images/knowldege.jpg".
    In my working environment, without creating .ear file, images and .properties files are being found my JSPs. But if i create .ear file and after deploy, images and .properties files are not being found my JSPs.
    please let me know where i might did wrong
    thanks in advance
    srinivas

    Hi i am again. Here is my configuration files(server.xml and default-web-site.xml)
    server.xml :-
    <?xml version="1.0"?>
    <!DOCTYPE application-server PUBLIC "-//Evermind//DTD Orion Application-server//EN" "http://xmlns.oracle.com/ias/dtds/application-server.dtd">
    <application-server application-directory="../applications"
    deployment-directory="../application-deployments"
    >
         <library path="../tools.jar" />
         <rmi-config path="./rmi.xml" />
         <jms-config path="./jms.xml" />
         <log>
              <file path="../log/server.log" />
         </log>
         <transaction-config timeout="30000" />
         <global-application name="default" path="application.xml" />
         <application name="nalluri" path="../applications/trainiumear.ear" auto-start="true" />
         <global-web-app-config path="global-web-application.xml" />
         <web-site path="./default-web-site.xml" />
         <cluster id="-1640090707" />
    </application-server>
    default-web-site.xml:-
    <?xml version="1.0"?>
    <!DOCTYPE web-site PUBLIC "Orion Web-site" "http://xmlns.oracle.com/ias/dtds/web-site.dtd">
    <web-site port="8888" display-name="Default Oracle9iAS Containers for J2EE Web Site">
         <default-web-app application="nalluri" name="Commonwar" />
         <access-log path="../log/default-web-access.log" />
    </web-site>
    thanks in advance
    wating for reply
    srinivas

  • Quick time error "a file could not be found"

    Quick time error "a file could not be found" when trying to open a file that exist in a directory name including hebrew characters.
    When copying the same file to other directory with english characters only, file opens without any problem.
    This is very frustrating since my files are located under My documents directory
    The full path of the "My Document" directory is:
    C:\Documents and Settings\אלון\My Documents.
    Also, I have IPOD 5G (with video). iTunes does not have any problems with audio files located under the above directory, but video files for my IPOD have the same problem (since probably it is using Quick time). The problem with iTunes is more frustrating since it does not report any error, but you just cant update video podcasts or add video files to library.
    I spent a few days to uderstand this.
      Windows XP  

    http://discussions.apple.com/thread.jspa?threadID=769732
    This is a old post from when I had recieved the Error-43 file could not be found. In my case I had a drive lettered F:\ F:\ when changing the drive to a single letter F:\ it resolved the problem, so something you might want to take a look at.

  • I recently upgraded computer to windows 7.  When I open itunes I am able to see my music library, but unable to play.  Gives an error message of "Could not be found".  How do I retrieve my library contents?

    I recently upgraded computer to Windows 7.  When I open itunes I am able to see my music library, but unable to play.  Gives an error message of "Could not be found".  How do I retrieve my library contents?

    Hello ehoff5,
    I would be concerned too if I was not able to play my music in iTunes.  It sounds like the music files may be in a location that iTunes is not expecting.  I recommend reviewing the following articles to locate you music files on your computer:
    iTunes: Finding lost media and downloads
    http://support.apple.com/kb/ts1408
    Where are my iTunes files located?
    http://support.apple.com/kb/ht1391
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • WD Mybook not being found

    Hi,
    Anybody have any ideas why the WD mybook using firewire or usb is not being found by the iMac?? It had been working fine until a week ago and it will work in a windows enviroment. Any ideas woud be great Thanks.
    Imac 20"   Mac OS X (10.4.8)  

    The format maybe in NTFS (windows), as far as I know macs cant read that, see if Mac OS X can find it by going Macintosh HD > Utilities > Disk Utility or (Spotlight > Disk Utility) and see if you can see it there with your iMac hard disk, if it is unplug it and backup everything on your PC and wipe the external drive, then plug back in your iMac and then go to Macintosh HD > Utilities > Disk Utility or (Spotlight > Disk Utility) and format the external HD in FAT or FAT32 when done unplug and take back to windows pc and copy data back to drive. Try that and post your results

  • Iphone 4S will not charge, error that USB device not working, found any suggestions?

    iphone 4S will not charge, error that USB device not working, found any suggestions?

    Hello Chambless,
    The troubleshooting steps below can help get your iPhone to charge.
    If your battery doesn't charge, or if your device shows a low-battery image, black screen, or "accessory not supported" alert, follow these steps.
    Inspect the connector at the bottom of the phone:
    Make sure that there are no bent pins in the connector.
    Make sure that the connector is free from debris.
    If there are bent pins or debris, please contact Apple Support.
    Otherwise, continue troubleshooting.
    Make sure that the outlet you're using works.
    Make sure that the Apple USB cable and Apple USB power adapter work.
    Plug the device in to power and let it charge for up to 30 minutes. If you don't have an Apple USB power adapter, try connecting to a computer's high-power USB 2.0 port (not a keyboard). The computer must be on.
    If the device still exhibits an issue, try turning your device off and then on again while connected to power.
    If the issue is persists, please contact Apple Support.
    iPhone and iPod touch: Charging the battery
    http://support.apple.com/kb/HT1476
    Cheers,
    Allen

  • I am not being able to play sound when I import a .MTS file from my folder

    I am not being able to play sound when I import a .MTS file from my folder on my sequence bar of my Premiere Pro CS6. Even if I use my Media Browser to import the file, the video plays fine, but the audio is disabled it seems. I don't know what to do since I have used .MTS files before without hassle on CS5.5. It is quite frustrating. What can I do?

    Hi debesh05,
    Please mention the Operating System that you are using and also make and model of the Camera that was used to capture those clips. Also, try to make another folder with the same name in the same location where the .MTS files are and move all the clips into the new folder and then try to import the files again using Media Browser in Premiere Pro CS6. If this doesn't work then make a copy of one file and rename it as .M2TS and then import that single file into Premiere Pro CS6. Please update if either of the solution works for you.
    Regards,
    Vinay

  • F.27 email not being sent to customer

    User is not able to send customer statement when they execute F.27.  User is not finding the E mail id  in the Fax/email column in the final output of F.27 .
    For the customer chosen email id & INT email, and in correspondence tab Bank statement - 2 monthly account statement is correctly updated in the customer master.

    Hi
    Are you using the enhancement RFKORIEX? If the answer is yes, check if the field KNB1-INTAD is populated (usually, it is used for this purpose). The same if you are using BTE 2410.
    I hopet this helps you
    Regards
    Eduardo
    pd: see also SAP Note 1360070 - E-mail function for correspondence and SAP Note 1377820 - Mail with balance confirmation, SAPF130D or SAPF130K if you are using BTE. Perhaps you confuse 2310 instead 2410.
    Edited by: E_Hinojosa on Feb 17, 2012 4:02 PM

  • Classes in web-inf/lib not being found.

    I'm having problems with a servlet app in which jar files placed in the web-inf/lib of the application are not found at runtime.
    If I put them in J2ee\home\lib they are found OK.
    This application has previously deployed and worked correctly, then I added another servlet and redeployed, and classes that were previously found OK stopped being found.
    On checking the server all the directories look correct.
    What could be causing this and how can I make my web applications deploy reliably?
    OC4J version is 9.0.3.0.0.
    Thanks

    Guys,
    Have you tried with the production version of OC4J 9.0.2 ? It should work. Please download the production version of OC4J 9.0.2 and give a try.
    regards
    Debu Panda
    Oracle

  • BeanInfo not being found when running from a JSP in WebLogic 6.1

    Hi,
    I wrote a BeanInfo base class for dynamically building HTML Tables using an array of beans. I wrote the code and tested it all using the command line and verified that the Beans were dynamically loading and displaying based upon the rules I had defined in the base class. Basically I was using the Introspector to find the class. When I transfered the code into a JSP running on WebLogic 6.1 it is never finding my BeanInfo. I even tried having the end BeanInfo be the bean itself (Had the Bean extend the BeanInfo). Still didn't find it and keeps giving me the default (or GenericBeanInfo) class to represent my Bean when calling the Introspector.getBeanInfo. I am making sure that my Introspector.setBeanInfoSearchPath is being done correctly. Like I said it is working ont the command line.
    Why is the Introspector not finding the correct BeanInfo class for my Bean when I do it inside of a JSP?

    Never mind, I figured out what is wrong. It always returns the GenericBeanInfo but it still goes throught the motions of calling the underlying BeanInfo.
    So, ignoe. I can't delete the topic.

  • Class not being created when running from jar

    Hi all,
    Tech info first:
    IDE: Sun Java Studio Enterprise 8
    Plaform: windows xp
    I have created a Swing app, that connects to a com port(using the RXTXcomm). now, when I run the app in the IDE, everything is fine and dandy, but, when I run the jar file, the application loads, but the class in the app which deals with the com port is not created. here is the code:
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            Main receiver = new Main();
            receiver.getPropertiesFromFile();
            //Create and set up the window.
            frame = new JFrame("R�FILOG RFID Empf�nger");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setContentPane(receiver.mainPanel);
            frame.setJMenuBar(receiver.createMenuBar());
            frame.addWindowListener(receiver);
            frame.setLocationByPlatform(true);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
            portListener = new RFIDReaderComm(receiver, "COM3");
            portListener.getConfiguration();        
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();   
    portListener in the createAndShowGUI() function is an interface level parameter and is the class that is not being created. There is no error message.
    If I move the two lines that deal with the port listener before the frame.pack() line, then the GUI is not even loaded, and when I view the processes in the task manager, the process starts and then quits without anything becoming visible. So from this I guess there is a problem with creating the class when running from a jar, but without any error messages, I have not a clue where to start...can anyone help?
    thanks in advance.

    Well, some more info, so maybe someone can come up with some tips for me...this is really important, and any help is greatly appreciated.
    This is obviously a classpath problem. After running the my jar file with java -jar I finally got the error NoClassDefFoundError
    Kind of obvious I suppose. But, I cannot seem to get the two jar files I need into the classpath. I have tried the following:
    Updating my computers CLASSPATH with the relevant paths - not working
    Trying to get the Sun Java Studio Enterprise to build the required jar files into the final package - cannot get this to work
    Tried updating the manifest.mf in the following way:
    Created a text file Manifest.txt with the lines:
    Class-Path: RXTXcomm.jar
    Class-Path: BrowserLauncher2-10rc4.jar
    ran the command (in the same directory as Manifest.txt):
    jar cfm RUFILOGScanner.jar Manifest.txt classes/*.class
    but this does not work either. When I run: jar tf RUFILOGScanner.jar all I get is:
    META-INF/
    META-INF/MANIFEST.MF
    classes/
    classes/CRCCalculator.class
    classes/Main$1.class
    classes/Main.class
    classes/RFIDReaderComm.class
    classes/URLDialog$1.class
    classes/URLDialog$2.class
    classes/URLDialog.class
    the classes I want added are not there. Plus, (I think this is because I am running SE8) the manifest.mf is not in a folder called META-INF. In fact, I have no folder called META-INF. Is this significant?
    Please, can anyone help me?

  • Can not restore due to folder not being found

    I just want to wash my ipod harddrive and just start over due to a couple of problems I have had.
    Whenever I connect to itunes, it does not recognize that it is a nano, but does say it is an ipod, and that it is corrupted, so I should restore.
    I click restore and the error that comes up is
    " can not restore because the correct folder can not be found "
    any ideas what that is about.
    already done all the troubleshooting steps to no avail.
    not a newb on the computer so its frustrating me.

    You might want to try deleting the "iPod Photo Cache" folder on your computer.
    See the instructions here:
    Photo Sync creates iPod photo cache
    After that, restart your computer, and try restoring your iPod again.
    Any difference after trying that?
    -Kylene

Maybe you are looking for