Email notification error...

Hi All,
I have created new procedure for email notification. When i execute the procedure email is triggered but in the email body it gives error message as mentioned below. Actually its not error message it outputs the code.
CREATE OR REPLACE Procedure PROC_STATUS_MAIL_TEST
IS
      l_ana_report  VARCHAR2(32767); --empty_clob; --clob :=
      l_header VARCHAR2(1000);
      l_footer VARCHAR2(200);
      cnxn UTL_SMTP.connection;
BEGIN
           l_ana_report := '<style type="text/css">
    <!--.style1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; color: #FF0000}-->
    <!--.sidebar1 { font-family: Arial, Helvetica, sans-serif; font-size: 10px}-->
    <!--.text { font-family: Arial, Helvetica, sans-serif; font-size: 12px}-->
    </style>
    <center><b><font face="Arial">Ana Run Summary Report '
                || TO_CHAR(SYSDATE, 'DD-MON-YYYY HH:MI AM') || '<br><br></font></b></center>'
                || ' <div align="center"><table width="95%" border="1" cellspacing="0" cellpadding="1" </div>'
                || '<span style="font-size: 10pt; font-family: Arial"> </span> '
                || '<tr bgcolor=b4b4b4><td align="center"> <font size="3"> <b>'
                || 'Ana</b></td><td align="center"><font size="3"> <b>'
                || 'Start Time</b></td><td align="center"><font size="3"> <b>'
                || 'End Time</b></td><td align="center"><font size="3"> <b>'
                || 'Run Duration (mins)</b></td><td align="center"><font size="3"> <b>'        
                || 'Status</b></font></td></tr> ' || UTL_TCP.CRLF;
                FOR curr_refresh IN (SELECT AN.ANA_ID,AN.NAME ANA_NAME,ARH.RUN_START_TIME START_TIME,ARH.RUN_END_TIME END_TIME,
                                     ROUND(((ARH.RUN_END_TIME-ARH.RUN_START_TIME)*24*60),2) RUN_TIME_SECS,ARH.JOB_STATUS STATUS
                                     FROM
                                     RUN_HISTORY ARH,ANA AN,
                                          (SELECT ANA_ID FROM ANA_SELECTED_DATA_TYPES
                                           WHERE DATA_TYPE_ID IN (SELECT DATA_TYPE_ID FROM DATA_TYPE_LU
                                           WHERE IND IN ('P','L'))) ADT
                                      WHERE
                                     ARH.ANA_ID=ADT.ANA_ID
                                     AND AN.ANA_ID=ARH.ANA_ID
                                     AND ARH.RUN_START_TIME>TO_DATE(SYSDATE-20)
                                     ORDER BY ARH.RUN_START_TIME DESC)  LOOP  
           l_ana_report  := l_ana_report ||
           '<tr><td align="center">'|| curr_refresh.ana_name                 
              || '</td><td align="center">' || curr_refresh.start_time || '</td><td align="center">'
              || curr_refresh.end_time || '</td><td align="center">'|| curr_refresh.RUN_TIME_SECS ||
              '</td><td align="center">'|| curr_refresh.STATUS ||
              '</td> </tr>' || UTL_TCP.CRLF;
               exit when length (l_ana_report) > 32500;  
      END LOOP;
       l_ana_report := l_ana_report || '</table><br><br>';
    --   l_body := UTL_TCP.CRLF ||
    --   UTL_TCP.CRLF || l_ana_report;
    --   l_footer := UTL_TCP.CRLF || '--' || K_BOUNDARY || '--' || UTL_TCP.CRLF;
     l_footer := UTL_TCP.CRLF ||
     '<b> Note: This is an auto generated email. Please do not reply to it. Contact the IT team for any further information.</b>'||  UTL_TCP.CRLF;
            FOR curr_email IN (SELECT global_name instance_name,
            REU.EMAIL_USER_LAST_NAME last_name,
            REU.EMAIL_USER_FIRST_NAME first_name,
            REU.EMAIL_USER_EMAIL_ID,
            '[email protected]' mail_from
                             FROM EMAIL_USER REU,EMAIL_GROUP REG,GLOBAL_NAME
                                         WHERE REU.EMAIL_GROUP_ID = REG.EMAIL_GROUP_ID
                                               AND REG.EMAIL_GROUP_NAME = 'Business'                                           
                              ) LOOP
            cnxn := UTL_SMTP.open_connection('smtprelay.aceins.com', 25);
            UTL_SMTP.helo(cnxn, 'smtprelay.aceins.com');
            UTL_SMTP.mail(cnxn, '[email protected]');
            UTL_SMTP.rcpt(cnxn, curr_email.EMAIL_USER_EMAIL_ID);
        l_header := 'MIME-Version: 1.0'||'
        To: ' || curr_email.last_name || ' <' || curr_email.EMAIL_USER_EMAIL_ID || '>
        From: ' || curr_email.mail_from || '
        Subject: Ana Run Status Report for ' || curr_email.instance_name || ' on ' || to_char(sysdate, 'DD-MON-YYYY') || '
        Reply-To: [email protected]
        Content-Type: text/html;' || UTL_TCP.CRLF || UTL_TCP.CRLF;
      -- l_email := UTL_TCP.CRLF || l_header || l_ana_report || l_footer;
            UTL_SMTP.data(cnxn, l_header || l_ana_report || l_footer);                   
            UTL_SMTP.quit(cnxn);
            DBMS_OUTPUT.put_line('mail sent to ' || curr_email.EMAIL_USER_EMAIL_ID);
      END LOOP;
