Init deletion problem...cannot find request

Hi all,
I have a problem with finding the init request. when i activate my chains it asks me to delete the init request. But I cannot find the init request. I use transaction RSRQ to find the request...it takes me to the monitor and shows me that the request it still running. When i click on the init request it gives me the following message....
Object ZPAK_4TNGT3YJGOGOGC8EP1F61EDL9 does not exist in objekt version A for object type InfoPackage (ISIP)
i want to delete this request. How can i do that?
pls advice..
thanks,
wills

Hi,
1. First you should think about why process chain is asking to delete the Init request?  It could be possible that you are activating and scheduling the process chain at the same time but you didnt change the update type to delta after doing init for one perticular infopackage.
2.  If your Init is not complated yet then first you must complete the Init request then schedule the process chain.
Init deletion could cost a big so be sure that you really dont want it.
Last problem "Object ZPAK_4TNGT3YJGOGOGC8EP1F61EDL9 does not exist in objekt version A for object type InfoPackage (ISIP)" - Looks like this infopackage has been deleted from Bw system.
Let me know if it helps.
Mayank

Similar Messages

  • "ALEAUDIT IDoc cannot find request IDoc in Integration Server" error in PI

    Hi Experts,
    i  am getting error "ALEAUDIT IDoc cannot find request IDoc in Integration Server"  and
    <SAP:Code area="IDOC_ADAPTER">ATTRIBUTE_NO_REQUEST</SAP:Code> in PI  .
    i am using ALEAUD.ALEAUD01  IDoc in my scenario.
    i found two threads in SCN (scn.sap.com/thread/1370194,scn.sap.com/thread/1132815)but still i did not understand clearly for this issue .
    Please clearly expline the solution for this issue in this thread ,i will give you points who post the correct solution.
    Please  send me solution for this issue clearly.
    see the below payload also.
    Thanks,
    Aadi

    the same problem
    "ALEAUDIT IDoc cannot find request IDoc in Integration Server"
    Could someone help with it?

  • Error: Idoc name IDoc cannot find request IDoc in Integration Server

    Hi,
    I am getting an error while working on a scenario.
    scenario is Idoc to file. when the Idoc is posted, i am getting the error "ALEAUDIT IDoc cannot find request IDoc in Integration Server"  when i see the status in SXMB_MONI
    I have tested the message mapping and configuration induvidually. They are working fine.
    Kindly help me out in solving this issue.
    please reply

    Hi,
    The AleAduit sent in the case of Idoc to File if the file is posted successfuly is not actually a App Ack, and that is why we get the info Ack not possible.
    But, as the R3 might expect this Idoc, XI still sends it back to the Source R3 system.
    Regards,
    phani

  • ALEAUDIT IDoc cannot find request IDoc in Integration Server

    Hi,
    i m working with a scenario SAP ECC 7.0 -> IDoc -> PI -> IDoc -> R/3 4.6c
    I m sending a purchase order (ORDERS.ORDERS05) from SAP ECC and i want to receive an acknowledgment from R/3. Unfortunately there are only zeros in the field E1ADHDR / E1STATE / DOCNUM, this leads to the error "ALEAUDIT IDoc cannot find request IDoc in Integration Server" on PI.
    Does anybody know what to do in the R/3 system to send the original IDoc number in E1STATE / DOCNUM?
    XML Source of the ALEAUD received at PI:
    <?xml version="1.0" encoding="UTF-8" ?>
    <ALEAUD01>
    <IDOC BEGIN="1">
    <EDI_DC40 SEGMENT="1">
      <TABNAM>EDI_DC40</TABNAM>
      <MANDT>100</MANDT>
      <DOCNUM>0000000004307392</DOCNUM>
      <DOCREL>46C</DOCREL>
      <STATUS>30</STATUS>
      <DIRECT>1</DIRECT>
      <OUTMOD>2</OUTMOD>
      <IDOCTYP>ALEAUD01</IDOCTYP>
      <MESTYP>ALEAUD</MESTYP>
      <SNDPOR>SAPQV1</SNDPOR>
      <SNDPRT>LS</SNDPRT>
      <SNDPRN>QV1CLT100</SNDPRN>
      <RCVPOR>A000000022</RCVPOR>
      <RCVPRT>LS</RCVPRT>
      <RCVPRN>QXC100</RCVPRN>
      <CREDAT>20090605</CREDAT>
      <CRETIM>111523</CRETIM>
      <SERIAL>20090605111521</SERIAL>
      </EDI_DC40>
    <E1ADHDR SEGMENT="1">
      <MESTYP>ORDERS</MESTYP>
      <MESTYP_LNG>ORDERS</MESTYP_LNG>
    <E1STATE SEGMENT="1">
      <DOCNUM>0000000000000000</DOCNUM>
      <STATUS>53</STATUS>
      <STACOD>SAPV1311</STACOD>
      <STATXT>&1 &2 wurde gesichert</STATXT>
      <STAPA1>Terminauftrag EX</STAPA1>
      <STAPA2>2510016042</STAPA2>
      <STATYP>I</STATYP>
      <STAMQU>SAP</STAMQU>
      <STAMID>V1</STAMID>
      <STAMNO>311</STAMNO>
      <STAPA1_LNG>Terminauftrag EX</STAPA1_LNG>
      <STAPA2_LNG>2510016042</STAPA2_LNG>
    <E1PRTOB SEGMENT="1">
      <DOCNUM>0000000004307353</DOCNUM>
      <OBJTYPE>BUS2032</OBJTYPE>
      <OBJKEY>2510016042</OBJKEY>
      </E1PRTOB>
      </E1STATE>
      </E1ADHDR>
      </IDOC>
      </ALEAUD01>
    Regards,
    Udo

    Hi Volker,
    yes, that was the right hint
    I needed to change the RCVPRT field to LS to force the receiving system to send the ALEAUD with original number at the right place. Strange reaction, but it is SAP software, he, he.
    Regards,
    Udo

  • Studio Creator 2 environment problem - cannot find symbol

    This may be a classic newbie question, but I've been looking for an answer without success for three days now. Hopefully, someone that is familiar with configuring Sudio Creator 2 Update 1 environment can help me fix this.
    Problem: Cannot build a simple program within the SC2 IDE. Always get a "cannot find symbol" error related to System.out.printf(...).
    Details:
    I have a simple program, as follows:
    import java.io.* ;
    public class test {
        /** Creates a new instance of test */
        public test() {
        public static void main(String[] args) {
            // TODO code application logic here
            String result="Success!";
            System.out.print("system.out.print") ;
            System.out.printf( "Product is %s \n", result );
    }I can successfully compile this program from the command line using javac test.java and then execute java test (inside the same directory). The build and execution work flawlessly! Therefore, I assume the code is right.
    However, every time I try to build this program, I get one error
    init:
    deps-clean:
    Deleting directory C:\Projects\test\build
    clean:
    init:
    deps-jar:
    Created dir: C:\Projects\test\build\classes
    Compiling 1 source file to C:\Projects\test\build\classes
    C:\Projects\test\src\test.java:14: cannot find symbol
    symbol  : method printf(java.lang.String,java.lang.String)
    location: class java.io.PrintStream
            System.out.printf( "Product is %s \n", result );
    1 error
    BUILD FAILED (total time: 1 second)Here are two system vars that are probably most relevant (taken from WinXP, not from within the IDE).
    PATH = %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\program files\Sun\Creator2_1\java\bin;C:\Program Files\Java\jre1.6.0_03\bin;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\MySQL\MySQL Server 5.0\bin
    CLASSPATH = .;C:\Program Files\Java\jre1.6.0_03\lib;
    I haven't figured out where the internal environemt vars are in the SJSC2 IDE.
    I have tried uninstalling and reinstalling several times, and on a couple different computers, but I get exactly the same problem and results.
    Can someone please help me figure this out before I pull what's left of my hair out? ;-)
    Thanks!

    It looks like it's going to be a BUG in JSC2_Update1.
    I traded emails with Sun support today. They were able to duplicate the problem and are opening a bug report. Doesn't always mean that it really is a bug, but at least they're on it. ;-)
    In the meantime, the Sun rep suggested the folliwing:
    "Also, I suggest trying the NetBeans6.0 IDE. It offers the Creator
    features as Visual Web in NetBeans6.0. See the information :
    http://developers.sun.com/jscreator/index.jsp
    It also has links to migration guide."
    It's still open.

  • Nokia 9500 problem: cannot find specified server

    After some deliberation, I have finally managed to connect my Nokia 9500 to the internet via the WLAN router in my home. So I can access websites ok, although it's slow and some of the webpage elements don't load. Anyhoo... my problem is with Real audio files now. For some reason, it won't download them to my phone when I click save, it just gives me the message "cannot find specified server" and doesn't download anything. I even get this message sometimes as webpages are loading, but after clicking "ok" it continues to load the page and seems to work fine. Anyone know what the problem could be? I'm using a T-mobile pay-as-you-go sim in my phone and my ISP is Tiscali. Thanks in advance.

    Hi,
    The problem is that your internal machines need to access the server's dns to resolve the host name.
    2 steps.
    1. Ensure that DNS in server.app is forwarding requests to your ISP dns server and that server is set to provide DNS
    for some or all clients and that you have your DNS primary zone setup with a machine record for the server.
    2. Change the DNS server address within network settings on all other devices to the servers tcpip address.
    Hope that helps
    Cheers
    Gerry

  • Two Related (?) file deleting problems in Finder and Time Machnine

    My internal drive is partition into two volumes. In the second one (the "non-boot" one), I was have trouble putting files in the trash that were locked. As I was tracking that down I coincidentally(?) started having another problem.
    I started getting a message that the files being put into the trash must be deleted immediately. I check permissions and I had read/write Privileges in the user account I'm normally logged into. However, If I logged into my administrator account, I could put things in the trash without deleting them. I noticed that ignore ownerships wasn't checked, so I checked that.
    That allowed my to put files into the trash without immediately deleting them. I went ahead and deleted the files I wanted to get rid of. However, I'm wondering if there was another issue because I am lead to understand that the ownership privileges shouldn't have necessitated checking "ignore ownerships"?
    Also, I had trouble deleting the backups of those files and folders in time machine. I can delete most of it. But for one folder (and all the folders in which it resides in the hierarchy) I can't deleted it. I tell it to delete backups of that folder (or folders it is in), I put in the password, and goes "ding". But nothing disappears...
    (After I wrote this, I tried unchecking "ignore ownerships" and the problem did not reappear. I can still put files in the trash without the immediate deletion problem.)
    Message was edited by: davidpsummers
    Message was edited by: davidpsummers

    Pondini wrote:
    davidpsummers wrote:
    Also, I had trouble deleting the backups of those files and folders in time machine. I can delete most of it. But for one folder (and all the folders in which it resides in the hierarchy) I can't deleted it. I tell it to delete backups of that folder (or folders it is in), I put in the password, and goes "ding". But nothing disappears...
    Are you doing that via the Finder or Terminal? If so, that's not the way to delete backups. See #12 in [Time Machine - Frequently Asked Questions|http://web.me.com/pondini/Time_Machine/FAQ.html] (or use the link in *User Tips* at the top of the +Time Machine+ forum).
    And now I'm getting an error in time machine. "Files can't be copied onto the backup disk because it appears to be "read only"". I do get info on the disk, and my account has Read & Write privleges, but it say "You can only read" above that".
    The Finder or Terminal deletions may have corrupted your backups. Repair them, per #A5 in [Time Machine - Troubleshooting|http://web.me.com/pondini/Time_Machine/Troubleshooting.html] (or use the link in *User Tips* at the top of the +Time Machine+ forum).
    Message was edited by: Pondini
    I'm doing the deletion through Time Machine (I go into Time Machine, find the folder in the backup, and ask Time machine to delete all backups of that folder).
    I did find the tip of unmounting the disk, rebooting, and remounting it. That Stopped messages about the disk being read only. However, the folder still doesn't delete. I'm also a bit worried about these being symptoms of some other problem...
    Message was edited by: davidpsummers

  • Cannot find request in Catalog manager:OBIEE 10.1.3.3.2

    hi friends,
    Im not able to find an request in catalog manager.
    An report exists in Shared folders->Lh-> Content report
    but when i open catalog manager and browse in same folder, im not able to view.
    Could anyone help me on this issue.
    Currently the folder contains 100+ reports and in catalog manager, under the same folder i could see only 80+ reports. Why is this difference but when i search for report in catalog manager, im able to see the report.
    Is it OBIEE 10.1.3.3.2 bug?
    Thanks
    Kiran Kumar C

    Hi,
    Yes, It's supporting refer the e10417[1].pdf (page no:6) from Oracle Certification and Support for Third-Party
    Products:
    FYI:
    Documented Changes
    Oracle Business Intelligence Enterprise Edition 10.1.3.4.2 – Release August 2011 Rev. M
    Certifications added:
    n Microsoft Windows 7 and Windows 2008 Server R2
    n Microsoft Office 2010
    n Microsoft Internet Expolerer 9
    n Mozilla Firefox 3.5
    n IBM Websphere Application Server 7.0.0.x
    Item of Note with Update M:
    for more:
    Go to the Oracle Business Intelligence Suite Enterprise Edition Documentation Library:
    http://www.oracle.com/technology/documentation/bi_ee.html
    Thanks
    Deva

  • Linkage problem : cannot find the linkage instance

    Hello everyone,
    I'm trying to create a linkage to swap movie clip dynamically. I already create a linkage and after my movie clip symbol actuall say Export: contact_idea. But when I try to attachMovie("contact_idea"). It does nothing. Is there anyway that I can test that the linkage is actuall linked?
    Thanks

    Thank you very much for your reply. But I still have the problem.
    This is my situation.
    on my stage _root stage I have a movie clip named "head". In movie clip head also have movieclips, "part", and "MC_Holder" which play simultaneously. In "part" movieclip, I have a button which is supposed to be clicked and play "MC_Holder" movieclip which I have the problem.
    this is my code in my button in "part" movieclip
            _root.head.MC_Holder.gotoAndPlay("48");
            _root.head.MC_Holder.removeMovieClip();
            _root.head.MC_Holder.attachMovie("contact_idea","newidea",this.getNextHighestDepth());
            _root.head.MC_Holder.gotoAndPlay("48");
    _root.head is the movieclip in root which doesn't have any problem calling it.
    "contact_idea" is the linkage in my library, which I stated earlier that I linked it already and it displayed a symbol Export: contact_idea.
    Thank you very much for all of you.

  • I have a 160GB Hard Drive in my MBP and use VMWare Fusion and had a 60GB Virtual Machine running Windows XP. Deleted the Virtual Machine and CANNOT find the 60GB space I desperately need!  Anybody out there with a similar problem?  Help!

    I have a 160GB Hard Drive in my MBP and use VMWare Fusion and had a 60GB Virtual Machine running Windows XP. Deleted the Virtual Machine and CANNOT find the 60GB space I desperately need!  Anybody out there with a similar problem?  Help!

    Thanks - Of Course the first thing I checked and did.
    Disc Utility reads as follows:
    Capacity : 159.18 GB (159,182,127,104 Bytes)
      Format : Mac OS Extended (Journaled)  Available : 11.47 GB (11,472,896,000 Bytes)
      Owners Enabled : Yes  Used : 147.71 GB (147,709,231,104 Bytes)
      Number of Folders : 139,540  Number of Files : 511,832
    Activity Monitor(Disc Usage) shows something quite interesting.  Mac HD and Ramanan (Main User) - My hard drive is only 160GB!  Would the retired engineer gentleman please note as well.  Many thanks. Rams

  • I have just started using iPhone 4s and cannot find out how to delete unwanted photos. I have used iPhone 3 gs for last 2 years and had no problem with this. Phone is connected to i cloud. Help please.

    I have just started using iPhone 4s and cannot find how to delete photos. Have used iPhone 3 GS for last 2 years and not had this problem. I have iCloud for my Apple family and don't know if this is causing problem. Help please.

    Log in to icloud.com with your Apple ID. Once you're logged in, click on your name on the upper right corner. Click Advanced and then Reset Photo Stream. This will delete all your photos in the album Photo Stream in your iPhone 4S so make sure you have backed up (copy to Camera Roll or new folder) all those that you want to keep.
    This is the only way to do it with iOS 5 (not the beta releases)
    http://iphone-and-i.blogspot.com/

  • Unable to delete User object in FIM Portal - Cannot find the object "#calculateRequestSetTransitionsAssembleStatementsPartition"

    Hi,
    ***Problem
    I encounter a problem with FIM (version 4.1.3441.0 and 4.1.3496.0) when I try to delete a User object (and only a User object) whatever if it is
    manually/Expiration Workflow/Powershell.
    Deleting a User object used to be perfectly functional and, without any product version modification, stopped working. I haven't neither deleted/modified or add a
    "Grant" MPR or any of the corresponding Sets since last time I saw it working.
    Displayed error is "Request could not be dispatched" in FIM Portal and is referencing a stored procedure in Event Viewer.
    ***Error details
    When I try to delete a User object, here is the output :
    Portal
    "Processing error" on submit
    with the following details 
    Request status is stuck at "Validating" until next restart of FIM Service (after what it becomes “Canceled”)
    Request’s “Applied Policy” tab does not contain any MPR where, at least, a “Grant” MPR is expected
    As SQL Timeout is relatively high and error happens quickly, I don’t think there is a Timeout problem under that.
    Logs
    « Application »
    The Portal cannot connect to the middle tier using the web service interface.  This failure prevents all portal scenarios from functioning correctly.
    The cause may be due to a missing or invalid server url, a downed server, or an invalid server firewall configuration.
    Ensure the portal configuration is present and points to the resource management service.
     « Forefront Identity Manager »
    Reraised Error 50000, Level 16, State 1, Procedure ReRaiseException, Line 37, Message: Reraised Error 1088, Level 16, State 12, Procedure CalculateRequestSetTransitionsAssembleStatements,
    Line 332, Message: Cannot find the object "#calculateRequestSetTransitionsAssembleStatementsPartition" because it does not exist or you do not have permissions.
    Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 0.
    Microsoft.ResourceManagement.WebServices.Exceptions.UnwillingToPerformException: Other ---> System.Data.SqlClient.SqlException: Reraised Error 50000, Level 16, State
    1, Procedure ReRaiseException, Line 37, Message: Reraised Error 1088, Level 16, State 12, Procedure CalculateRequestSetTransitionsAssembleStatements, Line 332, Message: Cannot find the object "#calculateRequestSetTransitionsAssembleStatementsPartition"
    because it does not exist or you do not have permissions.
    Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 0.
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler,
    TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult
    result)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.ResourceManagement.Data.DataAccess.UpdateRequest(RequestType request, IEnumerable`1 updates)
       --- End of inner exception stack trace ---
    Requestor: urn:uuid:7fb2b853-24f0-4498-9534-4e10589723c4
    Correlation Identifier: e7209633-46d0-4f4b-a59e-807649ef71ea
    Microsoft.ResourceManagement.WebServices.Exceptions.UnwillingToPerformException: Other ---> System.InvalidCastException: Specified cast is not valid.
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.CreateRequest(UniqueIdentifier requestor, UniqueIdentifier targetIdentifier, OperationType
    operation, String businessJustification, List`1 requestParameters, CultureInfo locale, Boolean isChildRequest, Guid cause, Boolean doEvaluation, Nullable`1 serviceId, Nullable`1 servicePartitionId, UniqueId messageIdentifier, UniqueIdentifier requestContextIdentifier,
    Boolean maintenanceMode)
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.CreateRequest(UniqueIdentifier requestor, UniqueIdentifier targetIdentifier, OperationType
    operation, String businessJustification, List`1 requestParameters, CultureInfo locale, Boolean isChildRequest, Guid cause, Boolean doEvaluation, Nullable`1 serviceId, Nullable`1 servicePartitionId, UniqueId messageIdentifier)
       at Microsoft.ResourceManagement.WebServices.ResourceManagementService.Delete(Message request)
       --- End of inner exception stack trace ---
    For information, a maintenance plan rebuild/reorganize indexes daily and this problem has occurred on servers with different performances.
    Is any of you has already encounter this problem ?
    Any help would be greatly appreciated,
    Thanks in advance for your help,
    Matthew

    While there are several SQL Agent jobs (FIM Temporal Events, Maintain Sets, and Maintain Groups among others)created by the FIM install only one of those is enabled and scheduled and it calls all of the same stored procedures that the other
    jobs do. Step 2 is Maintain sets and Step 3 is maintain groups. So the Maintain sets and groups jobs never need to get enabled and scheduled, but if you want them to be maintained more frequently then you can.
    David Lundell, Get your copy of FIM Best Practices Volume 1 http://blog.ilmbestpractices.com/2010/08/book-is-here-fim-best-practices-volume.html

  • HT203322 Still having issues with installing Yosemite after deleting "Backups.backupdb" on the internal hard drive.  I have restarted multiple times and cannot find any other back up files, yet I still receive the same error message during installation.

    I am using a 2011 iMac on 10.6.8. I recently downloaded the Yosemite upgrade and during the installation process ran into the "this disk is used for time machine backups". I ejected the external drive I use for time machine backups and turned off time machine in the application. I then followed the instructions of the help article (OS X: Cannot install on a volume used by Time Machine for backups - Apple Support) by moving the folder "Backups.backupdb" that I was able to find on my internal hard drive to the trash. I have restarted several times after completing this process. I am still running into the same error during the installation process. I have searched the hard drive for any other backups and I cannot find any. I searched the hard drive using the command cmd-shift-g and searched for “backups.backupdb” and was unable to find any folders or files. Any other suggestions?

    I have resolved the problem - I did not actually delete the "backups.backupdb" folder, I only deleted the contents of the folder.  I must have only searched on the user account for the folder after I thought I had deleted it.  Thank you for the assistance everyone and I apologize for the inconvenience!

  • The system cannot find the path specified - Problems

    I am having an issue that I am hoping someone can help figure out for me.
    I am currently learning Java, and am working with the Beginning Programming with Java for Dummies book second edition. I have downloaded and am running the Java 6 program and am using the JCreator 3.5Pro that was recommended to run the Practice files for the Dummies book.
    I have the practice files here:
    C/Program Files/Xinox Software/JCreatorV3/My Projects
    While trying to compile one of the practice files, I get this error message:
    --------------------Configuration: MyNewProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    javac: file not found: src_mynewproject.txt (The system cannot find the path specified)
    Process completed.
    **When I try to execute, I get this error message:**
    --------------------Configuration: MyNewProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    java.lang.NoClassDefFoundError: EchoLine
    Caused by: java.lang.ClassNotFoundException: EchoLine
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    Could not find the main class: EchoLine. Program will exit.
    Exception in thread "main"
    Process completed.
    When I set up the new file, and the new class, I confirmed the file path.
    I know most people will ask if I am absolutely certain I put in the code in properly, and yes I did. It was a matter of copying word for word, and punctuation. I did it 100% correctly. About 12 times. I have NO idea what this means, but I would REALLY REALLY appreciate any help on this.
    Please keep in mind, I am slightly clueless, and really need to have any help dumbed down a bit. Lol.
    As a side note, this isn't my first project, and I haven't had this problem before now.
    thanks in advance. =)

    So I wanted to clarify what I've done a bit more since I decided to redownload the dummies programs for the program and try again.
    I will try to list my steps in order of what I did and see if I've gone wrong somewhere along the line.
    I downloaded my project files from here: http://ca.dummies.com/store/product/Beginning-Programming-with-Java-For-Dummies-2nd-Edition.productCd-0764588745,navId-322469,descCd-DOWNLOAD.html
    I unzipped them this time here: C:\Program Files\Java\jdk1.6.0_21\MyProjects\
    I opened JCreator 3.5 and starting fresh, with all previous projects deleted and clicked on "Open Workspace". I chose "MyWorkspace.jcw". Right clicked MyWorkspace and chose "Add new Project" and then chose "Empty Project". As per the books instruction for the first project, I named it "MyFirstProject". My file path was: C:\Program Files\Java\jdk1.6.0_21\MyProjects\MyFirstProject. Which is where I upzipped the files. I added it to current workspace and clicked finish.
    I then added a new class. As per the books instructions, I right clicked "MyFirstProject" and selected Add New Class. For the name, I used MyFirstJavaClass, which is what the book told me to do. My locations are the exact same as above. and I clicked on Generate new Method, as it told me to. Which it doesn't in the next few lessons, so I know this has nothing to do with it. For that and a few other reasons. Lol.
    I clicked on Finish.
    All I had to do was replace a single line of code. Not type it all in this time.
    Here is what shows up on the screen:
    class MyFirstJavaClass {
         * Method main
         * @param args
         public static void main(String[] args) {
              // TODO: Add your code here
    I need to change the : // TODO: Add your code here
    with the line:
    System.out.println.("Chocolate, royalties, sleep");
    When I do this, and compile project, I get this:
    --------------------Configuration: MyFirstProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    javac: file not found: src_myfirstproject.txt (The system cannot find the path specified)
    Process completed.
    AGAIN! But it worked a few days ago.
    And when I execute, I get this:
    --------------------Configuration: MyFirstProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    java.lang.NoClassDefFoundError: MyFirstJavaClass
    Caused by: java.lang.ClassNotFoundException: MyFirstJavaClass
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    Could not find the main class: MyFirstJavaClass. Program will exit.
    Exception in thread "main"
    Process completed.
    I really hope the extra info helps someone help me!
    thank you!
    Edited by: MissPamela on Jul 19, 2010 3:23 PM

  • In iTunes 11.1 (I26) , I cannot find how to delete podcast listings showing undownloaded podcasts. Delete does not work. Option Delete does not work.  Dragging to the trash does not work. Under Edit, Delete is greyed out. Mac OS 10.6.8

    in iTunes 11.1 (I26) , I cannot find how to delete podcast listings showing undownloaded podcasts. Delete does not work. Option Delete does not work. Dragging to the trash does not work. Under Edit, Delete is greyed out. Mac OS 10.6.8.
    Tom at the Genius Bar told me that Option Delete would work. It does not.
    I had to upgrade to iTunes 11.1.(I26) because it is required with OS7 on my iPod Touch (5th Gen). I have tried shutting down iTunes, then shutting down the entire system. This is the first in many visits that the Genius Bar gave me a solution that did not work.
    This is a big awkward computer locked to my desk. I would rather not unlock it and then carry it through a shopping center to the Genius Bar if i can avoid oit.
    When I installed iTunes 11.1, I discovered that Ihad to resubscribe to virtually all of the podcasts that I had previously been subscribed to. That was a surprise.

    Hello Achates:
    I did not read the rather long post. If you wish to reinstall OS X 10.4, use your software install DVD. Backup is essential. To minimize your risk, I would use an archive and install:
    http://docs.info.apple.com/article.html?artnum=107120
    In that way, you will have a fresh copy of OS X and your current settings will be preserved.
    Incidentally, I do not agree that the printer problem is best solved by reinstalling OS X. I have had HP printers for sometime and, on one occasion, had difficulty after an upgrade. HP technical support walked me through uninstalling all traces of the HP driver and then reinstalling.
    Barry

Maybe you are looking for

  • Error in running servlet

    hi, i have written a servlet code and compiled it successfully. But when i give the url:http://localhost:8080/j2eecode/ons or http://localhost:8080/j2eecode/servlet/ons it gives me error: type Status report message /j2eecode/ons description The reque

  • How can I see which purchased items are not transferred before making an update?

    When I try to update I get the: "There are purchased items on the iPad "Yours iPad" that have not been transferred to your iTunes library. You should transfer these items to your iTunes library before updating this iPad. Are you sure you want to cont

  • Std SAP report which shows Ordinary vs. Special Depr by Asset

    Hi Friends ,                 Can some one tell me if there is any std SAP report in FI_AA whihc gives Ordinary vs. Special Depr by Asset . Any inputs greatly appreciated, Ty.

  • Oracle Intelligent Agent error

    I can't start dbsnmp from listener, the error message is: DBSNMP Discovery Error: couldn't read file "./oracle_olympia.tcl": no such file or directory and in "dbsnmpw.log", NMS-00315: Failed to create tcl package index. I can see the $ORACLE_HOME/net

  • ZEN MOZAIC EZ 300 8mg is stuck on rebuilding

    ,Is there?ANY way to get HELP for my ZEN MOZAIC EZ 300 8 Mg player It has shut down and stuck on rebuilding. I have tried for days to get some help on the webpages listed on the instruction sheet. but it has been a waste of time. If no one can help m