FDM Load Mail Notification

Hi Experts:
I have the following script which I put together from the send mail accelerators, which I applied to the "AftLoad" event script. However when I manually go through and upload data successfully I still receive the "failed" part of my notification email. I'm not sure where I'm going wrong so any help would be appreciated.
Thank you
Pip
Please see script below:
Sub AftLoad(strLoc, strCat, strPer, strTCat, strTPer, strFile)
'Hyperion FDM EVENT Script:
'Created By:      pgill
'Date Created:      2012-05-01-14:21:07
'Purpose:
'Declare local variables
Dim strFromAddress
Dim strToAddress
Dim strSubject
Dim strEmailMsgLine
Dim objMsg
Dim objConfig
Dim intSendUsing
Dim strSMTPServer
Dim intSendPort
Dim lngStateload
'Initialize message content variables
strFromAddress = DW.Security.fUserEmailGet(DW.Connection.PstrUserID)
strToAddress = "[email protected]"
strSubject = "Hyperion FDM Processing Status"
'Initialize Process State
lngStateload = "31" 'Load Ok
'With API.MaintenanceMgr.fProcessStatus(strLoc, strCat, strPer)
With API.MaintenanceMgr.fProcessStatus(API.POVMgr.PPOVLocation, API.POVMgr.PPOVCategory, API.POVMgr.PPOVPeriod)
If .lngStatus = lngStateload Then
'Load step successful
strSubject = "FDM: Extract Load Successful!"
strEmailMsgLine = "<b><u>Data Load Status</b></u>" & "<br><br>" &_
          "Data load has been <b><font color=green><u>successful</b></font></u> for the following Point-Of-View:" & "<br><br>" &_
          "<li>&nbspLocation "& "&nbsp»&nbsp&nbsp" & API.POVMgr.PPOVLocation & "<br>" &_
          "<li>&nbspScenario "& "&nbsp»&nbsp&nbsp" & API.POVMgr.PPOVCategory & "<br>" &_
          "<li>&nbspPeriod "& "&nbsp»&nbsp&nbsp" & API.POVMgr.PPOVPeriod & "<br>" &_
          "<li>&nbspLoad Time "& "&nbsp»&nbsp&nbsp" & Date & " - " & Time           
Else
'Load step failed
strSubject = "FDM: Extract Load Failed!"
strEmailMsgLine = "<b><u>Data Load Status</b></u>" & "<br><br>" &_
          "Data load has <b><font color=red><u>failed</b></font></u> for the following Point-Of-View:" & "<br><br>" &_
          "<li>&nbspLocation "& "&nbsp»&nbsp&nbsp" & API.POVMgr.PPOVLocation & "<br>" &_
          "<li>&nbspScenario "& "&nbsp»&nbsp&nbsp" & API.POVMgr.PPOVCategory & "<br>" &_
          "<li>&nbspPeriod "& "&nbsp»&nbsp&nbsp" & API.POVMgr.PPOVPeriod & "<br>" &_
          "<li>&nbspLoad Time "& "&nbsp»&nbsp&nbsp" & Date & " - " & Time & "<br><br>" &_
          "<i><font color=Gray>***Please contact Hyperion System Administration For failure resolution***</i></font>"
End If
End With
'Initialize Mail Server variables
'SMTP server name
strSMTPServer = "lonmail"
'CdoSendUsing enumeration-1=use smtp on local machine, 2=use smtp over network
intSendUsing = 2
'SMTP port on server
intSMTPPort = 25
'Create CDO configuration object
Set objConfig = CreateObject("CDO.Configuration")     
'Set Config object settings
With objConfig.Fields
     .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = intSendUsing
     .Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strSMTPServer
     .Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport")= intSMTPPort
     .Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 10
     .Update
End With
'Create CDO message object
Set objMsg = CreateObject("CDO.Message")     
'Assign config object to configuration property of message object
Set objMsg.Configuration = objConfig
'Set Message object settings and send mail
With objMsg
     .To = strToAddress
     .From = strFromAddress
     .Subject = strSubject & " - " & Date & " - " & Time
     .HTMLBody = strEmailMsgLine
     .Send
End With
End Sub

