Display A Success Message From An Application Process

Apex 3.2
I have an on demand application process, which is resetting my application, except application items
BEGIN
   FOR c IN (SELECT page_id
               FROM apex_application_pages
              WHERE application_id = :app_id)
   LOOP
      apex_util.clear_page_cache (c.page_id);
   END LOOP;
:F270_REFRESH_INTERVAL := null;
END;
I have a list item that calls some javascript on page zero
<script type="text/javascript">
function resetapp(){
var answer=confirm("Do you really want to reset the application ?");
if(answer==true) {
var get = new htmldb_Get(null, null, 'APPLICATION_PROCESS=RESET_APPLICATION');
var gReturn = get.get();
redirect('f?p=&APP_ID.:1:&APP_SESSION.');
</script>
The user clicks on the item in the list. A confirmation appear and when they click ok,
then the on demand process runs and they are directed to page 1.
This is all working ok.
My problem is that I would like to display a message (a sucesss message) on page 1.
I have an unconditional branch on page 1 with the tick box checked for include process message.
I have tried the following in my application process, but none seem to work.
apex_application.g_print_success_message := 'Application Has Been Reset';
htp.prn('Application Has Been Reset');
HTP.P('Application Has Been Reset');
How can I do this ?
Gus

Can anyone help ?
Gus

Similar Messages

  • Exit WD after Displaying a Success Message

    Hello Mentors,
    Need your help as I am working on a Webdynpro Application,,
    Requirement is something like that on a particular view I have a button Say "Approve" .
    Now when clicks on Approve button , I want to display a  Success message to the user for his reference that he is done with his approval process & then it should default be exit from WD application.
    I tried creating a Window Exit plug & it is working fine but the problem as soon as I click on Approve button , I am exited from the WD application without displaying a message.
    I want to display success or error message & then want to exit from WD application.
    So please suggest how could I be able to meet your requirement.
    Thanks,
    Fox

    instead of calling direct message you can call popup with message in case of suucess full message regiter button in that button action you can call logic to exit application

  • Send short message from Java application on mobile phone to server; http

    Hello!
    My question is: can I send short message from Java application on mobile phone to server - with the use of SMS (WMA) or http connection?
    I found this topic http://forums.sun.com/thread.jspa?threadID=5405431 about: "how to send data from midlet to servlet using doPost method".
    There is also such topic http://forums.sun.com/thread.jspa?threadID=5408046&tstart=0 about: "CLDC and MIDP - sending SMS to server -> Wireless Messaging API (WMA)".
    Please, kindly help me.
    Code from the topic mentioned above, edited by me so that it can be read easily:
    //http://forums.sun.com/thread.jspa?threadID=5405431
    //CLDC and MIDP - Re: how to send data from midlet to servlet using doPost method
    I want to know how to pass the values .
    for examples : this is what i wrote for doGet
    String url = setting.getUrl().toString()"/testProServlet/servlet/UpdateCompanyProfile?userId="+loggedInUserId"&svComp="saveCompHex;
    userId and svComp has the data which is very long so i wanted to use doPost.
    Now i dont know how to do it.
    This is what i have done in doGet (midlet)
    public void saveCompanyProfile(String saveComp,int flag,String blankFieldNm)
         System.out.println("flag===" flag);
         if (flag==1)
              displayAlert("Company Profile Edit",blankFieldNm+" field cannot be blank.",AlertType.ERROR, edCmpRecForm, true);
         else
              String saveCompHex = helper.encodeHexString(saveComp);
              // String saveCompHex =saveComp;
              HttpConnection httpConn = null;
              serverSettings setting = new serverSettings();
              System.out.println("saveCompHex===" saveCompHex);
              String url = setting.getUrl().toString()"/testProServlet/servlet/UpdateCompanyProfile?userId="loggedInUserId"&svComp="saveCompHex;
              System.out.println("url of save company profile:: "+url);
              InputStream is = null;
              OutputStream os = null;
              try {
                   // Open an HTTP Connection object
                   httpConn = (HttpConnection) Connector.open(url);
                   System.out.println("urlMidlet1 save edited company data===::" url.length());
                   // Setup HTTP Request
                   httpConn.setRequestMethod(HttpConnection.POST);
                   httpConn.setRequestProperty("User-Agent","Profile/MIDP-1.0 Confirguration/CLDC-1.0");
                   System.out.println("urlMidlet2===" url);
                   int respCode = httpConn.getResponseCode();
                   System.out.println("respCode edit company profile=====" respCode);
                   if (respCode == httpConn.HTTP_OK)
                        StringBuffer sb = new StringBuffer();
                        os = httpConn.openOutputStream();
                        is = httpConn.openDataInputStream();
                        int chr;
                        while ((chr = is.read()) != -1)
                             sb.append((char) chr);
                        String sResultSvCompanyProfile= sb.toString();
                        System.out.println("+++++++++++++Company sResult+++++++++++++==="sResultSvCompanyProfile);
                        if (resultViewCompanyProfile.trim().equals(""))
                             System.out.println("++++++++++++++If++++++++++++++SaveCompanyProfile===");
                             displayAlert("Login Incorrect","Username and Password incorrect", AlertType.ERROR, mainForm, true);
                        else
                             System.out.println("++++++++++++++Else++++++++++++++SaveCompanyProfile===");
                             //companyProfile();
                             displayAlert1("Information","Company Profile edited successfully", AlertType.INFO, profileMenuScreen, true);
                   else
                        System.out.println("Error in opening HTTP Connection. Error#" respCode);
                        //the line below divided into two lines because it was too long
                        displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                        AlertType.ERROR, mainForm, false);
              catch(IOException e)
                   e.getMessage();
              finally {
                   if(is!= null)
                        try
                             is.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
                   if(os != null)
                        try
                             os.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
                   if(httpConn != null)
                        try
                             httpConn.close();
                        catch (IOException e)
                             // TODO Auto-generated catch block
                             e.printStackTrace();
                             displayAlert("Connection Failed","Cannot connect to server, please contact the Administrator.",
                             AlertType.ERROR, mainForm, false);
              } //end finally
         } //end else (?)
    } //end savecompany

    hi,
    SMS API(WMA) is an optional package. It is not a MIDP1.0 or MIDP2.0 api's.
    There are phones which has WMA api with MIDP1.0 support .... Nokia 3650
    Seimens has some phone with their own api's to send sms.Check out seimens site for more info
    BTW, What do you mean buy sending SMS to Server????
    If you want to send message to server you can do it with Http.
    HTH
    phani

  • How to send JMS Message from a BPM Process

    Hi All
    I have small query regarding sending JMS Message from a bpm process. Is it possible to send JMS message from one bpm process to another bpm process.
    I have a scenario in which I need to send a JMS message to a queue where another process is listening on that queue and as soon as the message is received on the queue the process instance is created.
    I know how to listen for the JMS message on the queue, but I don't how to send a JMS message from a process.
    Also Can I create process by sending the Notification to the process instead of a JMS message. But the process to be created is not a subprocess i.e. Can notification be send accross different processes.
    Any information or example in this regard would be helpful.
    Thanks in advance
    Edited by: user9945154 on Apr 22, 2009 7:46 PM

    Hi,
    Here's one approach to sending JMS messages from an Oracle BPM process. If you're doing this just to send a message into another process, do not take this approach. It's far easier and quicker if you do this using the OOTB "send notification" logic.
    These steps describe how to do this using WebLogic. The steps would be different if you're using another ap server / JMS provider.
    1. Guessing you've already done this, but first expose the two required WebLogic jar files for JMS messaging as Java components in the External Resources. The two files for WebLogic are weblogic.jar and wljmsclient.jar” (located in the < WebLogic home directory > /weblogic/server/lib” directory).
    AquaLogic BPM JMS Queue Listener for WebLogic 8.1
    2. You've probably already done this, but add an External Resource to represent the J2EE container:
    • Name: “weblogicJ2EE” - this is important and will be used in the next step
    • Supported Type: “GENERIC_J2EE”
    • Initial Context Factory: “weblogic.jndi.WLInitialContextFactory”
    • URL: “t3://localhost:7001”
    • Principal: and Credentials: whatever userid and password you defined to access theWebLogic administrative console.
    3. Create the External Resource that represents the send queue configuration. In this example, I'm calling it “WebLogic Send Queue”. This is important - remember what you named it because you will use this name in the logic that sends the JMS message. This new External Resource is configured as:
    • J2EE: “weblogicJ2EE” (same name as the second External Resource you created)
    • Destination Type: “QUEUE”
    • Lookup Name: “weblogic.examples.jms.exampleQueue”
    • Connection Factory Lookup Name: “weblogic.examples.jms.QueueConnectionFactory”
    4. Here's the logic to send a Message to the Queue
    <pre class="jive-pre"><p />msg as String = "Hello World"
    jmsMsg as Fuego.Msg.JmsMessage
    msg = "<?xml version=\"1.0\"?><Msg>" + msg + "</Msg></xml>"
    jmsMsg = JmsMessage(type : JmsMessageType.TEXT)
    jmsMsg.textValue = msg
    sendMessage DynamicJMS
    using configuration = "WebLogic Send Queue",
    message = jmsMsg</pre>
    Note that the “sendMessage” method uses the configuration parameter “WebLogic Send Queue”. You previously created a JMS messaging service External Resource with this name in the third step.
    Again, please don't go this route if you're just using it to send notifications between processes,
    Dan

  • JMS message from one application to the another appl in the same container?

    I have a question.
    Can I send JMS message from one application to the another application in the same container?
    If yes ...can you provide me info.
    I want to know in regards of EJB2.0 and EJB3.0.
    Thanks,
    Rahul

    So the receiver application is a Message Driven Bean, right?
    In your container, do you have a mean to ensure that it is correctly configured to listen the desired destination? Like an administrative console that would show the destinations, the number of pending messages, the number of active consummers...?
    btw what is the destination type? A queue or a topic?

  • Redirect to another page and set the error or success message from process

    I have a process that runs when a page is submitted. In the process I am catching an exception and if an exception occurs I want to redirect to a different page and display the error message of the exception. How can this be done?
    Below is my code. The redirect works but I want to set an error message to display on page 765 which is a different page to the one with this process on.
    begin
        -- some code here
    exception when others then
        owa_util.redirect_url('f?p=&APP_ID.:765:&SESSION.::NO:::');
    end;

    >
    Please update your forum profile with a real handle instead of "973239".
    I have a process that runs when a page is submitted. In the process I am catching an exception and if an exception occurs I want to redirect to a different page and display the error message of the exception. How can this be done?
    Below is my code. The redirect works but I want to set an error message to display on page 765 which is a different page to the one with this process on.
    begin
    -- some code here
    exception when others then
    owa_util.redirect_url('f?p=&APP_ID.:765:&SESSION.::NO:::');
    end;
    Use the <tt>f</tt> function's <tt>notification_msg</tt> parameter to pass the error message in the URL:
      owa_util.redirect_url('f?p=&APP_ID.:765:&SESSION.::NO:::&notification_msg=' || apex_util.url_encode(l_error_msg)); 
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)

  • Display an Alert message from PL/SQL block in APEX

    Hi,
    we are getting an oracle exception while inserting a new row. As it is having the unique constaint on a coulumn.
    Now the problem iis we need to Display an "Alert message" based on the input field validation. That java script code for alert has to be embeded nside a PL/SQL block in Oracle APEX Application.
    we tried doing this with below code:
    Begin
    INSERT INTO <<table name>>(ID,NAME) VALUES (s1,:TXT_s2);
    exception when others then
    htp.p('<script language="javascript">');
    htp.p('alert("Exception");');
    htp.p('</script>');
    end;
    If anybody knows .... please reply.
    Thanks,
    Subarna

    If your end goal is showing a pretty error message instead of the message that the tables unique constraint raises try the following. This logic will show a nice message and not try to insert non-unique data.
    (1) Create a validation of type "Function Returning Error Text".
    (2) Place similar code like the following in your validation. Notice that if the unique name does not exist the no_data_found returns null allowing the validation to pass.
    DECLARE
      v_error varchar2(100);
    BEGIN
      SELECT 'A person by this name already exists.'
      INTO v_error
      FROM your_table
      WHERE your_name = :P1_YOUR_NAME;
      RETURN v_error;
    EXCEPTION
      WHEN no_data_found THEN
        RETURN NULL;
    END;

  • Alert/Warning messages from PL/SQL process

    Hi all,
    I have a PL/SQL process that I execute from javascript : doSubmit(MY_PROCESS). I want to output an alert box if some errors occurs in the process, for instance : alert('message'). Does anyone know how to do that ?
    Best regards,
    Othman.

    Thanks Andy for the reply.
    My process executes "after submit", so I cannot call directly the javascript as one mentioned. The call to "html_Get" seems to be quite complicated for a simple alert message which is not really a Application process shared component.
    So I'll go for a solution where users won't see error messages ...
    Best regards,
    Othman.

  • Not able to display javascript alert message from within a pl/sql block

    Hello,
    Can anyone please help me out with this issue. I wanted to display an javascript alert message from within a pl/sql block for an update button. Below is sample code which i am using. P1_ITEM is my hidden item on the report.
    begin
    if :P1_ITEM IS NOT NULL then
    HTP.p ('<script type="text/javascript">');
    HTP.p ('alert(''Please complete the item which is already assigned to you!'');');
    HTP.p ('</script>');
    end if;
    end;
    and I have made this code to be executed conditionally when request = Expression1
    Expression1: SUBMIT
    The thing is I am not able to display an alert message when the update button is clicked.
    Can anyone please help me with this one.
    Thanks,
    Orton

    varad but I also have an update statement within that block for the update button something like this i want to achieve.
    begin
    if :P1_ITEM IS NULL THEN
    update sample_tbl
    set col1 =:APP_USER,
    col2 = 'Y'
    where pk_col = ---;
    commit;
    HTP.p ('<script type="text/javascript">');
    HTP.p ('alert(''Successfully assigned an item!'');');
    HTP.p ('</script>');
    end if;
    if :P1_ITEM IS NOT NULL then
    HTP.p ('<script type="text/javascript">');
    HTP.p ('alert(''Please complete the item which is already assigned to you!'');');
    HTP.p ('</script>');
    end if;
    end;
    thanks,
    Orton

  • How to display a popup message in query (through process chain)

    Hi Gurus,
    I need your help.
    I have an input query that triggers an event (through a button) and runs a process chain.
    I would like to show a popup message to inform the user when the process chain is over.
    Using function modules I've been able to show popup messages in the workbench, but I want to display this message directly in Bex Analyzer 7.0.
    Thanks
    Gabbo

    Hi,
    I'm also looking for a solution to display a custom message in the Bex Analyser at logon.
    Using function module in the logon user-exit works but only when loggin to the workbench.
    I don't want to use SM02 (which works in both cases) because I need to display a variable message depending on the user.
    If someone has an idea, I'll really appreciate.
    Best regards and happy New Year to all of you.

  • ADF-BC/JSF How to display acustom error message from a backing bean

    Hi all
    Can anybody provide an example of how to manipulate the list of error messages from a JSF backing bean.
    In my code I use a different navigation case and this directs the user to the page displaying the error message but I am sure that there must be a more elegant way.
    Thanks in advance
    Thanassis

    Thanks Kris
    I think you 've put me on the right track here, it's just that in my case what I really want to do is prevent my users from editing records not belonging to their own group. This is done via a selectOne table component and then the backing bean code tests if the value #{row.UserGroup} matches the #{bindings.LoggedOnUserGroup.inputValue}. If the values are equal then the beans returns the navigation case to the edit page. Otherwise it returns the navigation case for the "cannot edit" page.
    So what I am thinking is to return null and somehow raise the right kind of exception in order to display the error in the af:messages tag.
    Thanassis

  • On starting up firefox i am getting an error message from javascript application telling me that my username is an invalid username/password combination.If i continue to get this error message,try entering my email address as my username.

    Hi,on starting firefox which i have used solely as my browser for years i am now getting an error message from java script application that shows my username followed by a message saying; 'username'-Invalid username/password combination.If you keep getting this error,try entering your email address as your username'. I then press the OK button within that error message box and it dissapears and everything seems ok although hover my cursor over the mail(envelope) icon and it says not connected.
    I only started having this problem since downloading firefox 4.It also does not tell me where this problem is occuring so i do not know where to log on with this information.I would be most grateful for any help with this matter.Many thanks.

    Take a look in the Error Console for details about that.
    Tools > Error Console <br />
    Right-click the message and use '''Copy''' to get that complete message.

  • Does APEX re-write output HTML from an application process

    I have a process which has the following line
    htp.prn('<input type="hidden" name="F05" value="' || l_submitted_previously || '"/>');this however is outputting the following html
    <input name="F05" value="N" type="hidden">as you can see the parameters in the tag are not in the order I specified and also the closing slash is omitted.
    Can anyone explain this?

    APEX 3.2.1.00.12
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    Unfortunately I doh't know the web server architecture
    Firefox v13
    Custom theme
    Custom templates
    Hidden item
    I don't think the last 4 items listed above will have a bearing on this because it's a dynamically produced item created by an application process. I have pasted the entire code for the process in case that helps.
    DECLARE
         l_year_passed number := wwv_flow.g_x01;
         l_expenditure_value number;
         l_submitted_previously varchar2(1) := 'N';
    BEGIN
         SELECT DECODE(COUNT(*),0,'N','Y')
         INTO l_submitted_previously
         FROM F_EXPENDITURE
         WHERE FINANCIAL_YEAR_KEY = l_year_passed;
        for rec in (SELECT *
                    FROM l_service_group
                    WHERE service_designated_year<=l_year_passed
                    AND service_designated_year>0
                    order by NON_SERVICE_GROUP_FLAG, SERVICE_GROUP_SHORT_NAME)
         loop
         BEGIN
              SELECT EXPENDITURE_VALUE
              INTO l_expenditure_value
              FROM F_EXPENDITURE
              WHERE FINANCIAL_YEAR_KEY = l_year_passed
              AND SERVICE_GROUP_KEY = rec.SERVICE_GROUP_KEY;
              EXCEPTION
              WHEN NO_DATA_FOUND THEN
              l_expenditure_value := NULL;
         END;
              htp.prn('<tr><td><label for="F01_' || rec.SERVICE_GROUP_KEY || '"><span class="t13RequiredLabel"><img src="/i/requiredicon_status2.gif" alt="">' || rec.SERVICE_GROUP_SHORT_NAME || '</span></label></td><td><input type="text" name="F01" id="F01_' || rec.SERVICE_GROUP_KEY || '" value="'||l_expenditure_value||'"/><input type="hidden" name="F02" id="F02_' || rec.SERVICE_GROUP_KEY || '" value="' || rec.SERVICE_GROUP_KEY || '"/></td></tr>');
         end loop;
         if l_year_passed = 0 then
              htp.p('<p>Please select a financial year</p>');
         end if;
         htp.prn('<input type="hidden" name="F05" value="' || l_submitted_previously || '"/>');
    END;

  • Programmatically resubmitting a message from backend applications

    The 11.1.1.7 documentation for B2B indicates that the Instance Message Java API can be used for resubmitting message from a back-end application, as quoted from the documentation below.
    Programmatically Accessing Instance Message Data
    Instance Message Java API is a Java API provided in Oracle B2B to retrieve runtime data that is exchanged between Trading Partners.
    Some Instance Message Java API use cases include:
    Resubmitting from a back-end application
    Checking the status for a particular order number
    Payload introspection by a back-end application
    Checking the remaining retries for the message
    Checking the wire message of the payload
    This seems to be very desirable feature provided to application developers. However, when I examined the API methods exposed by InstanceMessageUtil and InstanceMessage classes, I could not figure out how to achieve the "resubmitting" function using the API.
    The command line tool does have a utility for resubmitting messages. But exactly what class and API methods should we use to implement the use case "
    Resubmitting from a back-end application
    " cited above?
    LXZ

    thanks you very for the reply.
    But we want to integrate this resubmit capability of B2B with another system, so that we can use that tool to activate resubmit. The InstanceMessageUtil does not expose any API method for resubmitting a message. I guess one could think of manipulating the Java class exposed through the command tool to achieve this purpose as well.
    Do you or does anyone have any suggestion how we can programmatically use the command line tool Java class for resubmitting messages?
    regards LXZ.

  • Mail freezes when displaying or deleting messages from Linked In

    Recently when I open the Mail program the computer freezes up with the spinning pinwheel. It will freeze for a few minutes and then usually come back to life. I've noticed that if any email from Linked In is selected, or deleted, or opened then I am certain to get the freeze. Usually when I try to delete a Linked In email there will be an error message that the email could not be deleted after the Mac wakes up from the freeze. Any ideas?

    I cleared the Console log file. Launched Mail. Selected two emails that I expected to cause trouble (from Linked In). Deleted them. The spinning pinwheel came up. After a couple of minutes Mail started responding, but I didn't see anything happen in the log file. I selected another email and deleted it. The spinning pinwheel came up again. After a while I got an error message about deleting the first two files (unable to delete) and there was activity in the log file. Over the next few minutes I continued to get episodes of spinning pinwheel and period activity in the log file. Here is the file:
    2012-11-14 8:17:46.953 PM Mail[3163]: Using V2 Layout
    2012-11-14 8:17:47.472 PM com.apple.SecurityServer[15]: Session 100013 created
    2012-11-14 8:17:54.684 PM Mail[3163]: *** -[IADomainCache init]: IA domains cache is out of date.
    2012-11-14 8:18:01.429 PM SyncServer[3171]: [0x7fb3fbc0bf70] |DataManager|Warning| Client com.apple.Mail sync alert tool path /System/Library/Frameworks/Message.framework/Resources/MailSync does not exist.
    2012-11-14 8:18:10.446 PM com.apple.backupd[3104]: Copied 12869 files (318.9 MB) from volume Macintosh HD.
    2012-11-14 8:18:10.765 PM com.apple.backupd[3104]: Using file event preflight for Macintosh HD
    2012-11-14 8:18:11.006 PM com.apple.backupd[3104]: Will copy (4.1 MB) from Macintosh HD
    2012-11-14 8:18:11.011 PM com.apple.backupd[3104]: Found 103 files (4.1 MB) needing backup
    2012-11-14 8:18:11.012 PM com.apple.backupd[3104]: 681.7 MB required (including padding), 1.53 TB available
    2012-11-14 8:18:36.521 PM com.apple.backupd[3104]: Copied 1796 files (6.6 MB) from volume Macintosh HD.
    2012-11-14 8:18:37.594 PM com.apple.backupd[3104]: Created new backup: 2012-11-14-201836
    2012-11-14 8:18:39.359 PM com.apple.backupd[3104]: Starting post-backup thinning
    2012-11-14 8:18:53.475 PM com.apple.backupd[3104]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Rich’s MB Pro/2012-11-12-213636 (8.4 MB)
    2012-11-14 8:18:56.803 PM WindowServer[79]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    2012-11-14 8:19:00.079 PM com.apple.backupd[3104]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Rich’s MB Pro/2012-11-12-202754 (1.6 MB)
    2012-11-14 8:19:04.380 PM com.apple.backupd[3104]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Rich’s MB Pro/2012-11-12-162632 (860 KB)
    2012-11-14 8:19:06.536 PM com.apple.backupd[3104]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Rich’s MB Pro/2012-11-12-152625 (279 KB)
    2012-11-14 8:19:08.534 PM com.apple.backupd[3104]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Rich’s MB Pro/2012-11-12-142648 (352 KB)
    2012-11-14 8:19:08.534 PM com.apple.backupd[3104]: Post-back up thinning complete: 5 expired backups removed
    2012-11-14 8:20:20.000 PM kernel[0]: disk0s2: I/O error.
    2012-11-14 8:21:34.000 PM kernel[0]: disk0s2: I/O error.
    2012-11-14 8:22:49.000 PM kernel[0]: disk0s2: I/O error.
    2012-11-14 8:24:33.000 PM kernel[0]: disk0s2: I/O error.
    2012-11-14 8:24:33.815 PM Mail[3163]: reading from /Users/rich/Library/Mail/V2/POP-rjf@pop/INBOX.mbox/B5FF1B7D-D910-4E8B-8CE6-A7D8 DF24C34F/Data/8/3/Messages/38456.emlx: Input/output error
    2012-11-14 8:24:33.816 PM Mail[3163]: error processing data: Invalid argument
    2012-11-14 8:25:48.000 PM kernel[0]: disk0s2: I/O error.
    2012-11-14 8:25:48.025 PM Mail[3163]: reading from /Users/rich/Library/Mail/V2/POP-rjf@pop/INBOX.mbox/B5FF1B7D-D910-4E8B-8CE6-A7D8 DF24C34F/Data/8/3/Messages/38456.emlx: Input/output error
    2012-11-14 8:25:48.025 PM Mail[3163]: error processing data: Invalid argument
    2012-11-14 8:25:48.026 PM Mail[3163]: error importing message <LibraryMessage: 0x7fcb83297c30, library id: 38456 conversation 1764>, aborting
    2012-11-14 8:25:50.146 PM com.apple.backupd[3104]: Backup completed successfully.
    2012-11-14 8:25:52.588 PM com.apple.backupd[3104]: Ejected Time Machine disk image: /Volumes/Data/Rich’s MB Pro.sparsebundle
    2012-11-14 8:25:53.000 PM kernel[0]: AFP_VFS afpfs_unmount: /Volumes/Data, flags 0, pid 3194
    2012-11-14 8:25:53.000 PM kernel[0]: AFP_VFS afpfs_unmount : We are the last mnt/sbmnt using volume /Volumes/Data 0xffffff8081562008
    2012-11-14 8:25:53.000 PM kernel[0]: AFP_VFS afpfs_unmount : We are the last volume using socket /Volumes/Data 0xffffff8081562008
    2012-11-14 8:25:53.000 PM kernel[0]: AFP_VFS afpfs_unmount : afpfs_DoReconnect sent signal for unmount to proceed
    2012-11-14 8:25:53.208 PM com.apple.backupd[3104]: Ejected Time Machine network volume.
    2012-11-14 8:26:30.629 PM WindowServer[79]: CGXDisableUpdate: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    2012-11-14 8:26:44.630 PM WindowServer[79]: disable_update_likely_unbalanced: UI updates still disabled by application "Mail" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2012-11-14 8:27:35.000 PM kernel[0]: disk0s2: I/O error.
    2012-11-14 8:27:35.460 PM Mail[3163]: Failed to read file /Users/rich/Library/Mail/V2/POP-rjf@pop/INBOX.mbox/B5FF1B7D-D910-4E8B-8CE6-A7D8 DF24C34F/Data/8/3/Messages/38456.emlx
    2012-11-14 8:29:08.413 PM com.apple.usbmuxd[3093]: SCEDeviceSocketCallback 0x10022de40-usbmuxd/NULL remote peer closed connection for sce 0x10022de40.
    2012-11-14 8:29:19.000 PM kernel[0]: disk0s2: I/O error.
    2012-11-14 8:29:20.190 PM Mail[3163]: Failed to write an empty prelude to file /Users/rich/Library/Mail/V2/POP-rjf@pop/INBOX.mbox/B5FF1B7D-D910-4E8B-8CE6-A7D8 DF24C34F/Data/8/3/Messages/38456.emlx
    2012-11-14 8:29:20.256 PM usbmuxd[3093]: _send_message (thread 0x100581000): Could not send message size 483: Broken pipe.
    2012-11-14 8:29:20.286 PM WindowServer[79]: reenable_update_for_connection: UI updates were finally reenabled by application "Mail" after 170.66 seconds (server forcibly re-enabled them after 1.00 seconds)
    2012-11-14 8:29:20.355 PM usbmuxd[3093]: AMDeviceStartSession (thread 0x100581000): Could not start session: kAMDDeviceDisconnectedError
    2012-11-14 8:29:20.355 PM usbmuxd[3093]: _AMDevicePreflightWorker (thread 0x100581000): Pair worker could not pair with device 2: 0xe8000084
    2012-11-14 8:29:22.766 PM mdworker[3185]: Unable to talk to lsboxd
    2012-11-14 8:29:22.771 PM mdworker[3186]: Unable to talk to lsboxd
    2012-11-14 8:29:22.906 PM sandboxd[3207]: ([3185]) mdworker(3185) deny mach-lookup com.apple.ls.boxd
    2012-11-14 8:29:22.917 PM sandboxd[3207]: ([3186]) mdworker(3186) deny mach-lookup com.apple.ls.boxd
    2012-11-14 8:29:23.000 PM kernel[0]: Sandbox: sandboxd(3207) deny mach-lookup com.apple.coresymbolicationd
    2012-11-14 8:29:50.355 PM com.apple.usbmuxd[3093]: stopping.
    2012-11-14 8:29:50.374 PM com.apple.usbmuxd[3212]: usbmuxd-296.3 on Jul 25 2012 at 00:28:37, running 64 bit
    2012-11-14 8:30:34.012 PM mdworker[3215]: Unable to talk to lsboxd
    2012-11-14 8:30:34.016 PM mdworker[3216]: Unable to talk to lsboxd
    2012-11-14 8:30:34.156 PM sandboxd[3217]: ([3215]) mdworker(3215) deny mach-lookup com.apple.ls.boxd
    2012-11-14 8:30:34.172 PM sandboxd[3217]: ([3216]) mdworker(3216) deny mach-lookup com.apple.ls.boxd
    2012-11-14 8:30:34.000 PM kernel[0]: Sandbox: sandboxd(3217) deny mach-lookup com.apple.coresymbolicationd
    2012-11-14 8:31:35.011 PM mdworker[3221]: Unable to talk to lsboxd
    2012-11-14 8:31:35.017 PM mdworker[3222]: Unable to talk to lsboxd
    2012-11-14 8:31:35.228 PM sandboxd[3223]: ([3221]) mdworker(3221) deny mach-lookup com.apple.ls.boxd
    2012-11-14 8:31:35.246 PM sandboxd[3223]: ([3222]) mdworker(3222) deny mach-lookup com.apple.ls.boxd
    2012-11-14 8:31:35.000 PM kernel[0]: Sandbox: sandboxd(3223) deny mach-lookup com.apple.coresymbolicationd