END PROC_STATUS_MAIL_TEST;Email body:-
<style type="text/css">
<!--.style1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; color: #FF0000}-->
<!--.sidebar1 { font-family: Arial, Helvetica, sans-serif; font-size: 10px}-->
<!--.text { font-family: Arial, Helvetica, sans-serif; font-size: 12px}-->
</style>
<center><b><font face="Arial">Ana Run Summary Report 29-JUL-2011 01:22 PM<br><br></font></b></center> <div align="center"><table width="95%" border="1" cellspacing="0" cellpadding="1" </div><span style="font-size: 10pt; font-family: Arial"> </span> <tr bgcolor=b4b4b4><td align="center"> <font size="3"> <b>Analysis</b></td><td align="center"><font size="3"> <b>Start Time</b></td><td align="center"><font size="3"> <b>End Time</b></td><td align="center"><font size="3"> <b>Run Duration (mins)</b></td><td align="center"><font size="3"> <b>Status</b></font></td></tr> <tr><td align="center">PCSUM CE US</td><td align="center">28-JUL-11</td><td align="cente ...... and so on
Can anyone please guide me if anything wrong with syntax or code. I checked on google but couldnt get, still googling out.
Regards,
Sunny
Edited by: k_17 on Aug 1, 2011 2:41 PM

The below is mesage it displays in the body where as it should appear as html page. Three days back it had worked proper but off sudden it changed. The code is same.
<style type="text/css">
    <!--.style1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; color: #FF0000}-->
    <!--.sidebar1 { font-family: Arial, Helvetica, sans-serif; font-size: 10px}-->
    <!--.text { font-family: Arial, Helvetica, sans-serif; font-size: 12px}-->
    </style>
    <center><b><font face="Arial">Analysis Run Summary Report 29-JUL-2011 01:22 PM<br><br></font></b></center> <div align="center"><table width="95%" border="1" cellspacing="0" cellpadding="1" </div><span style="font-size: 10pt; font-family: Arial"> </span> <tr bgcolor=b4b4b4><td align="center"> <font size="3"> <b>Analysis</b></td><td align="center"><font size="3"> <b>Start Time</b></td><td align="center"><font size="3"> <b>End Time</b></td><td align="center"><font size="3"> <b>Run Duration (mins)</b></td><td align="center"><font size="3"> <b>Status</b></font></td></tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">28-JUL-11</td><td align="center">28-JUL-11</td><td align="center">11.62</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">28-JUL-11</td><td align="center">28-JUL-11</td><td align="center">11.62</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">28-JUL-11</td><td align="center">28-JUL-11</td><td align="center">11.62</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">9.1</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">9.1</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">9.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">Australia Ledger LG (EP,IL&ALAE,PL&ALAE)</td><td align="center">22-JUL-11</td><td align="center">22-JUL-11</td><td align="center">13.1</td><td align="center">Completed</td> </tr> <tr><td align="center">xAdhoc LM - Energy Sweden AY NoF LL</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">2.42</td><td align="center">Completed</td> </tr> <tr><td align="center">xAdhoc LM - Energy Sweden AY NoF LL</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">2.42</td><td align="center">Completed</td> </tr> <tr><td align="center">xAdhoc LM - Energy Sweden AY NoF LL</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">2.42</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">22.17</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">22.17</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">22.17</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">10.97</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">10.97</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">10.97</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">10.53</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">10.53</td><td align="center">Completed</td> </tr> <tr><td align="center">1PCSUMM1 CE LG PreCat US$-TEST</td><td align="center">19-JUL-11</td><td align="center">19-JUL-11</td><td align="center">10.53</td><td align="center">Completed</td> </tr> <tr><td align="center">xAdhoc LM - Energy Sweden AY NoF LL</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">.9</td><td align="center">Completed</td> </tr> <tr><td align="center">xAdhoc LM - Energy Sweden AY NoF LL</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">.9</td><td align="center">Completed</td> </tr> <tr><td align="center">xAdhoc LM - Energy Sweden AY NoF LL</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">.9</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">18.7</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">18.7</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">18.7</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">28.78</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">28.78</td><td align="center">Completed</td> </tr> <tr><td align="center">PCSUMM4 CE PreXL A&H Total US$ - Viewer</td><td align="center">12-JUL-11</td><td align="center">12-JUL-11</td><td align="center">28.78</td><td align="center">Completed</td> </tr> </table><br><br> <b> Note: This is an auto generated email. Please do not reply to it. Contact the IT team for any further information.</b>Regards,