Since it is VBSCript and everything is a data type Variant anyway, this shouldn't matter but ...
'Initialize Process State
lngStateload = "31" 'Load Ok
^ You just made a string.
.lngStatus
^ Most likely returning numeric
Anyway, if the numeric value is 31 and the string is 31, VBScript should equate that to being equal.
For entertainment value; however, why not put the .lngStatus code in the email so you can verify the value you are getting back from FDM? Perhaps you got the wrong number for LoadOK?
Also, aren't there constants for those values? If there are, I would use those to make sure your script doesn't break in a future release if they change the value associated to Load OK.

Similar Messages

  • Mail notification sticks at "loading" after 8.2

    When I get an incoming email the on screen notification sticks at loading..and stays there...I can access the message if I open it but very annoying..anyone else/fix?

    Not directly, unfortunately. Some posts on the Pebble reddit (where others are experiencing the same problems) suggest that it's an 8.2 bug since downgrading to 8.1.3 fixes the issue and the 8.3 beta is working fine as well. Since I'm receiving text and phone notifications, I solved my mail notification issue by switching to the Gmail app until either the bug (if that's what it is) is fixed or 8.3 comes out.

  • Sending a mail/notification after INITIAL LOAD

    Hi All,
      I have requirement to send mail/notification after the initial load of equipment from ECC to CRM.
    Every time monitoring and refreshing is taking over nights efforts. Rather than checking that mail makes us simple.
    Please provide me relavant methods and setting to implement and configure for the same.
    Thank,
    Shyam K Gangisetti

    My reply was supposed to be for some other post. Sorry that it got posted for this question.
    Anyhow, for your query - you can create a Ztable with respective fields relevant for email sending
    Then lets assume that load is for business partners..so you can create a implicit enhancement in FM CRM_BUPA_MAIN_VAL and control mail sending from there using entries of above Ztable.

  • Mail notifications stuck at "Loading"

    I've been searching around both here and the web in general trying to find an answer with no luck. Since upgrading to 8.2, my Mail notifications aren't behaving correctly. The alert will pop up on my iPhone 6's screen, but the preview will be stuck at "Loading". I've checked and re-checked that everything is set correctly multiple times, and I've also tried setting and re-setting the notification settings and Mail settings, swapped between Push and Fetch, and re-booted the iPhone. The mail itself actually comes through fine when I open the Mail app, it's just that the pop-up notifications get stuck (I've also tried switching between Banners and Alerts with no success). This behavior, in turn, also means that my Mail notifications don't get pushed to my Pebble (every other notification from the phone - texts, calls, etc. - get pushed just fine to the Pebble). Can anyone else suggest something I haven't tried yet? Many thanks!

    Not directly, unfortunately. Some posts on the Pebble reddit (where others are experiencing the same problems) suggest that it's an 8.2 bug since downgrading to 8.1.3 fixes the issue and the 8.3 beta is working fine as well. Since I'm receiving text and phone notifications, I solved my mail notification issue by switching to the Gmail app until either the bug (if that's what it is) is fixed or 8.3 comes out.

  • MDM Workflow / E-mail Notification Issues

    Hi Experts,
    I am working on a client that is using the SAP Portal to kickoff a workflow to notify the requestor when creating a vendor (with the vendor number that gets created when it reaches SAP). They did have MDM 7.1 connected to an SAP 4.7 system. Now they are upgrading to ECC 6.0 and we're in the middle of unit testing. For some reason, the e-mail notifications are not working while our Dev environment is connected to ECC 6...not sure why. I've checked all of the workflows / roles / e-mails, everything is exactly the same as it is in 4.7.
    Our workflow looks similar to this: requestor creates / edits a vendor through the Enterprise portal --> approver approves record --> record is sent to ECC 6.0 --> once created successfully in ECC 6.0, an email is sent to the requestor with a vendor number (if it is a vendor create) or and e-mail letting the requestor know the changes have been posted successfully to SAP.
    I've checked the MDS.ini file for any kind of information that needs to be updated for being connected to this new environment...I can't see anything. Is there a different file on the MDM server with e-mail / server info?
    Any clues as to why it may not be working in this new environment? I'm assuming pinging the server wouldn't do much good since it is still working in QA and Production, just not Dev where we are currently testing the 6.0 system.
    Thanks for your consideration!
    Nichole

    Kanstantsin -
    In response to your questions..
    1)
    Are you sure that your smtp server is working? It is workiing for Production in SAP 4.7, just not Dev ECC 6.0...so I am assuming it is working since it is on the same server.
    What happen when you launch your workflow with e-mail notification(Did you get error message in your repository logs?) ?
    Could you to send e-mail through it from your e-mail program? There was only one workflow that errored out out of approx. 20 due to e-mail. Most are stuck in workflow at 'check in and send e-mail to user'. The one that did have an error said "Could not send e-mail rc = 4294967284 MDM Server Error" Yet, there is nothing in the MDSS log...
    If your answer -no, please check, launch, configure, install your smpt server. It must be installed, right? If it works in production...
    If your answer -yes, go to step 2
    2)
    In mds.ini file in your repository block should be string like this :"Mail Server=your mail host name" It says Mail Server= (there is nothing there)...
    Where your mail host name = your smtp server name, something like "mailhost.your_domain.com" or your smtp server IP adress
    if that step is OK...I do not see this in the MDS.ini file...
    3) load MDM console, login to your repository and check check your e-mail receiver (user) and it e-mail adress- Is it correct? Yes
    4) load Data Manager - open Workflow and check user accessibility from your e-mail step. Everything Looks correct here also...

  • I Have No Voice Mail Notifications In Z10 Hub

    I have seen issues with Voice Mail Notifications in various threads, but I didn't see one having No Voice Mail Notifications In the Z10 Hub at all. Sorry if I missed a thread that applies.
    From what I was told by Blackberry Technical Support, at the bottom of the BB Hub next to "Calls", "Emergency Alerts" and "PIN", should be "Voice Mail" (or something similar). I have none and therefore do not get any notifications when I receive a Voice Message. I thought this was odd, and figured I had some settings incorrect, but that is not the case. It's just not there.
    I am in the USA on Verizon's network with the latest updated OS 10.1.0.2039 that they offered on a STL100-4, Z10.
    Anyone else have this issue?

    My wife had the same issue on her Z10.
    A quick call to customer service at AT&T and they set it up.
    Rebooted her phone, and all was well.
    I'm sure Verizon customer service can do this for you as well.
    Hope this helps.
    Sincerely -

  • IPhone 4s Voice mail notification not working after switching from Verizon to PagePlus.

    iPhone 4s Voice mail notification not working after switching from Verizon to PagePlus.  How can I get the notifications working?

    Contact your carrier - voicemail, and visual voicemail, is a carrier feature.

  • Syncing Mail Notifications Between Mac and iPhone

    Hi
    I been having this problem with the mail notifications not syncing between the Mail.app on my MacBook Pro and iPhone. Let me explain:
    When I get a new email, I hear the sound and see the red notification icon appear on both the MacBook and the iphone. When it comes to checking the new email, here are the two possible scenarios:
    a) If I check the new email on my phone, the red notification icon disappears from BOTH the iphone and the MacBook.
    b) If I check the new email on my MacBook, the red notification disappears from the MacBook but DOESN'T disappears from the iPhone (that is until I open the app). This happens with both cases, when the app is "running" in the background or when it is complety closed.
    I don't know if I am crazy but I am pretty sure that both of the notifications used to disappear before, no matter where I checked the mail.
    I tried deleting and creating the email again on my phone, and it didn't work.
    Here some info that could help find a solution:
    - I'm using icloud email (@me.com)
    MacBook
    -Mountain Lion
    iPhone:
    - iOS 6 (this problem started before the upgrade)
    - Push is on.
    - Fetch (that suppodselly would be used only if push is off) is set to Manually.
    - On the "Advanced" sub-menu inside the Mail settings, Push is also selected.
    Hopefully this can actually be fix and I can prove myself that I was not crazy!!
    Thanks in advance for the help!!

    Anyone find a fix for this problem? I've been waiting for this since notification syncing was announced a couple years ago with iOS 6. I use iCloud for my email and find it very frustrating that when I read an email on my Mac or on iCoud.com that it doesn't automatically dismiss the notifications for those emails on my iOS devices until I open the mail app on each iOS device. Notification syncing works great with other apps. With iMessages, for example, when I read a message on my Mac running Yosemite, the notifications disappear on my iOS devices without opening the messages app (badge app icon, home screen notifications and notification center). Why can't they figure this out with email? I remember at my old job, I had an exchange account that properly synced mail notifications between devices, but it has never worked with my iCloud email. I wonder if I am just missing a particular setting or if Apple just blew it here. Any info would be greatly appreciated.

  • MAIL application doesn't load mail and or attachments

    Help! For the longest time, my MAC MAIL that comes with all Apple computers just sits there and LOADS mail when all there is, is just a small email or pictures attached.
    for the most part, i'm sure these are all coming from WINDOWS machines but still, other people from windows send me stuff and it's 50/50 that i'll either get the info or i wont.
    PLEASE HELP! ANY INFO would be appreciated.
    Glenn =)

    Force quit Mail:
     > Force Quit (OPTION+COMMAND+ESCAPE) then select Mail and Force Quit

  • ICloud ical e-mail notifications

    My wife and I both have separate iCloud accounts. Then she subscribed to my calendar, so she can see my schedule. This works in both Lion and iOS properly, and has been working for a few months now, ever since we made the iCloud transition.
    Two days ago, she started getting individual e-mail notifications about every single event I create, change, or delete in my iCloud calendar. The e-mails don't include any unsubscribe info.
    Where is the preference to turn this off?

    So i have question, it is possible to switch to Open directory master and current users will be OK
    I would suggest you ask that question in the open directory group as they will have more practical experience in doing this. You must ensure that your forward and reverse IP address of the serve is set up correctly before doing this.
    And could i use Local user database and LDAP in the same time?
    Yes that us normal operation - there will always be some accounts in the local directory, but you should not put users in there.

  • HT201342 How do I change the default e-mail in ical for e-mail notifications?

    My ical e-mail notifications are set up to my .mac account, but I need to change it to icloud address, as I'm getting errors when it tries to send e-mail notifications to the @mac.com address. But I can't figure out how to change the e-mail address. I've added the icloud.com address in accounts, but it doesn't offer me the choice of that e-mail in the drop-down menu in ical when I choose e-mail notification.

    Try to delete the file mimeTypes.rdf in the Firefox Profile Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    See "Reset Download Actions"
    * http://kb.mozillazine.org/File_types_and_download_actions

  • How to customize initial secure e-mail notification message

    Can we customize the initial secure e-mail notification message with a company logo or any kind of text?
    The one that says:
    You have received a secure message
    Read your secure message by opening the attachment, securedoc.html. You will be prompted to open (view) the file or save (download) it to your computer. For best results, save the file first, then open it in a Web browser. To access from a mobile device, forward this message to [email protected] to receive a mobile login URL.
    If you have concerns about the validity of this message, contact the sender directly.
    First time users - will need to register after opening the attachment.
    Help - https://res.cisco.com/websafe/help?topic=RegEnvelope
    About Cisco Registered Email Service - https://res.cisco.com/websafe/about
    Basically we want to put our company logo to the top of this message. We already have our company logo added in CRES that shows up when you open the securedoc.html file.
    Thanks!

    Nevermind, I found it.
    Mail Policies > Text Resources > Add Text Resource
    Set the type as Encryption Notification Template (HTML), edit the HTML and then also add one with a type Encryption Notification Template (text), edit the text. Then go into the Security Services > IronPort E-Mail Encryption > modify the Encryption profile and choose the new Text Resources created above.
    Under Text Resources I was also able to create custom bounce messages with variables that display all the relevant information regarding the bounce.

  • Error while Loading Mail.jar in Database

    Hi,
    I am trying to load mail.jar in Oracle 8i Database(ver. 8.1.5.0.0). It is giving error insufficient previleges. Then I extracted mail.jar and tried to load class PasswordAuthentication of mail.jar in user scott. It gave me same error. But I could load the same class in user SYS.
    Does it mean that, scott needs some special previleges for the classes in mail.jar. If so, How can I set those previleges ?
    Thanking You.
    Mrinal.
    null

    rdbms 8.1.5 had very tight restrictions on loading "system classes.
    check the java doc for 8.1.5 on this.
    check out the following
    "protected packages" in the following
    http://otn.oracle.com/doc/server.815/a64682/04jserve.htm#1001015
    Protected Packages
    You cannot replace system classes (those that CREATE JAVA SYSTEM installs, which you invoke with initjvm.sql at database initialization time). In addition, classes in any package (or sub-package) in which system classes reside, can be created only in the SYS schema. Protected packages include those starting with the patterns:
    java
    javax
    oracle.aurora
    oracle.jdbc
    oracle.rdbms
    oracle.sqlj
    oracle.sqlnet
    oracle.vm
    oracle.weak
    sun.tools
    sun.misc
    sun.net
    com.visigenic.vbroker
    com.sun.jndi
    org.omg
    sqlj
    by the way 8.1.5 went out of support on dec 31, 2000. you need to consider moving to 8.1.7.
    null

  • Problem encountered while sending a mail notification from BPEL process

    Hi All,
    I am fresher in BPEL world, I am trying to send a notification mail to user using BPEL process. I had done all the configuration needed for mail notification process given in the developer guide.
    I am able send a notification mail to intended recipent and also able to receive response activity from the BPEL process.
    but, I am getting the following error in the server console.
    <2006-10-10 16:58:00,642> <ERROR> <default.collaxa.cube.services> <TaskNotificationsForXPath::getActionableLink> Check the error stack and fix the cause of theerror. Contact oracle support if error is not fixable.
    <2006-10-10 17:02:03,144> <ERROR> <default.collaxa.cube.services> <PCException::<init>> Email account does not exist.
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <PCException::<init>> Email Account atikam@localhost does not exist.
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <PCException::<init>> Actionable links could not be added to task notification.
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <PCException::<init>> Actionable links could not be added to task notification for task 4506.
    The email account that will receive this actionable message is atikam@localhost.
    This task is associated with the business process c0c81fee36462bc5:c2b2f6:10e31
    a208d3:-7fdc, identified by SimpleVacReqEscBPELProcess
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <PCException::<init>> Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <TaskNotificationsForXPath::getActionableLink> Actionable links could not be added to task notification.
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <TaskNotificationsForXPath::getActionableLink> Actionable links could not be added to task notification for task 4506. The email account that will receive this actionable message is atikam@localhost. This task is associated with the business process c0c81fee36462bc5:c2b2f6:10e31a208d3:-7fdc, identified by SimpleVacReqEscBPELProcess
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <TaskNotificationsForXPath::getActionableLink> Check the error stack and fix the cause of theerror. Contact oracle support if error is not fixable.
    - If anyone encountered the same situation, please let me know why above error message is coming.
    Thanks in advance.
    Sagar.

    Hi All,
    I am fresher in BPEL world, I am trying to send a notification mail to user using BPEL process. I had done all the configuration needed for mail notification process given in the developer guide.
    I am able send a notification mail to intended recipent and also able to receive response activity from the BPEL process.
    but, I am getting the following error in the server console.
    <2006-10-10 16:58:00,642> <ERROR> <default.collaxa.cube.services> <TaskNotificationsForXPath::getActionableLink> Check the error stack and fix the cause of theerror. Contact oracle support if error is not fixable.
    <2006-10-10 17:02:03,144> <ERROR> <default.collaxa.cube.services> <PCException::<init>> Email account does not exist.
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <PCException::<init>> Email Account atikam@localhost does not exist.
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <PCException::<init>> Actionable links could not be added to task notification.
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <PCException::<init>> Actionable links could not be added to task notification for task 4506.
    The email account that will receive this actionable message is atikam@localhost.
    This task is associated with the business process c0c81fee36462bc5:c2b2f6:10e31
    a208d3:-7fdc, identified by SimpleVacReqEscBPELProcess
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <PCException::<init>> Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <TaskNotificationsForXPath::getActionableLink> Actionable links could not be added to task notification.
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <TaskNotificationsForXPath::getActionableLink> Actionable links could not be added to task notification for task 4506. The email account that will receive this actionable message is atikam@localhost. This task is associated with the business process c0c81fee36462bc5:c2b2f6:10e31a208d3:-7fdc, identified by SimpleVacReqEscBPELProcess
    <2006-10-10 17:02:03,160> <ERROR> <default.collaxa.cube.services> <TaskNotificationsForXPath::getActionableLink> Check the error stack and fix the cause of theerror. Contact oracle support if error is not fixable.
    - If anyone encountered the same situation, please let me know why above error message is coming.
    Thanks in advance.
    Sagar.

  • Error while sending E-Mail Notification

    hi,
    when i tried to send mail from BPEL i faced error, where i configured the outlook with gmail server its working fine,here i paste the ns-emails.xml and the error code is server.
    ns_emails.xml
    <EmailAccounts xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"
    EmailMimeCharset=""
    NotificationMode="ALL">
    <EmailAccount>
    <Name>Default</Name>
    <GeneralSettings>
    <FromName>my name</FromName>
    <FromAddress>my email address</FromAddress>
    </GeneralSettings>
    <OutgoingServerSettings>
    <SMTPHost>smtp.gmail.com</SMTPHost>
    <SMTPPort>587</SMTPPort>
         <AuthenticationRequired>true</AuthenticationRequired>
    <UseTLS>true</UseTLS>
    </OutgoingServerSettings>
    <IncomingServerSettings>
    <Server>pop.gmail.com</Server>
    <Port>995</Port>
    <Protocol>pop3</Protocol>
    <UserName>my email address</UserName>
    <Password ns0:encrypted="false" xmlns:ns0="http://xmlns.oracle.com/ias/pcbpel/NotificationService">my password</Password>
    <UseSSL>true</UseSSL>
    <Folder>Inbox</Folder>
    <PollingFrequency>1</PollingFrequency>
    <PostReadOperation>
    <MarkAsRead/>
    </PostReadOperation>
    </IncomingServerSettings>
    </EmailAccount>
    </EmailAccounts>
    Error in server:
    javax.mail.MessagingException: 530 5.7.0 Must issue a STARTTLS
    command first. a4sm326251tib.11
    at com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTran
    sport.java:1020)
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTranspor
    t.java:716)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTrans
    port.java:388)
    at oracle.tip.pc.services.notification.email.EmailDriver
    .sendMessage(EmailDriver.java:215)
    at oracle.tip.pc.services.notification.email.EmailDriver
    .send(EmailDriver.java:185)
    at oracle.tip.pc.services.notification.DefaultNotificati
    onServiceImpl.sendEmailNotification(DefaultNotificationServiceImpl.java:251)
    at oracle.tip.pc.services.notification.NotificationServi
    ceImpl.sendEmailNotification(NotificationServiceImpl.java:271)
    at oracle.bpel.services.notification.queue.sender.MDBCon
    sumer.deliverNotification(MDBConsumer.java:256)
    at oracle.bpel.services.notification.queue.sender.MDBCon
    sumer.onMessage(MDBConsumer.java:137)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native M
    ethod)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMet
    hodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Deleg
    atingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoin
    PointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContext
    Impl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterce
    ptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContext
    Impl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.SetContext
    ActionInterceptor.invoke(SetContextActionInterceptor.java:44)
    at com.evermind.server.ejb.interceptor.InvocationContext
    Impl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(
    InvocationContextPool.java:55)
    at com.evermind.server.ejb.MessageDrivenConsumer.onMessa
    ge(MessageDrivenConsumer.java:347)
    at com.evermind.server.ejb.MessageDrivenConsumer.process
    Messages(MessageDrivenConsumer.java:233)
    at com.evermind.server.ejb.MessageDrivenConsumer.run(Mes
    sageDrivenConsumer.java:169)
    at com.evermind.util.ReleasableResourcePooledExecutor$My
    Worker.run(ReleasableResourcePooledExecutor.java:298)
    at java.lang.Thread.run(Thread.java:595)
    please help me out to resolve the issue.
    thanks in Advance
    Aswath Thaniga

    hello Anirudh Pucha,
    thanks for your message,
    i'm downloading all the files you advised and one more doubt regarding SOA installation,
    i'm using BPEL Process manager 10.1.3.1.0 installed on my machine and not installed SOA Suite (problem in installing AS Middle tier), i send voice,sms through BPEL PM which works fine, and faced problem in e-mail notification only, according to me with out installing SOA suite we can use BPEL PM or please let me know the procedure to install the downloading files.
    if possible please send me a details in word documents to my mail "[email protected]".
    Thanks again

Maybe you are looking for

  • It's the final count down.

    When I think about the times I ever complained about AT&T's spotty service, it makes me want to go back in time and tell 2012 me that Anna Kenrick is going to sing a song and the line "you're gonna miss me when I'm gone" is going to haunt me as I rem

  • Will EC support setting default file type and Open With from file menu?

    The default file types I can live without, but at least allow for Open With on right click from Windows Explorer. I currently have EC set in the Open With programs list, but EC does not comply for any files I opt to open it with (.css, .php, .html et

  • Placing objects in Smart Cut Pro from Illustrator

    I know in CorelDraw, you can create a contour of the object, break it apart and place it into the cutting program and be able to cut out both shapes. I was wondering if it is possible to do something like that with an outlined object created in Illus

  • Simple var question

    when i declare a variable using "var", is it relative only to the timeline it is declared on? for example, can i have the a variable named "location" in two different movie clips? will flash know the difference between the variable in each movie clip

  • Design View Collapse - How do you un-do?

    Hello! I hope you can help! Some how my Design view only shows my header image and footer image, and all else is invisible. I know the page HTML is there as I can see all the code in the Code view, but does not show in Design view. I have not had thi