WHEN OTHERS not catching error

I have the following SQL script:
WHENEVER SQLERROR EXIT FAILURE
SET VERIFY OFF
DECLARE
error_notes VARCHAR2(500);
BEGIN
process_test('TX', '&1');
EXCEPTION
WHEN OTHERS THEN
log_error (
SQLCODE,
SUBSTR(SQLERRM, 1,150),
SUBSTR(SQLERRM,151,150),
error_notes);
COMMIT;
END;
EXIT;
This script is executed from a Unix command line SQLPLUS uid/pwd@SID @scriptname.sql. The catch is that I am trying to test my exception handling. To test the error I have intentionally renamed a table that the PL/SQL procedure 'process_test' is based on, so that it shows up as invalid. The failure is detected by the WHENEVER and the Unix status gets set to 1 so that the Unix end of the error trap operates fine. The problem is that there is nothing inserted into the error_log table. Is it that the WHENEVER clause at the top (there to propogate the error out to Unix) is causing the control to drop out of the block immediately after the error occurs so that my exception handler is not allowed to run? I need it in there to send the fail code out to Unix. The process in question is loading some tables with data from external tables, and after it loads a file it deletes it. I want to stop the deletion from occurring if the load didn't happen. The part is actually working, but it's not logging the error in the error table. Here's the error message, it if helps:
process_test('TX', '/home/datatest/trans005.dat');
ERROR at line 7:
ORA-06550: line 7, column 5:
PLS-00905: object OUTB.PROCESS_TEST is invalid
ORA-06550: line 7, column 5:
PL/SQL: Statement ignored
Shouldn't this get caught by the WHEN OTHERS and dealt with before it exits the block, or is the WHENEVER SQLERROR clause causing control to move out of the block before the exception handler runs?

Oh. Well, this SQL script executed a procedure that was invalid. Yes, it did show as invalid in PL/SQL Dev as soon as I changed the table name. I'm actually a big fan of packages and such. I was trying to think of a way to force an error in what is basically a simple system. There's not a lot of places for it to be broken. I can see now that I need to find a better place to break it. This way isn't allowing the PL/SQL exception handlers to be tested.
The script itself is to be executed by a CRON job in Unix to fire off the file extracts. It's driven from Unix because we need to loop through a bunch of Unix file names. It creates a symbolic link so we can use External Tables to do the data extracts from the flat files, then it deletes the source file and moves on to the next one. The error trap is to stop the deletion of the source file if anything went wrong, so the file is still there for the next pass to load it. (Theoretically, once any errors have been corrected...)