Sunny

Similar Messages

  • Email Notification - ERROR: 530 5.7.1 Client was not authenticated

    Hi People!
    I am receiving the follows error when I run scheduled task. Also, I used Javamail and I have the same problem. The problem: MAIL FROM isn´t authenticating. How can I solve it?
    Other question: How can I configure Email Notification in debug?
    Thanks!
    API Code (Schedule task)
    this.dataProvider = getDataBase();
    tcEmailNotificationUtil emaildef = new tcEmailNotificationUtil(dataProvider);
    emaildef.setSubject("User: " + s2);
    emaildef.setFromAddress(fromaddr);
    emaildef.setBody("OIM has detected a modify in Active Directory. " );
    emaildef.sendEmail(toaddr);
    System Configuration->XL.MailServer=Email Server
    IT Resource 'Email server'
    Name Email Server
    Auth : true
    Server name : exchange server name
    User name : <domain name>\User name
    Password :: Password of that user
    ERROR
    ERROR,11 Jan 2011 18:18:00,375,[XELLERATE.REQUESTS],Class/Method: tcEmailNotificationUtil/sendEmail encounter some problems: 530 5.7.1 Client was not authenticated
    com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.1 Client was not authenticated
    at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1388)
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:959)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:583)
    at javax.mail.Transport.send0(Transport.java:169)
    at javax.mail.Transport.send(Transport.java:98)
    at com.thortech.xl.dataobj.util.tcEmailNotificationUtil.sendEmail(Unknown Source)
    at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.processUserChange(ActiveDirectoryReconTask.java:657)
    at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.processBatch(ActiveDirectoryReconTask.java:341)
    at com.thortech.xl.integration.ActiveDirectory.tcADUtilLDAPController.searchResultPageEnum(Unknown Source)
    at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.performReconciliation(ActiveDirectoryReconTask.java:248)
    at com.thortech.xl.schedule.tasks.ActiveDirectoryReconTask.execute(ActiveDirectoryReconTask.java:97)
    at com.thortech.xl.scheduler.tasks.SchedulerBaseTask.run(Unknown Source)
    at com.thortech.xl.scheduler.core.quartz.QuartzWrapper$TaskExecutionAction.run(Unknown Source)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.security.Security.runAs(Security.java:41)
    at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(Unknown Source)
    at com.thortech.xl.scheduler.core.quartz.QuartzWrapper.execute(Unknown Source)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:178)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:477)
    --------------------------------------------------------------------------------

    Thanks Justin,
    for all your help and support.
    there was some settings to be done in the exchange server. and today the system admin co-operated with me and did the changes in the exchange.
    now the messaging is working fine.
    Thanks,
    Rashed

  • Users unable to get email notifications on followed sites, or documents: System.IO.FileNotFoundException and Microsoft.SharePoint.SPSite.InitUserToken(SPRequest request) errors

    Hi Community
    I have an issue on a live SP2013 farm that is really causing me grief.  Although  I ( Farm Admin)  and my other users can follow items which are subsequently  confirmed in our respective News Feeds - 
    none of my users are are actually getting emails notifications . 
    Alerts ( did) work fine.
    I have written some PS to vew and set  the SPS-EmailOptin for each user
    $up[$upManagerAttribute].Value = $managerNTName
    # check if the email check boxes are unchecked '1' then if so check all
    write-host -fore white "User Profile for user"$NTName "Now has email opt in currently set to" $up[$upEmailOptin].Value
    if ($up[$upEmailOptin].Value -gt 0)
    $up[$upEmailOptin].Value = 0
    write-host -fore white "User Profile for user"$NTName "Now has email opt in all checked."
    Very few are unchecked. $up["SPS-PrivacyActivity"].Value = 4095  is set for all users as in
    the the privacy settings on the newsfeed are all checked
    For my currrent client I  set up a development intranet which had the seperate web apps for the main portal and mysites. Test users were able to follow documents, sites without any problems.  Before go live I was asked to accomodate a requirement
    where there is only one web application (don't ask!)  effectivley http://myintranet 
    so mysites sits under http://myintranet/mysites .   I  made the appropriate changes to my AutoSPInstaller scritpt and al appearedd l good : services , Service appplications, mysites are all started.  I am using
    the two app pool accounts  one for the portal and one for mysites.
    A quick look at the the releated threads on this forum indicated permssions could be DB permissions  related tho I  am not seeing anything in ULS to strongly point to this
    $webApp = Get-SPWebApplication http://myintranet
    $webApp.GrantAccessToProcessIdentity("mydomain\SP_ProfilesAppPool")
    - checked and SPAcess Data is given to the mysites app pool accout to the portal web app .
    I am seeing some odd errors in ULS
    Ignoring the space ' critical' warning which I have flagged up to Ops and  I doubt is my real problem.  The errors I see that are related are :
    System.IO.FileNotFoundException: The system cannot find the file specified. (Exception from HRESULT: 0x80070002), StackTrace:
    at Microsoft.SharePoint.SPWeb.GetList(String strUrl)
    at Microsoft.Office.Server.Microfeed.MBUtilities.GetPublishedFeedListPrivate(SPWeb web, String relativeUrl)
    at Microsoft.Office.Server.UserProfiles.FollowedItem.CreateFollowedSite(SPWeb site, FollowedItemData data)
    at Microsoft.Office.Server.UserProfiles.FollowedItem.Create(SPSite site, SPWeb existingWeb, Uri url, FollowedItemData data)
    at Microsoft.Office.Server.UserProfiles.FollowedItem.RecreateByReferencedItem(SPSite site, SPWeb web)
    at Microsoft.Office.Server.UserProfiles.FollowedContent.RefreshFollowedItem(FollowedItem item, SPS2SAppExecutionPolicy policy)
    at Microsoft.Office.Server.UserProfiles.FollowedContent.Follow(Uri url, FollowedItemData data)
    at Microsoft.Office.Server.UserProfiles.FollowedContentServerStub.InvokeMethod(Object target, String methodName, XmlNodeList xmlargs, ProxyContext proxyContext, Boolean& isVoid)
    at Microsoft.SharePoint.Client.ServerStub.InvokeMethodWithMonitoredScope(Object target, String methodName, XmlNodeList args, ProxyContext proxyContext, Boolean& isVoid)
    at Microsoft.SharePoint.Client.ClientMethodsProcessor.InvokeMethod(Object obj, String methodName, XmlNodeList xmlargs, Boolean& isVoid)
    at Microsoft.SharePoint.Client.ClientMethodsProcessor.ProcessMethod(XmlElement xe)
    and
    5b93b0ef-b1ff-437d-b674-5285be9b9395 Stack trace:
    at Microsoft.SharePoint.SPSite.InitUserToken(SPRequest request)
    at Microsoft.SharePoint.SPSite.SPSiteConstructor(SPFarm farm, Guid applicationId, Guid contentDatabaseId, Guid siteId, Guid siteSubscriptionId, SPUrlZone zone, Uri requestUri, String serverRelativeUrl, Boolean hostHeaderIsSiteName, SPUserToken userToken, Boolean appWebRequest, String appHostHeaderRedirectDomain, String appSiteDomainPrefix, String subscriptionName, String appSiteDomainId, Uri primaryUri)
    at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, Boolean swapSchemeForPathBasedSites, SPUserToken userToken)
    at Microsoft.SharePoint.SPSite..ctor(SPFarm farm, Uri requestUri, Boolean contextSite, SPUserToken userToken)
    at Microsoft.SharePoint.SPSite..ctor(String requestUrl)
    at Microsoft.Office.Server.UserProfiles.SPS2SAppUtility.TryOpenWeb(Uri url, SPSite& site, SPWeb& web, Boolean& inSPContext)
    at Microsoft.Office.Server.UserProfiles.SPS2SAppExecutionContext.InitializeForSite()
    at Microsoft.Office.Server.UserProfiles.SPS2SAppExecutionContext.EnsureInitialized()
    Also, I am testing with my account which does have all the mysites newsfeed options checked in the CA -> UPA ->"Manage User Profile"
    Anybody seen this whilist I follow the where those exceptions take me.
    Freelance consultant

    Hi,
    Thank you for your question. I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience. Thank you for your understanding and support.
    Thanks,
    Linda Li
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Variable to get instance failure error message in Email Notification

    Hi All,
    I  send email notifications on insatnce failure of Scheduled reports by configuring notification option in CMC.
    I would like to send the Error message for insatnce failure in the message content.
    Is there any way to achieve this ?Any dynamic system variable like %SI_STARTTIME%  available for this  ?
    I am looking for error message as we see when click status in Instance History of a report.
    "Error Message: The date for the prompt 'Enter Issue Start Date:' is invalid. (WIS 10706)  "
    Thanks in Advance
    Bilahari

    Hi Bilahari,
    It is not possible at present with the product as it stands out of the XI3.1 or BI4.0 to email the error message with the schedule email notification.
    I would suggest that you log this requirement in the SAP Ideas Place:
    Idea Place (https://ideas.sap.com) allows customers to log Enhancement request themselves without the need to contact Support and work more closely with Product Management.
    Here your idea can be evaluated by other customers and voted upon, prior to our Product Group organization deciding on the idea as a possible enhancement.
    I hope this is a very helpful answer to you.
    Kind regards,
    John

  • Email Notification Syntax Error

    I'm having trouble getting Email Notification working using Motion Detection with WebCam Centre.
    Updated to .7.02 but still not working.
    The problem seems to be the SMTP server setting. When I try and send the test email I get this syntax error:
    Syntax error in 'From' header: malformed address: [my_email@my_domain.com]\n may not follow my_email@my_domain.com: failing address is: my_email@my_domain.com[my_email@my_domain.com]
    N.B. I've changed the lesser than & greater than characters in above error to square brackets because the forum warned me it was invalid HTML.
    I've no idea why it puts \n on the end of my email address, but I'm informed it's a newline character?
    The mail server I use doesn't require authentication. I'm using the same SMTP server setting which works fine in Thunderbird or Outlook Express.
    If I disable the router/modem and use a dial-up modem with a different ISPs 0845 PAYG, with different SMTP server setting, I can sent the test email successfully.
    If I use my ADSL providers 0845 number with their SMTP server setting then it fails. Which suggests the software with WebCam Centre doesn't play ball with my ISPs SMTP server, or it's something to do with the router modem, a Netgear DG834 wired..
    TIAMessage Edited by NJW on 06-11-2006 03:06 PM

    I wasn't thinking straight when I said it could be my router/modem. It's unlikely to be my router/modem, as I still get the error when using the dial-up account given with my ISP. So it must be their SMTP server or the WebCam software.

  • Error with the email Notification XPD Targeted Ideations

    Hi Team,
        We are working with xPD in Portal 7.0 SP 16, we have configured portal with xpd correctly, first in Development Environment and it work fine, the problem is when we did the same configuration in QA Environment, because we are having problems with the email notifications that are generated within the Targeted Ideations. If we test in QA, sometimes send the email to 1 person from 5 participants that are in the Corresponding Targeted ideation. searching the logs we found the following error:
    We have checked both environments and the parameters of the configuration are the same and in Dev work OK.
    com.sap.caf.km.ejb.svc.notifyqueue.NotifyQueueException: Cannot Process Notification Message
    at com.sap.caf.km.ejb.svc.notifyqueue.NotifyQueueBean.onMessage(NotifyQueueBean.java:93)
    at com.sap.caf.km.ejb.svc.notifyqueue.NotifyQueueBean0_0Extension._onMessage(NotifyQueueBean0_0Extension.java:159)
    at com.sap.caf.km.ejb.svc.notifyqueue.NotifyQueueBean0_0Extension.run(NotifyQueueBean0_0Extension.java:39)
    at java.security.AccessController.doPrivileged(AccessController.java:279)
    at javax.security.auth.Subject.doAs(Subject.java:555)
    at com.sap.caf.km.ejb.svc.notifyqueue.NotifyQueueBean0_0Extension.onMessage(NotifyQueueBean0_0Extension.java:141)
    at com.sap.jms.client.session.Session.run(Session.java:619)
    at com.sap.engine.services.ejb.message.RunnableObject.run(RunnableObject.java:49)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(AccessController.java:219)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: java.rmi.RemoteException: Service call exception; nested exception is:
    java.net.SocketException: Socket closed
    at com.sap.caf.km.proxies.svc.kmnotif.ComSapPortalPrtSoapKMNotificationSvcBindingStub.notify(ComSapPortalPrtSoapKMNotificationSvcBindingStub.java:100)
    at com.sap.caf.km.ejb.svc.notifyqueue.NotifyQueueBean.onMessage(NotifyQueueBean.java:90)
    ... 11 more
    Caused by: java.net.SocketException: Socket closed
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:153)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:200)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:218)
    at com.sap.engine.services.webservices.jaxm.soap.HTTPSocket.readLine(HTTPSocket.java:806)
    at com.sap.engine.services.webservices.jaxm.soap.HTTPSocket.getInputStream(HTTPSocket.java:341)
    at com.sap.engine.services.webservices.jaxm.soap.HTTPSocket.getResponseCode(HTTPSocket.java:250)
    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.HTTPTransport.getResponseCode(HTTPTransport.java:362)
    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.outputMessage(MimeHttpBinding.java:553)
    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1464)
    at com.sap.caf.km.proxies.svc.kmnotif.ComSapPortalPrtSoapKMNotificationSvcBindingStub.notify(ComSapPortalPrtSoapKMNotificationSvcBindingStub.java:90).
    Could you help us to solve this issue.
    Regards,

    Hi,
    this forum is related to cProjects and cFolders, not to xPD. The right forum for your question would probably be the xApp forum.
    Regards,
       Florian

  • Error on Workflow email notification in oracle 11.5.10.2

    Anyone seen similiar error on Workflow email notification in oracle 11.5.10.2
    UNEXPECTED:[fnd.wf.bes.server.SystemLoader.getLocalSystem]:Caching disabled due to JTF exception: oracle.apps.jtf.base.resources.FrameworkException: CacheComponent not registered (KEY=FND_BES_SYSTEM_CACHE) (APP=FND)
    UNEXPECTED:[fnd.wf.bes.server.AgentLoader.getAgent]:Caching disabled due to JTF exception: oracle.apps.jtf.base.resources.FrameworkException: CacheComponent not registered (KEY=FND_BES_AGENT_CACHE) (APP=FND)

    I do not see any similar issues reported in MOS website that could be relevant to Workflow.
    Can you find any errors in the database log file?
    Please run the diagnostics scripts in these docs and see if it helps.
    Troubleshooting Oracle Workflow in Applications 11i [ID 262011.1]
    11i: Oracle Workflow Cartridge (WF): Workflow Java Mailer Diagnostic Test [VIDEO] [ID 1148948.1]
    11i: Oracle Workflow Cartridge (WF): Workflow Health Check Diagnostic Test [VIDEO] [ID 1148953.1]
    11i : Oracle Workflow Cartridge Workflow Java Mailer Setup Test [ID 274764.1]
    If the diagnostics scripts did not help then I would suggest you log a SR.
    Thanks,
    Hussein

  • Oracle Scheduling Sending Email Notifications of Job Errors

    Hi,
    We are Oracle E-Business Suite - 12.1.3 & DB 11gr1
    I want to send to configure - Oracle Scheduling Sending Email Notifications of Job Errors.
    I already created job.. how i can configure Email Notifications of Job Errors.
    Thanks
    KSV.DBA

    Duplicate posts?
    Email Notofication - scheduled job fails
    Email Notification - Oracle Scheduled job failed
    Scheduler - 11g
    Re: Create Job scheduler

  • Java Script error in email sent using extended email notification

    We are implementing the extended email notifications for workflow.  We have the workflows being sent to Lotus Notes.  However, when we open the email, we receive the message 'A JavaScript error was encountered while loading a page.  Error on line 35: CallError: window.attachEvent is not a function'.  We are running ECC 5.0.  We get the error in both Lotus Notes 7 and Lotus Notes 8.  If we continue loading the page, the message and attachments are there and we are able to launch the workflow without any problems.  I have searched the OSS Notes, but did not find anything regarding this error.  Has anyone experienced this error, and if so, what did you do to fix it?
    Thanks
    Rochelle

    We had it set up for HTML messages.  The HTML messages don't work with Lotus Notes.  Changed to plain text messages and everything is working now.

  • Error when sneding payment advice email notification

    Hi All,
    I have a problem with program RFFOAVIS_FPAYM, when i am running this to send email notification for payment advices , its giving an error :
    f0387 : dispatch via e-mail not poss.
    Please help me how to solve this and what is the cause for this error.
    Thanks in advance.
    Vishal.

    hi,
    i just know that solution with Re: f110 payment advice
    Andreas

  • Email notification Template verification error

    Hi
    I'm having a problem with an email notification template. The template works fine in the English (US) setting however when I go to the English (UK) language option and copy the exact template across I get a management pack verification error which seems
    to indicate that the subject line is too long. The code is for a review activity and it pulls information in from parent the parent change/service request.
    You have been assigned Review Activity [$Context/Property[Type='CustomSystem_WorkItem_Library!System.WorkItem']/Id$] for Request $Context/Path[Relationship='CustomSystem_WorkItem_Activity_Library!System.WorkItemContainsActivity' SeedRole='Target' TypeConstraint='CustomSystem_WorkItem_ChangeRequest_Library!System.WorkItem.ChangeRequest']/Property[Type='CustomSystem_WorkItem_Library!System.WorkItem']/Id$$Context/Path[Relationship='CustomSystem_WorkItem_Activity_Library!System.WorkItemContainsActivity' SeedRole='Target' TypeConstraint='CustomSystem_WorkItem_ServiceRequest_Library!System.WorkItem.ServiceRequest']/Property[Type='CustomSystem_WorkItem_Library!System.WorkItem']/Id$$Context/Path[Relationship='CustomSystem_WorkItem_Activity_Library!System.WorkItemContainsActivity' SeedRole='Target' TypeConstraint='CustomSystem_WorkItem_Library!System.WorkItem']/Path[Relationship='CustomSystem_WorkItem_Activity_Library!System.WorkItemContainsActivity' SeedRole='Target' TypeConstraint='CustomSystem_WorkItem_Library!System.WorkItem']/Property[Type='CustomSystem_WorkItem_Library!System.WorkItem']/Id$ - $Context/Path[Relationship='CustomSystem_WorkItem_Activity_Library!System.WorkItemContainsActivity' SeedRole='Target' TypeConstraint='CustomSystem_WorkItem_ChangeRequest_Library!System.WorkItem.ChangeRequest']/Property[Type='CustomSystem_WorkItem_Library!System.WorkItem']/Title$$Context/Path[Relationship='CustomSystem_WorkItem_Activity_Library!System.WorkItemContainsActivity' SeedRole='Target' TypeConstraint='CustomSystem_WorkItem_ServiceRequest_Library!System.WorkItem.ServiceRequest']/Property[Type='CustomSystem_WorkItem_Library!System.WorkItem']/Title$$Context/Path[Relationship='CustomSystem_WorkItem_Activity_Library!System.WorkItemContainsActivity' SeedRole='Target' TypeConstraint='CustomSystem_WorkItem_Library!System.WorkItem']/Path[Relationship='CustomSystem_WorkItem_Activity_Library!System.WorkItemContainsActivity' SeedRole='Target' TypeConstraint='CustomSystem_WorkItem_Library!System.WorkItem']/Property[Type='CustomSystem_WorkItem_Library!System.WorkItem']/Title$
    Any suggestions on how to resolve this or why there is a limitation for one language and not another

    A copy and paste error was my initial thought however i replaced the entire text in the subject line with the same length of text as above but with the letter a and had the same error. It appears that there may be a character limit on the additional language
    options for the subject.

  • Mobile Manager - Error Queue Email Notification

    I have a quick question regarding Mobile Manager and the Error Queue. Is it possible to setup an email notification when transactions hit the error queue? I know you can setup triggers on the CEQ$ tables but this wont be an efficient notification mechanism as certain transactions will affect multiple tables. I was hoping the Mobile Manager would have some sort of mechanism to handle this as our current method involves a user manually checking the Mobile Manager home page.
    Any help will be greatly appreciated and thanks in advance.

    There are three 'header' tables in the mobileadmin schema. C$IN_MESSAGES is the header for the in queue and is the same as C$EQ (except for the message text). C$INQ is the header for queue based publication items, and is different in that it has one record per uploaded publication item (ie: table), rather then one for each data record.
    Be aware that if you override any of the mobile repository stuff, a future upgrade or patch may revert things, should not be an issue in this case, but worth adding to the checks.
    We have some additional code in the logging triggers created on the underlying schema tables do be more specific about logging of changes in some generic tables, and these need to be re-applied after a re-publish

  • ESB Notification channel not sending emails when error is not retryable

    Hi everyone,
    I'm facing a problem on a production environment, two Oracle SOA suite 10.1.3.3 machines in cluster, operating system Linux Unbreakable.
    I've succesfully set up the notification channel for ESB and it is correctly sending mail.
    Today after some errors ESB did not sent any mail and there is not a single error in the log files, both in opmn/logs and j2ee/OC4J_.../log/...
    At the same time some retryable error has been seen, and for in this case the mail was correctly sent, so the only clue I have is that for some reason there is a configuration that tells the server not to send mails for not retryable errors... Am I right? Is there a chance to change this behaviour?
    Thank's for your attention,
    Lisa

    Hi Lisa,
    >>
    I'm facing a problem on a production environment, two Oracle SOA suite 10.1.3.3 machines in cluster, operating system Linux Unbreakable.
    I've succesfully set up the notification channel for ESB and it is correctly sending mail.
    Today after some errors ESB did not sent any mail and there is not a single error in the log files, both in opmn/logs and j2ee/OC4J_.../log/...
    At the same time some retryable error has been seen, and for in this case the mail was correctly sent, so the only clue I have is that for some reason there is a configuration that tells the server not to send mails for not retryable errors... Am I right? Is there a chance to change this behaviour?
    >>
    I'm also using 10.1.3.3 MLR#17 in cluster, OS: AIX 5.3L and didn't faced your behaviour before.
    What exactly errors do you facing? ESB email notification works not for all errors.
    For example: failure at JCA layer (FTP adapter that poll for XML files and receive a text file) - didn't produce any notification (you must manually configure rejection handler for this, if you need more than files at $OH/j2ee/.../jca/...) and this's expected behaviour.
    Best Regards,
    Mikhail.

  • Send email notification when a concurrent request completes with Error

    {color:#0000ff}I need to setup the system such that when a concurrent request completes with the status "Error", generate/send email notification to an application user. Please advice if you know how to configure the system to accomplish this.
    Note: If the concurrent request completes with status "Normal" or "Warning", do not send/generate email notification to the application user.
    Thanks.
    {color}

    We do what amOx does. I made a concurrent program that calls a sql script, and emails me of errored jobs. It is more convenient than logging in each day. I ran this twice daily, and the sql checks for the previous 12 hour time slice (ie - twice a day run).
    ..colin

  • DFM Email notifications not working - HTTP status 500 error in DFM 2.0.10

    Hi All,
    I have recently upgraded...
    CiscoWorks Common Services from 3.0.5 – 3.0.6
    Campus Manager 4.0.6 – 4.0.10 - 4.0.13
    Device Fault Manager 2.0.6 – 2.0.10
    Now Email notifications stoped working, it was working fine before.
    Even when I was upgrading CM from 4.0.6 to 4.0.10, it worked fine meanwhile. After upgraded it from 4.0.10 to 4.0.13, it stoped working completely.
    Before I had same issue and resloved by creating new notification group and subscribed.
    Now when I am trying to create new notification group I am getting the below error message
    DFM-->Notification Services-->Notification Groups
    HTTP Status 500 - Internal Server Error
    type Exception report
    message Internal Server Error
    description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.
    exception
    java.lang.NullPointerException
    at com.cisco.nm.trx.nos.action.NGroup.perform(NGroup.java:140)
    at org.apache.struts.action.ActionServlet.processActionPerform(ActionServlet.java:1786)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1585)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:491)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2417)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.ajp.tomcat4.Ajp13Processor.process(Ajp13Processor.java:457)
    at org.apache.ajp.tomcat4.Ajp13Processor.run(Ajp13Processor.java:576)
    at java.lang.Thread.run(Thread.java:534)
    Apache Tomcat/4.1.29
    DFM from 2.0.6 to 2.0.10 and Campus Manager

    Hi Joe,
    Thanks for your response.
    I deleted the file at the path which you specified, no luck still I am getting the same below error message when attemption to open Notification Groups tab to create new group.
    HTTP Status 500 - Internal Server Error
    type Exception report
    message Internal Server Error
    description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.
    exception
    java.lang.NullPointerException
         at com.cisco.nm.trx.nos.action.NGroup.perform(NGroup.java:140)
         at org.apache.struts.action.ActionServlet.processActionPerform(ActionServlet.java:1786)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1585)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:491)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2417)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.ajp.tomcat4.Ajp13Processor.process(Ajp13Processor.java:457)
         at org.apache.ajp.tomcat4.Ajp13Processor.run(Ajp13Processor.java:576)
         at java.lang.Thread.run(Thread.java:534)
    Apache Tomcat/4.1.29
    Regards,
    Naidu.