Maybe you are looking for

  • How can I get the volume to work on my ipad after the iOS 7.02 update?

    The performance of my ipad plummeted after the iOS 7 and 7.0.2 updates. The apps crash and some do not work at all and worst of all, my volume does not work at all. Is there a way I can at least get the volume to work? I was planning on purchasing a

  • PLEASE HELP:  I deleted all my Kernels, and I get a "panic (cpu 0 caller...) during startup.

    Hello, I use the forum all the time to find solutions to problems, and my Mac was slow so I went to this discussion: "kernel_task high memory usage" and I thought I had to delete my kernel extensions based on what several users said worked for them. 

  • Payables workflow

    hi there I am working in Payables in EBS V12. my questions was - where can I get a hold of the seeded AP workflow called AP Open Interface Import workflow template? I need to put some customised validation in this so need to open the workflow in Orac

  • HP 8625, cannot see Print Preview or Select Pages

    On my new HP 8625, I cannot see the Print Preview feature nor can I select to print specific pages.  This used to work on my HP c309, so I'm thinking perhaps it's a printer driver issue.  I am specificially having this issue with Excel but it may be

  • SAP application penetration testing.

    Dear All, Does anyone have information on penetration testing of SAP application? I am looking for the following: ·         Tools ·         Methodology including any reference material phenoelit has some resources/vulns for SAP. http://www.phenoelit.