Document not found error in sourcing

Friends,
We are implementing SRM 5.0 in ECS. I have created a shopping cart. It is approved and is purchaser's worklist. When we go to sourcing(BBPSOCO01) and add it to my workarea and then click "create purchase order", I get a message "Document 1000000341 does not exist ". if I click on the create PO again a Purchase order is created but is in held status. I get the same error in this PO also.The message doesn't even have any number. Please any help will be appreciated.

Hi
<b>Please go through the following SAP OSS Notes as well -></b>
<u>Note 1008491 - BBPSOCO01:Problems with large follow on Docs
Note 979476 - Calling transaction BBPSOCO01 takes a very long time
Note 858153 - Short dump could occur after implementing note 851605
Note 851605 - PO references updated incorrectly in the back-end
Note 954435 - Short dumps during creation of purchase order
Note 1045347 - "Error in system;" when using Requirements link in BBPSOCO02
Note 904550 - Obsolete vendor in document preview of the sourcing cockpit</u>
Hope this will help.
Regards
- Atul

Similar Messages

  • "Document not found "  Error message

    Hi Experts:
    In CRM 4.0 - WinClient, we are getting error message CRM_ORDER000 "Document not found".
    The error occurs when the agent creates two sales orders for the same client. She does not save the first order with Saving bottom (F ), but presses directly the quick link to create a new sales order.
    A pop-upp apears with the question: Do you want to save transaction Telesales? The agent confirms this. Later she is not able to save the second order because of the error message  CRM_ORDER000 "Document not found".
    We have found note 856954 but we have already the relevant support package.
    Any idea what this could be?
    Best regards,
    Cristina

    Hello,
    have you find the problem's cause ?
    I have the same problem ....
    Thank you.

  • File not found error when tried to open Document ID settings page

    Hi
    when i open sitesettings>site collection administratin >Document
    ID settings
    it shows
    file not found error
    adil

    Hi,
    first we need to figure out the error. change the web.config so that you can see the error on browser
    1) Obtain the complete call stack instead of the default error page:
    <SafeMode MaxControls="200" CallStack="false"/>
    to
    <SChangeafeMode MaxControls="200" CallStack="true"/>
    2) CustomeErrors mode value (in the system.web section) is set to Off:
    <customErrors mode="On">
    to
    <customErrors mode="Off">
    Change these value in "c:\inetpub\wssroot"  CA dirctory web.config and
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\web.config .
    now again try to do the action. you will get the error on screen.
    Whenever you see a reply and if you think is helpful,Vote As Helpful! And whenever you see a reply being an answer to the question of the thread, click Mark As Answer

  • Error: Document not found. (WWC-46000) while updating a form whit blob items

    Hi all,
    I have to manage a table-based form. The table has a BLOB field that allows NULL.
    The blob field of the form is hidden.
    When I try to INSERT all works well but when I attempt to UPDATE I get "Error: Document not found. (WWC-46000)".
    Have you some suggestions ?
    Thanks,
    Antonino
    p.s. Oracle Portal 3.0.7.6.2 / NT

    I have the same problem. I have one form to insert file (works fine), and another form to update that record, but not the file. The fields of the file (blob and mime type) are not on the form at all, and getting the message WWC-46000.

  • "Error: Document not found (WWC-46000)" with a form based on a table with blob item

    Hi all,
    I have to manage a table-based form. One of the fields of the table is BLOB and the corrisponding field of the form is HIDDEN.
    When I push the INSERT button all works well but when I try to UPDATE I get "Error: Document not found. (WWC-46000)".
    Have you some suggestions ?
    Thanks,
    Antonino
    p.s. Oracle Portal 3.0.7.6.2 / NT
    null

    Sorry, I think I did not explain well my problem.
    Imagine this simple table:
    key number;
    description varchar2(50);
    image blob;
    I need to make a form that contains the corresponding "key" field and the "description" field but not the "image" one. I don't want to allow the end user to upload images!
    When I insert a row the form works well and in the "image" field of the table an empty blob or null (now I don't remember) is stored: that's ok.
    Now imagine I want to change the value of the "description" field. I submit a query for the right key, I type a new value for the description and finally I push UPDATE button but....an error occours.
    I think this error is related with the Blob item of the table but I'm not sure.
    Thanks again,
    Antonino
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Dmitry Nonkin([email protected]):
    Antonino,
    If I understood the problem correctly:
    The form's item type for BLOB column used to upload content cannot be hidden, that's why we have a special item type FileUpload(binary).
    Thanks,
    Dmitry<HR></BLOCKQUOTE>
    null

  • External Table error: KUP-04043: table column not found in external source

    I am trying to get the syntaxc correct for an external table.
    I keep getting this error:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04043: table column not found in external source: SITE
    29913. 00000 - "error in executing %s callout"
    *Cause:    The execution of the specified callout caused an error.
    *Action:   Examine the error messages take appropriate action.
    Data looks like: (some of one of many files, where the character field widths are variable)
    ZZ,ANYOLDDATA,77777,25002000,201103,12,555.555,11.222
    ZZ,ANYOLDDATA,77777,25002300,201103,34,602.162,8.777
    ZZ,ANYOLDDATA,77777,25002400,201103,12,319.127,9.666
    ZZ,OTHERDATA,77121,55069600,201103,34,25.544,1.332
    ZZ,OTHERDATAS,77122,55069600,201103,22, 1.011,0.293
    External table def I have:
    CREATE TABLE MY_INPUT (
    FIRST_CODE VARCHAR2(10),
    SECOND_CODE VARCHAR2(20),
    MY_NUMBER VARCHAR2(20),
    THIRD_CODE VARCHAR2(20),
    YEARMO VARCHAR2(6),
    N NUMBER,
    MEAN NUMBER,
    SD NUMBER
    ORGANIZATION EXTERNAL (
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY INPUT_DIR
    ACCESS PARAMETERS (
    RECORDS DELIMITED BY newline
    BADFILE INPUT_LOGDIR:'bad.bad'
    LOGFILE INPUT_LOGDIR:'log.log'
    DISCARDFILE INPUT_LOGDIR:'discards.log'
    fields terminated by ',' LRTRIM
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    ( THIRD_CODE,N,MEAN,SD) )
    LOCATION ( 'myfile.rpt')
    NOPARALLEL
    REJECT LIMIT UNLIMITED;
    I have the directories INPUT_DIR and INPUT_LOGDIR defined, and read/write access granted to the user who creates the table and tried to query from it.
    I have tried various combinations of VARCHAR2 lengths and NUMBER vs VARCHAR2 for some of the numeric fields.
    I am not getting any Bad, Log or Discard files.
    I can do a GET from the SQL prompt, and see the data:
    SQL> GET 'C:\temp\input_dir'myfile.rpt'
    and I see the data.
    Windows 7
    Oracle 11.2
    I am not positive of the newline record delimiter - these files are generated by an automated system. Probably generated on a UNIX machine.
    Any suggestions on what to try would be helpful.
    KUP-04043 error message says to check the syntax .. .I am running out of thigns to check.
    Thank you - Karen

    And the get ( I created the sanitized file, so we have a real working, failing, santiized example):
    SQL> get c:\Inputfiles\myfile.rpt
    1 ZZ,ANYOLDDATA,77777,25002000,201103,12,555.555,11.222
    2 ZZ,ANYOLDDATA,77777,25002300,201103,34,602.162,8.777
    3 ZZ,ANYOLDDATA,77777,25002400,201103,12,319.127,9.666
    4 ZZ,OTHERDATA,77121,55069600,201103,34,25.544,1.332
    5* ZZ,OTHERDATAS,77122,55069600,201103,22, 1.011,0.293
    So the full series is:
    CREATE DIRECTORY INPUT_DIR AS 'C:\InputFiles';
    -- grant READ and WRITE
    GRANT READ ON DIRECTORY INPUT_DIR TO ILQC;
    GRANT WRITE ON DIRECTORY INPUT_DIR TO ILQC;
    -- As SYS, create the bad/log/discard directory:
    CREATE DIRECTORY LOGDIR AS 'C:\InputFiles\Logs';
    -- grant READ and WRITE
    GRANT READ ON DIRECTORY LOGDIR TO ILQC;
    GRANT WRITE ON DIRECTORY LOGDIR TO ILQC;
    CREATE TABLE MY_INPUT (
    FIRST_CODE VARCHAR2(10),
    SECOND_CODE VARCHAR2(20),
    MY_NUMBER VARCHAR2(20),
    THIRD_CODE VARCHAR2(20),
    YEARMO VARCHAR2(6),
    N NUMBER,
    MEAN NUMBER,
    SD NUMBER
    ORGANIZATION EXTERNAL (
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY INPUT_DIR
    ACCESS PARAMETERS (
    RECORDS DELIMITED BY newline
    BADFILE INPUT_LOGDIR:'bad.bad'
    LOGFILE INPUT_LOGDIR:'log.log'
    DISCARDFILE INPUT_LOGDIR:'discards.log'
    fields terminated by ',' LRTRIM
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    ( THIRD_CODE,N,MEAN,SD) )
    LOCATION ( 'myfile.rpt')
    NOPARALLEL
    REJECT LIMIT UNLIMITED;
    SELECT * FROM my_input;
    and GET is as above.

  • Appraisal Document Error "Document not found"

    Hi All,
    I have created iVIew MSS Appraisal Document with following details
    Technical Name of iView   :   com.sap.pct.erp.mss.hap_document
    Technical Name of Application :   HAP_MAIN_DOCUMENT with application parameter Mode=D
    Runtime Technology   :  ABAP/Web Dynpro
    Help URL :  [http://help.sap.com/erp2005_ehp_04/helpdata/en/6f/c2cfcd65164677ba4179718188f75e/frameset.htm]
    While accessing "Appraisal Doucment" from Portal getting "Docuemnt Not found" error.
    If I will click on Adapt Configuration button in the view getting  "Access via 'NULL' object reference not possible" error.
    Thanks in Advance,
    Risha

    Hello Risha,
    If you've applied the note 1416756 , you probably already have the ESS and MSS Business Package 1.41.
    First off, have you got the standard iViews to work from the standard ESS portal role before creating you own iViews?
    On your Portal Content Admin tab, navigate to Content Provided by SAP->End User Content->Employee Self-Service->ERP 6.0 EHP4->Pages->Career and Job
    You will see 2 pages called Appraisal Document and other two called Appraisal Documents (WD_UI) and Appraisal documents (Predefined Process). Since you are trying to use hap_main_document, I assume you are trying to get the Flexible Template iViews working.
    The Pages you will want to reuse/copy are Appraisal Documents (WD_UI) and Appraisal Document with the PCD ID ending with documents_ee.'Appraisal Documents (WD_UI)' is your starting point and 'Appraisal Document' is your target page on clicking on an individual document. If you check the properties of the iViews included in these pages, the ECC applications used will make more sense. (Notice the OBN within the WD_UI page under the page properties. The OBN operation used should show up here If you want to add your own, navigate to Portal Content-> Business Objects->ERP->HR . Locate the operation you want to use and add it to this perspective in your custom page) .
    So create some docs using 'phap_prepare' . Launch the Appraisal Documents (WD_UI) page and click on the doc you've created. The target Page will be launched . What you have been trying to do all along (I think) is launch the target page independently without any inputs.
    Good luck
    Pooja

  • Private Key Not Found Error in Ldaps

    Hi,
    I am facing "Private Key Not Found" Error in ldaps. The key and the SSL certificate is stored under the same location. The certificate is self signed certificate and in .pem format. When I am trying to install the certifcate through SUN ONE Console it throws the following error
    "Either this certificate is for another server, or this certificate was not requested using this server".
    can any one help me in this regard.
    Regards
    Senthil
    Edited by: senlog80 on Dec 30, 2008 3:18 AM

    Or even better, check the note <a href="https://websmp110.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=924320&_NLANG=E">924320</a>.
    <b>Symptom</b>:
    When you execute a query with virtual characteristics or key figures, the system issues the following error message:
    Object FIELD I_S_DATA-<key figure> not found
    <b>Other terms</b>
    RSR00002, RSR_OLAP_BADI
    <b>Reason and Prerequisites</b>
    This problem is caused by a program error.
    <b>Solution</b>
    If the virtual characteristics or key figures are implemented using the enhancement RSR00002 (CMOD), implement the corrections.
    If the virtual characteristics or key figures were created directly as implementations of the RSR_OLAP_BADI BAdI, compare the source code of the INITIALIZE method with the corresponding source code example. During the call of GET_FIELD_POSITIION_D, <L_S_SK>-VALUE_RETURNNM must be transferred instead of <L_S_SFK>-KYFNM.
    Import Support Package 08 for SAP NetWeaver 2004s BI (BI Patch 08 or SAPKW70008) into your BI system. The Support Package is available when Note 0872280"SAPBINews BI 7.0 Support Package 08", which describes this Support Package in more detail, is released for customers.
    In urgent cases, you can use the correction instructions.
    To provide advance information, the note mentioned above may be available before the Support Package is released. In this case, the short text of the note still contains the words "Preliminary version".
    Assign pts if helpful.

  • File not found error when opening securedoc.html

    We are having a sudden issue where recipients of our secure envelope emails will open a message from us with attachments and they will get a "File Not Found" error message.
    We are still using a Post X appliance, but no config changes were made whatsoever and this started happening since last weekend. (Oct. 9-11)
    I did reboot the Post X box and thought the problem was fixed w/ the reboot. I sent a secure message to myself and then opened it along with the attachment and all was good. I sent the second test and the problem was back; "File not found".
    I have noticed that when I get file not found the address bar in my browser is pointing to: https://res.cisco.com/websafe/eo/error?error=notfound
    The time after rebooting when it did work it pointed to file on my local computer hard drive:
    file:///C:/Documents%20and%20Settings/mymachine/Local%20Settings/Temporary%20Internet%20Files/PXTemp/-6pAQ4_Y5hJEmKdQhtG8lhNx0zo!/PX_L_1255377132267.html
    Any ideas what could have caused this sudden issue? How do we resolve? I have a call into support, but they have been researching it all day and our secure mail is down!

    used bridge, didn't work.
    tried right-click, double click..open in program.
    same error.
    files work in other adobe products.....
    only way to get a jpg in there is to "paste" it in.

  • File Not Found Error running JSP demos

    I'm not sure what is going on, but it appears that every time I try to run a jsp, the server looks in the document root where it errors out with a file not found error. I've seen others with this type of problem but I haven't seen a solution. Anyone have any ideas?
    Thanks.

    1: Double check the port number that your Tomcat Server is using. (TOMCAT_HOME/conf/server.xml).
    2: check you IP. This is not the 'localhost' IP (not sure if it is LAN or real IP). So it may change dynamically.
    3: Check for Firewalls. Also, since you are not using localhost, you will have to make sure you traverse all the firewalls built around your system. If you have a router (home), windows XP, or some other firewall, make sure the appropriate ports are opened. If you are behind a corporate firewall, or your ISP closes ports... your kinda out of luck until you find a way to cheat around them.
    2: Try just using just "/ValidateUser.jsp" as long as it is one the same domain as the Form. This will make it less likely to break, should your IP change.

  • File Not Found Error in Welcome Screen

    Help please!
    I have exactly the exact problem described below but do not have a folder with the same name as the volume created under the volume. Please can someone help - I've tried everything. This problem only happened when I upgraded to Dreaweaver CC!
    "On launching Dreamweaver on your Macintosh if your Welcome Screen is not loading and if you see a "File not found" error, please check if you have a folder with the same name as your volume created under the volume. For more info on this please go through the attached pdf document. Other dialogs/panels in dreamweaver that will be blank due to this issue are Jquery Swatches panel, Adobe Edge Webfonts tab in Manage Fonts dialog,W3c Error Info dialog, Externalise Javascript dialog and svn revert dialog. After following the changes mentioned in the attached document please check all the affected dialogs/panels to confirm everything is working as expected."
    Thanks,

    File Not Found Error in Welcome Screen
    07-Nov-2013 10:25
    Tags: #dreamweaver_cs6_update
    Help please!
    Live preview also not working.
    I have exactly the exact problem described below but do not have a folder with the same name as the volume created under the volume. Please can someone help - I've tried everything. This problem only happened when I upgraded to Dreaweaver CC!
    "On launching Dreamweaver on your Macintosh if your Welcome Screen is not loading and if you see a "File not found" error, please check if you have a folder with the same name as your volume created under the volume. For more info on this please go through the attached pdf document. Other dialogs/panels in dreamweaver that will be blank due to this issue are Jquery Swatches panel, Adobe Edge Webfonts tab in Manage Fonts dialog,W3c Error Info dialog, Externalise Javascript dialog and svn revert dialog. After following the changes mentioned in the attached document please check all the affected dialogs/panels to confirm everything is working as expected."
    Thanks,
    Martin Bond
    [personal information removed by moderator]

  • File not found error in SFTP channel

    Hi All,
    We are getting a "file not found error " while using a SFTP sender channel .
    Our Scenario :
    We are using SFTP as the source adapter .Presently we are using  two nodes for load balancing for all the sender channels.
    One of the node's of the  SFTP channel is picking the file , while the other node at the same time is throwing a "File not found error".
    The file is being picked and is placed at the target, but the channels are in error state as one of the nodes is in error state.
    Please let me know, if we did any mistake while configuring the adapter.
    Thanks,
    Yamunan

    Hi,
    Could you please check if you have provided right path in your sender communication channel...to pick the file from...
    Regards,
    Naveen.

  • Class not found error while accessing a Web Service

    Hi All,
    Im getting a Class not found error while doing method calls of a third party API.
    The required jars(axis.jar) are set in the weblogic 8.1 classpath and I tried putting those jars(axis.jar) in my application lib folder also, but dint help. Please help me with a solution.
    I'll paste the exception logs here by
    java.lang.NoClassDefFoundError: org/apache/axis/AxisFault
    at java.lang.ClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;(Unknown Source)
            at java.security.SecureClassLoader.defineClass(Ljava/lang/String;[BIILjava/security/CodeSource;)Ljava/lang/Class;(SecureClassLoader.java:123)
            at java.net.URLClassLoader.defineClass(Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;(URLClassLoader.java:251)
            at java.net.URLClassLoader.access$100(Ljava/net/URLClassLoader;Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;(URLClassLoader.java:55)
            at java.net.URLClassLoader$1.run()Ljava/lang/Object;(URLClassLoader.java:194)
            at jrockit.vm.AccessController.do_privileged_exc(Ljava/security/PrivilegedExceptionAction;Ljava/security/AccessControlContext;I)Ljava/lang/Object;(Unknown Source)
            at jrockit.vm.AccessController.doPrivileged(Ljava/security/PrivilegedExceptionAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;(Unknown Source)
    Thanks
    Noufal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    Verify the 3rd party class files names are correctly written in your program. Sometimes wrong case might be the reason.
    bye for now
    sat

  • "Page not found" error while trying to run a page

    Hello all,
    I tried to run a page in JDeveloper(9.0.6.6_606) and after the browser page pops up, it is displaying "HTTP 404 : Page not found" error.
    Please find the log below:
    C:\jdevbin\jdk\bin\javaw.exe -ojvm -classpath C:\jdevbin\j2ee\home\oc4j.jar -mx256m -Dhttp.proxyHost=proxy -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=10.200.152.236|localhost -Xverify:none com.evermind.server.OC4JServer -config C:\jdevhome\jdev\system9.0.3.1.1107\oc4j-config\server.xml
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    [waiting for the server to complete its initialization...]
    Embedded OC4J startup time: 7047 ms.
    Oracle9iAS (9.0.3.0.0) Containers for J2EE initialized
    Embedded OC4J startup time: 16 ms.
    Target URL -- http://10.200.152.236:8988/OA_HTML/runregion.jsp?page=%2Foracle%2Fapps%2Fpos%2Faccount%2Fwebui%2FNonPoInvCreatePG&akAppShortName=POS&akDbcFile=FIN1DEV2&akDevMode=1&akDiag=1&akPassword=pwd4dev2&akRespKey=ISUPPLIER_PORTAL_RESP&akUsername=dpsdx48&JRAD_XML_PATH=C%3A%5Cjdevhome%5Cjdev%5Cmyclasses%5CJRADXML%5C&JRADStartTime=1152606872484
    ApplicationServer: appName = bc4j
    ApplicationServer: appName = current-workspace-app
    ApplicationServer: appName = soap
    Error creating the ORB :
    Starting an OA Core session ...
    ICX DIAGNOSTIC: application_id = 177
    ICX DIAGNOSTIC: responsibility_id = 23075
    ICX DIAGNOSTIC: security_group_id = 0
    ICX DIAGNOSTIC: APPS Web agent = http://app-fin1dev2.albertsons.com:15160/pls/FIN1DEV2/
    FIN1DEV2=C384A6C2A84C8E63FAA51365BA91681A;path=/;domain=.albertsons.com
    ICX DIAGNOSTIC: mCookieHeader = FIN1DEV2=C384A6C2A84C8E63FAA51365BA91681A;path=/;domain=.albertsons.com
    ICX_DIAGNOSTIC: mEncryptedSessionID = C384A6C2A84C8E63FAA51365BA91681A
    ICX_DIAGNOSTIC: mSessionID = 687703439
    TIME: runregion.sessionBean.createSession [87296 ms]
    ICX_DIAGNOSTIC: mTransactionID = 78453
    ICX_DIAGNOSTIC: encryptedTransactionID = C974A13EBB894B23
    TIME: runregion.sessionBean.createTransaction [9672 ms]
    TIME: runregion.rest [0 ms]
    Is there anything you think I am missing in the configurations?
    Kindly help.

    I am also using OA Framework Jdeveloper....for ADF BC development.. Please find the log below:-
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    E:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.39.81\embedded-oc4j\config>
    E:\jdeveloper\jdevbin\jdk\bin\javaw.exe -client -classpath E:\jdeveloper\jdevbin\j2ee\home\oc4j.jar;E:\jdeveloper\jdevbin\jdev\lib\jdev-oc4j-embedded.jar
    -Xverify:none -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true
    -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config
    E:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.39.81\embedded-oc4j\config\server.xml
    [waiting for the server to complete its initialization...]
    Oct 18, 2007 11:56:47 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering transactions (commit 0) (rollback 0) (prepared 0).
    Oct 18, 2007 11:56:47 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering local transactions Queue[jms/Oc4jJmsExceptionQueue].
    WARNING: Code-source E:\jdeveloper\jdevbin\jdev\appslibrt\xml.jar (from <library> in
    /E:/jdeveloper/jdevhome/jdev/system/oracle.j2ee.10.1.3.39.81/embedded-oc4j/config/application.xml) has the same filename but is not identical to
    /E:/jdeveloper/jdevbin/lib/xml.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in E:\jdeveloper\jdevbin\j2ee\home\oc4j.jar). If it
    contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader default.root:0.0.0.
    WARNING: Code-source E:\jdeveloper\jdevbin\jdev\appslibrt\jazn.jar (from <library> in
    /E:/jdeveloper/jdevhome/jdev/system/oracle.j2ee.10.1.3.39.81/embedded-oc4j/config/application.xml) has the same filename but is not identical to
    /E:/jdeveloper/jdevbin/j2ee/home/jazn.jar (from <code-source> in META-INF/boot.xml in E:\jdeveloper\jdevbin\j2ee\home\oc4j.jar). If it contains different
    versions of the same classes, it will be masked as the latter is already visible in the search path of loader default.root:0.0.0.
    WARNING: Code-source E:\jdeveloper\jdevbin\jdev\appslibrt\jazncore.jar (from manifest of /E:/jdeveloper/jdevbin/jdev/appslibrt/jazn.jar) has the same
    filename but is not identical to /E:/jdeveloper/jdevbin/j2ee/home/jazncore.jar (from <code-source> in META-INF/boot.xml in
    E:\jdeveloper\jdevbin\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the
    search path of loader default.root:0.0.0.
    WARNING: Code-source E:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.39.81\embedded-oc4j\applications\datatags\webapp\WEB-INF\lib\uix2.jar (from
    WEB-INF/lib/ directory in E:\jdeveloper\jdevhome\jdev\system\oracle.j2ee.10.1.3.39.81\embedded-oc4j\applications\datatags\webapp\WEB-INF\lib) has the same
    filename but is not identical to /E:/jdeveloper/jdevbin/jdev/appslibrt/uix2.jar (from <library> in
    /E:/jdeveloper/jdevhome/jdev/system/oracle.j2ee.10.1.3.39.81/embedded-oc4j/config/application.xml). If it contains different versions of the same classes, it
    will be masked as the latter is already visible in the search path of loader datatags.web.webapp:0.0.0.
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 19594 ms.
    Target URL--- http://hydhtcl33997.ad.infosys.com:8988/SRTutorialADFBC-UserInterface-context-root/faces/app/SRList.jspx
    07/10/18 11:56:56 Oracle Containers for J2EE 10g (10.1.3.1.0) initialized

  • "Not Found" Error Message Problem

    Hi All!
    I have a really weird issue happening that I have not found a post for in the boards, although there are some similar ones. I have a video project that I had been working on about a month ago and finished except for credits (I had no problems while working on it then). I finally just got the list of names to use for the credits, so I went to open the project to add the credits and I got a "Not Found" and "Out Of Memory" Message. I have 134.6 Gigs open on the Raid I save everything to, so I know I'm not actually out of memory. So I changed the settings to 80% Application and 50% Stills b/c I have around 10 jpegs I was using for titles in it. That seemed to help at least get the sequence opened. I then had media offline messages for those titles, eventhough they are in the browser and defined as online, so I just reconnected each one individually anyway. That helped with that problem. However, I FCP won't render the transitions around the titles. I deleted the transitions and titles and tried to re-render the video clips that were involved in the transitions with the titles. It won't render those. When I try to view the clips in the viewer, I get the "Not Found" message again. I reconnected a couple of the video clips individually, but I still get the message when I try to view them in the Viewer. The clips in the sequence are there and play in the canvas but not in the viewer and I get the "Not Found" message. I have it set to view the image without wireframes, so that's not the problem. The source videos are read as online in the browser and are in the same place as they were when I originally started the project, so that's not the problem. I've tried different variations on the memory usage. I've tried copying and pasting to a new sequence but get the same problem. Does anyone know why all of a sudden I can't view any of my source video and the clips I used in my sequence in the viewer and why it would give me the "Not Found" error message?
    Some Specs that might be helpful:
    FCP HD 4.5
    Dual 2 GHz PowerPC G5
    2.5 Gigs DDR SDRAM
    Raid 1 with 134.6 Gigs Available Space
    SD NTSC DV Footage - MPG files I transfered originally from the client's portable hard drive
    A Few JPGs of Photoshop Titles
    I'm sorry this is insanely long, but I wanted to provide as much detail as I could.
    Emily

    They were originally on a PC. That quite possibly could be it.
    I just checked all the titles again and they are all RGB.
    Our Raid ocassionally has problems, so I'm thinking it might have something to do with that.
    I'm going to try on Monday to just re-import the videos I need into the project and see how that goes. If anyone has any suggestions, I'll take a look on Monday and see what happens.
    I was just hoping that someone might have had this problem and knew what to do.
    Thanks for your help!

Maybe you are looking for

  • Universal Installer not working

    Hi All, On my windows vista laptop I was having oracle 10g enterprise edition 10.2.3 it was working fine.Then I uninstalled using universal installer and try to install oracle 11g on the same laptop but some how it was not installed. now I am trying

  • "undefined" error or "indexof"

    I keep getting "undefined" is not an object or "indexof" object is null or undefined error. I sent some calendar invites from another account to mine. It went to my email not my calendar and when I try to click to accept the invite it gives me these

  • How my contact got deleted without I do ????????

    Hello guys !! Plz help me got in spot of doubt again !!! my contact (fb) got deleted from my skype today with out I do that, no one has password exept me and him , and he said that he didnt do and doubting me that I did in purpose please help any exp

  • Movies won't play after downloading 8.1

    I downloaded the iTunes 8.1 upgrade; a few days later, I redeemed my digital copy of a movie and it took forever to download and will not play--there is a gray screen instead of the movie. Help!

  • Dreamweaver CS3 & XAMPP on Vista

    Hi, I am getting the following error when trying to test a simple php file on a vista machine - XAMPP is installed correctly - I'm sure it is something simple. Parse error: syntax error, unexpected T_STRING in C:\xampp\htdocs\php\test.php on line 10