Maybe you are looking for

  • How to make an app a file receiver for images on iOS?

    Hi, How to make an app a file receiver for images on iOS? I did it for the Android app.xml like this: <intent-filter>         <action android:name="android.intent.action.SEND"/>         <category android:name="android.intent.category.DEFAULT"/>      

  • Apple ID - Log in

    Out of the blue I got problems with my Mac Mini running on Mac OS X 10.4.8 and the Firefox browser: The font size has become miniscule but will change with a manual increase under View. Next my usual Apple ID is not recognized using my usual pass wor

  • Problem with garnishments

    This is a weird problem we are having. When we create any garnishment elements and try to use them, we get an error saying that the compiled version of the formula cannot be found. At the time of the creation of the garnishment element, it gives an e

  • Microblaze's purpose in OpensparcT1 Xilinx design

    Hi, I would like to know what's exactly the purpose of the Microblaze in the Xilinx project with OpensparcT1? It is said that it is used for handling memory and input/output transactions, but is it a must to use the Microblaze? is it possible to over

  • Drag appointment from Mail into iCal - won't automatically go into iCloud

    When I drag an appointment from Mail into iCal, it saves the event on the calendar "Home - On my Mac" even though I have told iCal to default as "Home (iCloud)" Is there any way I can get Mail to drop into iCal on my default iCloud account so iCloud