Similar Messages

  • Redirecting when page NOT FOUND error occurs

    Does anyone now a way to redirect the client to a certain page whenever he encounters 404 NOT FOUND errors?
    I do not want to use a custom response page, I just want to redirect to a URL. The reason is our clients are WAP clients, and they do not see a page with text/html MIME type.
    Or any other solution might be a custom response page with a MIME type with vnd.wap.wml. Is it possible?

    Yes, it's possible. The simplest way is probably to add an Error directive such as the following to obj.conf:<Object name=default>
    Error code="404" fn="set-variable" set-srvhdrs="Location: /notfound.wml" error="302" stop="true"
    </Object>

  • When Others not raised for Dynamic SQL occasionally

    Hi All,
    Please consider some part of my PL/SQL code below.
    FOR rec IN cur_job_steps
    LOOP
    update_job_step_status(p_sector,
    p_job_name,
    rec.step_name,
    'Running',
    NULL,
    SYSDATE,
    NULL
    -- Execute Job Step Function
    EXECUTE IMMEDIATE 'BEGIN ' || rec.step_function || '; END;';
    -- Set Job Step End Status
    update_job_step_status(p_sector,
    p_job_name,
    rec.step_name,
    'Successful',
    NULL,
    NULL,
    SYSDATE
    END LOOP;
    EXCEPTION
    WHEN OTHERS
    THEN
    ROLLBACK;
    -- Set Job Failed Status
    update_job_status(p_sector,
    p_job_name,
    'Failed',
    'Could Not Complete DB Job: ' || SQLERRM,
    NULL,
    SYSDATE
    -- Set Job Step Failed Status
    END;
    rec.step_function is a procedure without any "When Others" clause. When that exception occurs I am expecting the "When Others" clause of the calling procedure is not capturing it some times. Is there any limitation to this? Any info in this regards would be really useful.
    Thanks in advance.
    Best Regards
    Srikanth Tirandas

    Could not reproduce.
    SQL> ed
    Wrote file afiedt.buf
    1 create or replace procedure my_proc
    2 as
    3 v_num number;
    4 begin
    5 v_num := 1 / 0;
    6* end;
    SQL> /
    Procedure created.
    SQL> ed
    Wrote file afiedt.buf
    1 begin
    2 begin
    3 execute immediate 'begin my_proc; end;' ;
    4 end;
    5 exception
    6 when others then
    7 dbms_output.put_line(sqlerrm);
    8* end;
    SQL> /
    ORA-01476: divisor is equal to zero
    PL/SQL procedure successfully completed.
    Can you provide code for your function when it does not work ? It seems some "rec.step_function" are coded to handle exceptions and hence you don't get any in outer loop.

  • In call transaction not catching error regarding Currency?

    Hi All sap Gurus,
    I am uploading  data using BDC call transaction in the flat file if country is IN it has to accept only INR currency i.e. currency of that particular country but if I gave some different country with wrong currency even though it is accepting that currency. I want to trap that error. I tried a lot but helpless. I ask the help regarding this in SDN but i didn't get helpful answer.
    I DEFINE ONE VARIABLE AS CHARACTER ALSO.
    Thanks In advance.
    Pravin

    hi,
    in SAP you can post any country - any currency combination (most of the time). You have to code the logic on your own: Country and currency are stored in table T005. Load the data from T005 into an internal table and check with the values from the file. Logically don't post the entries, which don't match!
    hope this helps
    ec

  • I have an ipad 2, 16GB 3G WiFi, black screen, will not reset, restore or turn-on, keeps prompting error 1600 when trying to restore, but when other ipad 2 plugged in itunes works fine. Any idea's on how to resolve?

    I have an ipad 2, 16GB 3G WiFi, worked perfectly, but now black screen, will not reset, restore or turn-on, keeps prompting error 1600 when trying to restore from recovery mode, but when other ipad 2 plugged in itunes works fine. Any idea's on how to resolve?
    I have tried multiple laptops with both units, re-installed Itunes, same error message on one of the units but ok on the other. Thinking I have a defective Ipad 2, any ideas on what to do is greatly appreciated.

    Tried Google?  iPad error 1600

  • EJB adapter errors are not catched by the composite fault handler

    Hi,
    I got a serious problem in soa suite 11g ps3 that ejb adapter failures are not catched by the soa suite fault framework.
    for example when I do a persist of an entity on a EJB session bean and I dont provide all required fields I get a rollback error when the BPEL component is finished.
    Instance ID bpel:142089
    The transaction was rolled back. The work performed for bpel instance "142089" was rolled back, but the audit trail has been saved for this instance
    Error Code: 1400
    Call: INSERT INTO INFORMATIELEVERINGEN (ID, DATUM_BEWAREN_TOT, BEWAARTERMIJN_IN_DAGEN, GEBRUIKER, ADRES_WAARNAAR_VERSTUURD, OUTPUTPRODUCT_TYPE, INTERMEDIAIR_PRODUKT, INHOUD_VERSTREKKING, RIN_ID, DETAIL_3, DETAIL_1, DETAIL_2, KETEN_OBJECT_TYPE, ORG_ID, TIG_ID, DATUM_SAMENSTELLING, KETEN_OBJECT_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    bind => [314, null, null, null, test, null, null, null, null, null, null, null, null, 1, 1, 2011-09-27, 42]
    Query: InsertObjectQuery([email protected])
    This error contained an exception thrown by the message handler.
    Check the exception trace in the log (with logging level set to debug mode).
    ORABPEL-05002
    Message handle error.
    error while attempting to process the message "com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage"; the reported exception is: Error committing transaction:; nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.1.2.v20101206-r8635): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-01400: cannot insert NULL into ("VSG"."INFORMATIELEVERINGEN"."OUTPUTPRODUCT_TYPE")
    what I did is to set idemponent = false on the partnerlink but then the invoke fails instead of the bpel ( same error ) and still no compensate or catch in bpel.
    Added the fault policies to the composite and rethrowed the error to BPEL. Still no luck.
    But then replaced the EJB adapter with the db adapter which does the same insert as the EJB and I got a nice bpelx:bindingFault which I can catch and handle.
    thanks

    Here is the total error message
    [2011-09-29T19:33:28.316+02:00] [soa_server1] [ERROR] [] [oracle.soa.bpel.engine.dispatch] [tid: orabpel.invoke.pool-4.thread-3] [userId: <anonymous>] [ecid: 4af4f9da03d6b2c4:-1e444ff3:132b61dbaea:-8000-0000000000000312,0:1:100000005] [APP: soa-infra] failed to handle message[[
    java.sql.SQLIntegrityConstraintViolationException: ORA-01400: Kan geen NULL invoegen in ("HR"."INFORMATIELEVERINGEN"."OUTPUTPRODUCT_TYPE").
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
         at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:889)
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
         at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:540)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1079)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1466)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3752)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3887)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1508)
         at weblogic.jdbc.wrapper.PreparedStatement.executeUpdate(PreparedStatement.java:172)
         at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:788)
         at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeNoSelect(DatabaseAccessor.java:863)
         at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:583)
         at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:526)
         at org.eclipse.persistence.internal.sessions.AbstractSession.executeCall(AbstractSession.java:980)
         at org.eclipse.persistence.internal.sessions.IsolatedClientSession.executeCall(IsolatedClientSession.java:131)
         at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:206)
         at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:192)
         at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.insertObject(DatasourceCallQueryMechanism.java:341)
         at org.eclipse.persistence.internal.queries.StatementQueryMechanism.insertObject(StatementQueryMechanism.java:162)
         at org.eclipse.persistence.internal.queries.StatementQueryMechanism.insertObject(StatementQueryMechanism.java:177)
         at org.eclipse.persistence.internal.queries.DatabaseQueryMechanism.insertObjectForWrite(DatabaseQueryMechanism.java:465)
         at org.eclipse.persistence.queries.InsertObjectQuery.executeCommit(InsertObjectQuery.java:80)
         at org.eclipse.persistence.queries.InsertObjectQuery.executeCommitWithChangeSet(InsertObjectQuery.java:90)
         at org.eclipse.persistence.internal.queries.DatabaseQueryMechanism.executeWriteWithChangeSet(DatabaseQueryMechanism.java:290)
         at org.eclipse.persistence.queries.WriteObjectQuery.executeDatabaseQuery(WriteObjectQuery.java:58)
         at org.eclipse.persistence.queries.DatabaseQuery.execute(DatabaseQuery.java:740)
         at org.eclipse.persistence.queries.DatabaseQuery.executeInUnitOfWork(DatabaseQuery.java:643)
         at org.eclipse.persistence.queries.ObjectLevelModifyQuery.executeInUnitOfWorkObjectLevelModifyQuery(ObjectLevelModifyQuery.java:108)
         at org.eclipse.persistence.queries.ObjectLevelModifyQuery.executeInUnitOfWork(ObjectLevelModifyQuery.java:85)
         at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.internalExecuteQuery(UnitOfWorkImpl.java:2908)
         at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1291)
         at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1273)
         at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1233)
         at org.eclipse.persistence.internal.sessions.CommitManager.commitNewObjectsForClassWithChangeSet(CommitManager.java:224)
         at org.eclipse.persistence.internal.sessions.CommitManager.commitAllObjectsWithChangeSet(CommitManager.java:123)
         at org.eclipse.persistence.internal.sessions.AbstractSession.writeAllObjectsWithChangeSet(AbstractSession.java:3348)
         at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.commitToDatabase(UnitOfWorkImpl.java:1422)
         at org.eclipse.persistence.internal.sessions.RepeatableWriteUnitOfWork.commitToDatabase(RepeatableWriteUnitOfWork.java:610)
         at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.commitToDatabaseWithChangeSet(UnitOfWorkImpl.java:1527)
         at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.issueSQLbeforeCompletion(UnitOfWorkImpl.java:3181)
         at org.eclipse.persistence.internal.sessions.RepeatableWriteUnitOfWork.issueSQLbeforeCompletion(RepeatableWriteUnitOfWork.java:332)
         at org.eclipse.persistence.transaction.AbstractSynchronizationListener.beforeCompletion(AbstractSynchronizationListener.java:157)
         at org.eclipse.persistence.transaction.JTASynchronizationListener.beforeCompletion(JTASynchronizationListener.java:68)
         at weblogic.transaction.internal.ServerSCInfo.doBeforeCompletion(ServerSCInfo.java:1239)
         at weblogic.transaction.internal.ServerSCInfo.callBeforeCompletions(ServerSCInfo.java:1214)
         at weblogic.transaction.internal.ServerSCInfo.startPrePrepareAndChain(ServerSCInfo.java:116)
         at weblogic.transaction.internal.ServerTransactionImpl.localPrePrepareAndChain(ServerTransactionImpl.java:1316)
         at weblogic.transaction.internal.ServerTransactionImpl.globalPrePrepare(ServerTransactionImpl.java:2132)
         at weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTransactionImpl.java:272)
         at weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:239)
         at weblogic.ejb.container.internal.BaseLocalObject.postInvoke1(BaseLocalObject.java:622)
         at weblogic.ejb.container.internal.BaseLocalObject.__WL_postInvokeTxRetry(BaseLocalObject.java:455)
         at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:52)
         at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.handleInvoke(Unknown Source)
         at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(InvokeInstanceMessageHandler.java:35)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:140)
         at com.collaxa.cube.engine.dispatch.BaseDispatchTask.process(BaseDispatchTask.java:88)
         at com.collaxa.cube.engine.dispatch.BaseDispatchTask.run(BaseDispatchTask.java:64)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
         at java.lang.Thread.run(Thread.java:662)
    [2011-09-29T19:33:28.332+02:00] [soa_server1] [ERROR] [] [oracle.soa.bpel.engine.dispatch] [tid: orabpel.invoke.pool-4.thread-3] [userId: <anonymous>] [ecid: 4af4f9da03d6b2c4:-1e444ff3:132b61dbaea:-8000-0000000000000312,0:1:100000005] [APP: soa-infra] Failed to handle dispatch message ... exception ORABPEL-05002[[
    Message handle error.
    error while attempting to process the message "com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage"; the reported exception is: Error committing transaction:; nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.1.2.v20101206-r8635): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-01400: Kan geen NULL invoegen in ("HR"."INFORMATIELEVERINGEN"."OUTPUTPRODUCT_TYPE").
    Error Code: 1400
    Call: INSERT INTO INFORMATIELEVERINGEN (ID, DATUM_BEWAREN_TOT, BEWAARTERMIJN_IN_DAGEN, GEBRUIKER, ADRES_WAARNAAR_VERSTUURD, OUTPUTPRODUCT_TYPE, INTERMEDIAIR_PRODUKT, INHOUD_VERSTREKKING, RIN_ID, DETAIL_3, DETAIL_1, DETAIL_2, KETEN_OBJECT_TYPE, ORG_ID, TIG_ID, DATUM_SAMENSTELLING, KETEN_OBJECT_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
         bind => [7, null, null, null, test, null, null, null, null, null, null, null, null, 1, 1, 2011-09-29, 42]
    Query: InsertObjectQuery(nl.justid.verstrekkingen.model.entity.Informatielevering@2499c09)
    This error contained an exception thrown by the message handler.
    Check the exception trace in the log (with logging level set to debug mode).
    ORABPEL-05002
    Message handle error.
    error while attempting to process the message "com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage"; the reported exception is: Error committing transaction:; nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.1.2.v20101206-r8635): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-01400: Kan geen NULL invoegen in ("HR"."INFORMATIELEVERINGEN"."OUTPUTPRODUCT_TYPE").
    Error Code: 1400
    Call: INSERT INTO INFORMATIELEVERINGEN (ID, DATUM_BEWAREN_TOT, BEWAARTERMIJN_IN_DAGEN, GEBRUIKER, ADRES_WAARNAAR_VERSTUURD, OUTPUTPRODUCT_TYPE, INTERMEDIAIR_PRODUKT, INHOUD_VERSTREKKING, RIN_ID, DETAIL_3, DETAIL_1, DETAIL_2, KETEN_OBJECT_TYPE, ORG_ID, TIG_ID, DATUM_SAMENSTELLING, KETEN_OBJECT_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
         bind => [7, null, null, null, test, null, null, null, null, null, null, null, null, 1, 1, 2011-09-29, 42]
    Query: InsertObjectQuery(nl.justid.verstrekkingen.model.entity.Informatielevering@2499c09)
    This error contained an exception thrown by the message handler.
    Check the exception trace in the log (with logging level set to debug mode).
         at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:207)
         at com.collaxa.cube.engine.dispatch.BaseDispatchTask.process(BaseDispatchTask.java:88)
         at com.collaxa.cube.engine.dispatch.BaseDispatchTask.run(BaseDispatchTask.java:65)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:887)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:909)
         at java.lang.Thread.run(Thread.java:662)
    ]]

  • File not Found error when synching Ipod

    I have a fairly new Ipod and synced successfully for months, but now iTunes says it cant synch because of a "File not Found error" (no error number or other clues). I'm running the latest iTines and Ipod software, and I've reset USB drivers but still no luck. I cant reset the iPod itself becase I then got a "1418 error", which is why I then reset USB. I'm stuck, has anyone seen this before?
    The Ipod itself plays fine and Itunes recgnises it OK, albeit very slowly, even thought I'm using USB 2.
    One other piece of info; when this first happened, the sync must have first deleted the songs I no longer wanted, prior to unsuccesfully adding new ones. Those old songs show up on the iPod but are skipped when I try to play them.

    Its on the same thread as this one ("connecting iPod nano (second Generation ) to Windows"). Scroll through the authors, you will find it.

  • 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

  • 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 (-43) when trying to record

    Never had this problem in the past, and haven't used Logic in a few months, but every time i attempt to record, i get that message: File Not Found, Result code error -43
    I am using the MBox 2 Pro as my record in, and Logic 6.4.3
    Thanks for the help...

    Hi,
    I have a 'file not found' problem with Logic Express. A while back I transferred all my Logic files to DVD to make room on the hard drive. It took 4 discs, saved alphabetically by song title. Now, I nearly always get the 'file-not'found' error message when I try to work on something. Sometimes when I click 'search' it finds the file, sometimes it doesn't. I'm confident that I didn't delete the files.
    Wondering if 'search' would find the files if I transferred all the files from DVD to a single folder on an external drive. I don't use the 'search manually' option, because I'm not really sure what I'm looking for, or where to look. In the other room, perhaps? 'Computer challenged' is me. Any suggestions?
    DS

  • I tried updating to itunes 10.5 and now when i try to open itunes i get a message saying "Apple application support was not found" error 2 (windows error 2)

    Ok so I went to update my itunes 9 to itunes 10.5 and now I get and error message "Apple application support was not found" error 2 (windows error 2) when ever I try to run itunes and iv been trying to fix this for like a month and let me tell you iTunes for windows is **** and I really want Icloud for my iphone 4 and yes iv tried uninstalling everything by apple in the correct order and reinstalling them after restart atleast honestly 20 - 30 times but nothing worked so if anyone can please help me I have windows 7 and a hp intel pentium computer 

    Install 7-Zip (free), or a free trial of WinRAR, and use one of them to extract the contents of the iTunesSetup.exe or iTunesSetup64.exe installer file, then try installing AppleApplicationSupport.msi as a standalone component. Even if it won't install you may get a more useful error message as to why not.
    tt2

  • Firefox is very slow to respond when opening and nearly always stops responding altogether even refusing to react to Task Manager "End Program@ command. The "not responding@ error message also comes up during navigation on line.

    Firefox is very slow to respond when opening and nearly always stops responding altogether, even refusing to react to the Task Manager "End Program" command. The "not responding" error message also comes up during navigation on line. Several attempt have to be made to get on line. A loss of stability seems to be endemic at the moment.

    Try following the instructions here: [[Firefox hangs]]

  • Error when other people send me a meeting request

    Dear Microsoft,
    When other people send me a meeting request, they get the error you can see below (it says: "Your message can not be delivered to the following
    people or distribution lists"). The strange thing is that I receive as well the meeting request and I can accept it. However, it is confusing for the people who send me the request, so can you help me to fix te problem? 
    I use Outlook 2010, but I had also this problem with an older version. I have not had this problem always. The problem started when I authorized a colleague
    to look in my calendar (but, if I cancel the authorization it doesn't help, so I really don't understand what is going wrong!).
    I really hope you know a solution of this problem.
    Kind regards,
    Dineke Wolbink 
    The error (in dutch):
    Uw bericht kan niet worden bezorgd bij de volgende personen of distributielijsten:
    19d23aca-f069-4dfb-8f90-47ee2b07317f
    Het e-mailadres van de geadresseerde is niet gevonden in het e-mailsysteem van de geadresseerde. Microsoft Exchange probeert dit bericht niet opnieuw te verzenden. Controleer het e-mailadres van de geadresseerde en probeer dit bericht nog eens te versturen
    of geef de volgende diagnosetekst door aan uw systeembeheerder.
    Diagnostische gegevens voor beheerders:
    Bronserver: CPHUB-ZH01.kpneol.local
    IMCEAEX-_O=KPNEOL_OU=EXCHANGE+20ADMINISTRATIVE+20GROUP+20+28FYDIBOHF23SPDLT+29_CN=RECIPIENTS_CN=*** E-mailadres is om privacyredenen verwijderd ***
    #< #5.1.1 smtp;550 5.1.1 RESOLVER.ADR.ExRecipNotFound; not found> #SMTP#
    Oorspronkelijke berichtkoppen:
    Received: from CPMBS-ZH01.kpneol.local ([169.254.2.62]) by
     CPHUB-ZH01.kpneol.local ([10.94.81.134]) with mapi; Thu, 30 Jan 2014 10:13:10
     +0100
    Content-Type: application/ms-tnef; name="winmail.dat"
    Content-Transfer-Encoding: binary
    From: Dineke Wolbink <hier stond mijn e-mailadres>
    To: 19d23aca-f069-4dfb-8f90-47ee2b07317f
                <IMCEAEX-_O=KPNEOL_OU=EXCHANGE+20ADMINISTRATIVE+20GROUP+20+28FYDIBOHF23SPDLT+29_CN=RECIPIENTS_CN=*** E-mailadres is om privacyredenen verwijderd ***>
    Date: Thu, 30 Jan 2014 10:13:04 +0100
    Subject: hoi
    Thread-Topic: hoi
    Thread-Index: Ac8dm3/BkI5G2ujIRKKYyE6kqe5htgAAAFlQ
    Message-ID: <*** E-mailadres is om privacyredenen verwijderd ***>
    Accept-Language: nl-NL, en-US
    Content-Language: nl-NL
    X-MS-Has-Attach:
    X-MS-TNEF-Correlator: <*** E-mailadres is om privacyredenen verwijderd ***>
    acceptlanguage: nl-NL, en-US
    x-originalarrivaltime: 30 Jan 2014 09:13:04.0347 (UTC)
     FILETIME=[7B5702B0:01CF1D9B]
    kpn-deliveryagentmarker: 1
    x-rcptdomain: syntro.nl
    x-brand: 6aXqz76n4qX03qPpzQ==
    MIME-Version: 1.0

    Hi Dineke,
    You can contact your Exchange administrator to run the following command to check it:
    Get-Mailbox –Identity yourname | Select Name, HiddenFromAddressListsEnabled
    Or you can view your colleague’s Default Global Address List in OWA to check whether you are listed there or not.
    Please check whether there is any transport rule or Outlook rule setting in your mailbox. Also change a new computer and create a new Outlook profile to have a try.
    Best Regards,
    Winnie Liang
    TechNet Community Support

  • When I try to print from web page I get "printer not activated - error code 30", printer works on Internet Explorer

    When I try to print from web page I get a dialogue box "Printer not activated - error code 30" followed by a dialogue box "An unknown error occurred while printing". The printer works on websites when I use Internet Explorer. Also, if I copy the web page and paste it into a Word document, I can print a copy. This issue just started this week; I have not encountered this problem prior to this week. Please advise.

    What does that error message say?
    See this: http://kb.mozillazine.org/Problems_printing_web_pages

  • I had just put the finishing touches on my 36 minute documentatary when I got an error message that the external 1TB HD I was using to store the project had been ejected improperly (must have shaken a cord).  The result is that the project would not load

    I had just put the finishing touches on my 36 minute documentatary when I got an error message that the external 1TB HD I was using to store the project had been ejected improperly (must have shaken a cord).  The result is that the project would not load in the edit Projects window.  I can see the file in the finder window and it will launch iMovie but the file itself will not load in the projects window.
    I have contacted apple support and they tried to do a few things... to no available.
    With my limited knowledge of file structures I assume that the header file must be corrupt.
    Is there a 3rd party utility that can decompile and fix the file structure so it will load properly.  I've been working on this project since june and would hate to have to redo the whole thing again.

    I had just put the finishing touches on my 36 minute documentatary when I got an error message that the external 1TB HD I was using to store the project had been ejected improperly (must have shaken a cord).  The result is that the project would not load in the edit Projects window.  I can see the file in the finder window and it will launch iMovie but the file itself will not load in the projects window.
    I have contacted apple support and they tried to do a few things... to no available.
    With my limited knowledge of file structures I assume that the header file must be corrupt.
    Is there a 3rd party utility that can decompile and fix the file structure so it will load properly.  I've been working on this project since june and would hate to have to redo the whole thing again.

Maybe you are looking for

  • Reader will not open

    We have re-directed folders in our network and when we upgraded to Reader 9.3.3 I have had 3 people now recieving this error: Application popup: Acrobat Instance Window: AcroRd32.exe - Application Error : The instruction at "0x012e43eb" referenced me

  • How does Lion & FileVault work with Bootcamp

    Hi, I am just installing Lion on my computer. I was wondering if the FileVault will encrypt the Bootcamp stuff please? Thanks

  • Another user-modified table '' (NNM1) (ODBC -2039)  [Message 131-183]

    Hi All, I am trying to create a new numbering series in SAB B1 2007 B PL 14 and facing with this error: Another user-modified table '' (NNM1) (ODBC -2039)  [Message 131-183] I would really appreciate your advise since new numbering series is not gett

  • DOS command

    I want to use the system exec command. I already read one answer that is related to my problem but I´m not fully satisfied. My problem is that I want to use parameters in the command line like: D:\MyFolder>MyApplication file0.fff -i 111.222.333.444 -

  • Depreciation Error in AFAB : asset posting not completed

    Hi All Depreciation run was not finished for past 3 years before that one of the Scrapping Asset was posted without execute the depreciation run.  For that reason we are unable close the period in asset depreciation run by using transaction code AFAB