ERMS for email activity based on alerts

Hi
What are the configuration steps required to setup ERMS for email activity based on alterts.Please send me soltion immediatly
Regards
Vikram

Hello Vikram,
I am afraid that your question is not clear. ERMS is a solution for processing and handling inbound emails. Alerts are used to communicate customer-relevant information to Interaction Center agents. The two tools -- ERMS and alerts -- are not related. Can you please clarify your question and/or elaborate on you requirement?
Thanks,
John

Similar Messages

  • How to set FROM ADDRESS for EMAIL activity in Process Flow

    Hi all,
    Can any one tell how to set(which address) FROM ADDRESS for EMAIL activity in Process Flow?
    Thanks,
    Suvvi

    Did you set what OWB guide says:
    To execute a process flow with an email activity, you may need to access different host machines and ports. New security measures implemented in Oracle Database 11g Release 1 restrict access to hosts and ports. You must explicitly grant access to hosts and ports that the email activity accesses using the DBMS_NETWORK_ACL_ADMIN package.
    For example, the user OWBSYS needs to send an email through the mail server mail.example.com using port 25. The DBA must perform the following steps:
    1. Create an Access Control List (ACL) for the user OWBSYS using the following command:
    EXECUTE DBMS_NETWORK_ACL_ADMIN.CREATE_ACL
    (’acl_for_owb_cc.xml’,’ACL for Control Center’,’OWBSYS’,’CONNECT’);
    The ACL has no access control effect unless it is assigned to network target.
    2. Assign the Access Control List (ACL) to a network host, and optionally specify a TCP port range. Use the following command:
    EXECUTE DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL (’acl_for_owb_cc.xml’,’mail.example.com’,25)
    3. Commit the changes made using the COMMIT command.

  • Req date for an activity based on planned delivery time of component

    Hi Experts
    I wish to create activities for purchase and install an equipment.
    The procurement activity is assigned with the component.
    the planned delivery time is specifed (ex: 100 days)
    Based on this value, can i get calculated the requirement date for the activity (Ex: today+100days) in stead of manual specification of date for the corresponding activity?
    warm regards
    ramSiva

    Hi Ahmed
    Thanks for your response. This seems to be good feature.
    However, i could not get the date corrected for my activity after applying this function.
    I have created an activity with normal duration 1day. For the same activity, i have assigned a compnent which has 100days planned del time.
    Then i have used 'Transfer Del time --> duration'. But no change.
    Could you suggest me right approach?
    warm regards
    ramSiva

  • How to Pick differant price for same activity based on employee grade?

    Hi,
    My Requirement is -
    1.  We are using Machine -1  for manufacturing purpose. In this machine, There 3 employees who are authorized to work... (Eg. Employee A -Employee B -Employee C)
    2. We have an Activity type for Machine hour. The price given in KP26 is 10$ per hour and assigned it in Work Center.
    3. But Employee A hourly price is 12% &  Employee B hourly price is 10$ -Employee C hourly price is 8$.
    4. Now with the current set up, system is taking 10$ for any of the above employee which is not correct.
    Requirement is - When Employee A works on this machine, system shoule take 12$ per hour and If employee B woks on this machine, system should take 10$ per hours and For Employee C, system should pick 8$ per hour. How to get different activity rate when using different employee?
    Kindly help me how can i configure for this requirement. Please give me some inputs..
    Thanks
    F4N

    hi..
      You can map in the following manner :
                 You creat One WC and define three operation against each Employee and define three activity and plan your rate in KP26 against each activity
                           WORK CENTRE     Machning
                               Activity
      OPRN -1(Emp-A)     A-1
      OPRN-2(Emp-B)     A-2
      OPRN-3(Emp-C)     A-3
         So from operation One system will take hr * rate to calculate cost of oprn of employee and so on....
    Please test and write back for any help.
    kkumar

  • Email Activity Default value - OWB 10.1

    Is there any way I can set a Specific value as defult value for Email Activity parameter for example SMTP_SERVER has 'LOCALHOST' as default value but I want to change it 'S012EX04' . so that I need not change the parameter value when I add an email activity in process flow.
    Thank you,

    Hi Peter
    Create a manage bean class with this methods:
    private oracle.jbo.domain.Date appCurrentDate;
    private Date dateDefaultFrom;
    private Date dateDefaultTo;
    private Date initDate() {
    java.util.Calendar c = Calendar.getInstance();
    java.util.Date utilDate = c.getTime();
    Timestamp st = new Timestamp(utilDate.getTime());
    return new Date(st);
    public Date getAppCurrentDate() {
    appCurrentDate = initDate();
    return appCurrentDate;
    public Date getDateDefaultFrom() {
    if(dateDefaultFrom== null) {
    dateDefaultFrom= initDate(0, 0, 0);
    return dateDefaultFrom;
    return dateDefaultFrom;
    public Date getDateDefaultTo() {
    if(dateDefaultTo== null) {
    dateDefaultTo= initDate(23, 59, 59);
    return dateDefaultTo;
    return dateDefaultTo;
    private Date initDate(int hora, int min, int seg) {
    java.util.Calendar c = Calendar.getInstance();
    c.set(Calendar.HOUR_OF_DAY, hora);
    c.set(Calendar.MINUTE, min);
    c.set(Calendar.SECOND, seg);
    java.util.Date utilDate = c.getTime();
    Timestamp st = new Timestamp(utilDate.getTime());
    return new Date(st);
    Then in the jsp/jspx page definition set the defaultValue to the selectInputDate var:
    DefaultValue="${myBeanClass.dateDefaultFrom.value}"
    And
    DefaultValue="${myBeanClass.dateDefaultTo.value}"
    Good Luck.

  • Email: activation.jar and applet alert

    I have written code for sending email. I works on one machine with out errror. When I moved it to my server it gave error for the activation.jar file. After copying this file, the code worked, but now I get applet Alert popup with message as "The applet is attempting to invoke the java/lang/System.getProperty() operation on user home, I need to click on Allow to get the code working. How do I disable this popup?
    What is the difference between settings on two machines. Is it some browser setting for applet or something else? I am using jre version 1.4.2_03 on Windows 2003 server.

    No, I am not using Java Applet. I have written simple Java application with main which I run from Command prompt
    I am not sure why the popup is displayed for Applet.
    Here is the code:
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class sendMail
    public static void main(String args[])
         //set this variable to be your SMTP host
         String mailHost = "192.24.235.20";
         //set this variable to be your desired email recipient
    String to = "testUser@mclaren";
    //these variables come from the mail form
    String from = "dctmUser@mclaren";
    String subject = "JavaTest";
    String body = "Test";
    if ((from != null) && (to != null) && (subject != null) && (body != null)) // we have mail to send
    try
    //Get system properties
    Properties props = System.getProperties();
    //Specify the desired SMTP server
    props.put("mail.smtp.host", mailHost);
    // create a new Session object
    Session session = Session.getInstance(props,null);
    // create a new MimeMessage object (using the Session created above)
    Message message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    message.setRecipients(Message.RecipientType.TO, new InternetAddress[] { new InternetAddress(to) });
    message.setSubject(subject);
    message.setContent(body, "text/plain");
    Transport.send(message);
    System.out.println("Message Sent");
    catch (Throwable t)
    System.out.println("Error: " + t.getMessage());
    I can't attach the screen shot of the Applet Alert window, but below is the text I get on the Applet Alert window
    First Window
    Title: -- Applet Alert --
    Text: The applet is attempting to invoke the java/lang/System.getProperty() operation on user home
    Buttons: Allow, Disallow, Stop Applet
    Second Window
    Title: -- Applet Alert --
    Text: The applet is attempting to perform read operation on file C:\Documents and Settings\Administrator\.mailcap
    Buttons: Allow, Disallow, Stop Applet
    Third Window
    Title: -- Applet Alert --
    Text: The applet is attempting to invoke the java/lang/System.getProperty() operation on user home
    Buttons: Allow, Disallow, Stop Applet
    Forth Window
    Title: -- Applet Alert --
    Text: The applet is attempting to perform read operation on file C:\j2sdk1.4.2_03\jre\lib\mailcap
    Buttons: Allow, Disallow, Stop Applet
    And following is the text output on the command prompt by the system:
    C:\java>java sendMail *(this is my code file)*
    Current policy properties
    thread.thread_num_limited: true
    file.write.state: disabled
    net.connect_ex_dom_list:
    mmc.sess_cab_act.block_unsigned: false
    mmc.sess_cab_act.action: validate
    mmc.sess_pe_act.block_blacklisted: false
    mmc.sess_pe_act.block_invalid: true
    jscan.sess_applet_act.stub_out_blocked_applet: true
    file.destructive.in_list:
    jscan.sess_applet_act.block_all: false
    file.write.in_list:
    file.nondestructive.in_list:
    window.num_limited: true
    file.read.state: disabled
    jscan.session.origin_uri: http://www.guj.com.br/posts/downloadAttach/330
    .java;jsessionid=76FF899CEACAB3CFFB48E3EEE4E0E89F
    file.nondestructive.state: disabled
    jscan.session.user_ipaddr: 10.122.3.106
    net.connect_other: false
    thread.thread_num_max: 8
    file.destructive.ex_list:
    file.nondestructive.ex_list:
    file.write.ex_list:
    jscan.sess_applet_act.sig_invalid: block
    file.read.in_list:
    mmc.sess_cab_act.block_invalid: true
    jscan.session.policyname: TU1DIERlZmF1bHQgUG9saWN5
    mmc.sess_pe_act.action: validate
    thread.threadgroup_create: false
    net.connect_in_dom_list:
    net.bind_enable: false
    jscan.sess_applet_act.sig_trusted: pass
    jscan.session.user_name: 10.122.3.106
    jscan.session.user_hostname:
    file.read.ex_list:
    jscan.sess_applet_act.sig_blacklisted: block
    jscan.session.daemon_protocol: http
    net.connect_src: true
    jscan.sess_applet_act.unsigned: instrument
    mmc.sess_pe_act.block_unsigned: false
    file.destructive.state: disabled
    mmc.sess_cab_act.block_blacklisted: true
    window.num_max: 5
    -->> returning Frame NULL
    BaseDialog: owner frame is a java.awt.Frame
    -->> returning Frame NULL
    BaseDialog: owner frame is a java.awt.Frame
    -->> returning Frame NULL
    BaseDialog: owner frame is a java.awt.Frame
    -->> returning Frame NULL
    BaseDialog: owner frame is a java.awt.Frame
    Message Sent *(This is the message I print from the code)*

  • Email Activity not sending emails for one domain - 10.1.3.4 MLR#10

    I have four domains in my BPELConsole. My evey BPEL process has CatchAll block and I'm sending email notification with fault details.
    Somehow, my BPEL processes from three domains are sending emails properly but myDomain4 is not sending emails even after successful execution of Email Activity.
    1) I have compared the Email code with processes in other domain and they are similar.
    2) orabpel.bpelnotification is not logging any error for this notification.
    3) I never received any email from this domain. There was no error in logs during domain creation.
    3) I am getting following in logs that sending email was successfully executed. It received Notification ID too
    <2010-09-22 07:24:44,530> <DEBUG> <myDomain4.collaxa.cube.services> <oracle.bpel.services.notification.queue.QueueConnectionPool::QueueConnectionPool> Fetched a queue connection from pool java:comp/env/jms/Queue/NotificationSenderQueueConnectionFactory, available connections=4
    <2010-09-22 07:24:44,534> <DEBUG> <myDomain4.collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.Publisher::init> Start of send(type,caller,message) type = email caller = BPEL
    <2010-09-22 07:24:44,534> <DEBUG> <myDomain4.collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.Publisher::init> Notification ID 12834c63e81c20d0:-71064af1:42b35e5dab4:-7283
    Please help/hint for any possible solution/debugging.

    sometimes i have seen emails not being sent when the async invokes takes more time than the overall completion.. And yes, we might still see successful log as emails sent. FYI - I am with 10.1.3.3.1 MLR #8.
    did you try just creating a email only process? switch off all other processes in that domain and initiate only this email process to see what happens..

  • Different alerts for email and sms messages for a contact with custom ring tone

    Hello,
    I have a Curve 8530 with OS 5.0.0.395.
    I have my default sound profile set up to play one type of alert sound when I receive and email message and another when I receive an SMS message (so I know the difference without looking at my phone). That works fine except for contacts that I also have a custom ring tone set up for. It seems that under the Custom Ring Tones/Alerts section of the contact there is only one entry for Messages and it applies to both email and SMS. If I have the contact's message alerts set to the alert I have for email, then their SMS messages play the same alert and I might think it's an email. Or if I have the messages alerts set to the SMS alert sound then their emails sound like SMS messages. Is there a way to have a custom ring tone set up for a contact but still allow their emails and SMS messgaes to follow the current sound profile's settings?
    Thanks.

    Hello,
    Have you had any luck resolving this issue. I had a 8230 and this was possible. But like you I can get the 8530 to work. If you found the solution, please let me know.

  • List of values apprear for email alert while scheduling the report

    List of values apprear for email alert while scheduling the report

    Hi,
    Can you please expand on your issue?
    Cheryl

  • Xcode ERROR: Failed to create an alert for ID "enabled" based on defaults: 1

    I installed OX 10.8 and xcode 4.4 and when I run any simple application for simulator it generated error in console:
    Xcode[7808]: ERROR: Failed to create an alert for ID "enabled" based on defaults: 1
    I reinstalled with clean xcode, but it did not help.  I see the building freeze when "coping 2 of 2 resources to product
    Also, xcode freezes when I jusy click on Mainstoryboard.storyboard file.
    I found a few posts with the same ERROR but no clear fix.  Any help will be appriciated.

    Hi, i had the same problem yesterday and after searching I found no solution to this error.
    Today i just burned the original Mountain Lion.dmg to a portable hard driver then reinstall the OS. And it seemed that the os had been restored and the error had been fixed.
    And, i guess there's some app that changes some documents of the system. So when you rewrite the os, u get the bug fixed.
    Good luck to you guys.

  • Email activity for soa and bam with pre-built virtualbox images

    Dear OTN,
    i am running pre built virtualbox image for soa and bam and want to run with email activity and configure the email inside the virtualbox can anyone help me with email activity in pre-built virtualbox image.
    Thanks & Regards,
    Pavan

    Hi there
    I have a Technote that shows how the information can be published from EBS to BAM. In addition you could create an end to end visibility across the products e.g. B2B - BPEL - EBS - Financials etc by raising the events to BAM .
    There is no out of the box dashboards available today. However, i have a number of customers who are doing this use case by themselves or through some SI/Oracle consulting.
    can we contact you offline to discuss your requirement?
    http://www.oracle.com/technology/products/integration/bam/11g/technotes11g/whitepaperBAM_E-BusinessSuiteIntegration.pdf
    There are certified adapters available for EBS to FM as well.
    Regards
    Payal
    Edited by: PayalS on May 21, 2010 4:25 PM

  • HT3702 I purchased a book called Activity-based costing for $3.99. I tried to open the file but it said my computer does not have IOS. I have a smartphone and I am unable to view the book. I am requesting since I am unable to use the book activity-base co

    I purchased a book called Activity-based costing for $3.99. I tried to open the file but it said my computer does not have IOS. I have a smartphone and I am unable to view the book. I am requesting since I am unable to use the book activity-base costing, a refund.
    Kevin

    I don't know what you are saying. How do I get my money refunded.

  • 8.0.2 - problem 1 - unable to scroll screen when the keyboard is present. Huge problem for emails and other cloud based providers that allow for data entry. We need a fix ASAP!

    8.0.2 - problem 1 - unable to scroll screen down or up when the keyboard is present. When typing text, I am unable to see the text I am writing due to this problem. Huge problem for emails and other cloud based providers that allow for data text entry. While the keyboard is present, I am unable to scroll down to see the text, the screen automatically scrolls back up to the top of the screen. We need a fix ASAP!

    Have you tried resetting your iPad? You will not lose any data. Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Need an example for work flow based on multistep activity

    hi,
    i need an example for work flow based on multistep activity for practicing.please do the need.
    thanks

    Hi,
    Workflow document information:
    Check these links.
    http://www.sapgenie.com/workflow/index.htm
    /people/ginger.gatling/blog/2005/12/01/link-workflow-business-objects-to-your-collaboration-tasks
    http://help.sap.com/saphelp_nw04/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw33/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw31/helpdata/en/8d/25f94b454311d189430000e829fbbd/content.htm
    http://www.sap-press.com/product.cfm?account=&product=H950
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    &**********Reward points if helpful**************&

  • Use principal name for email if blank in Active Directory

    Hi all,
    allthough I set "Use principal name for email if blank in Active Directory", Spiceworks asks me for an emailadress when i want to Login to the Portal with an AD user without emailadress.
    This topic first appeared in the Spiceworks Community

    Hi,
    What if we change the user name of user account, will it have impact on roaming profiles.
    Yes, it will affect roaming profiles. Please rename the roaming profile folder as the new user account name, in addition, change the profile path in ADUC.
    Here is an related article below for you:
    How to Rename a Windows 7 User Account and Related Profile Folder
    http://social.technet.microsoft.com/wiki/contents/articles/19834.how-to-rename-a-windows-7-user-account-and-related-profile-folder.aspx
    Best Regards,
    Amy

Maybe you are looking for

  • Another, my Safari won't open, post

    OK, so I did the routine update last week which included Safari. After that, Safari would not open any windows. The only time it did was when I went into Safari help and it tried to open the Apple support page, but then it promptly crashed. Since non

  • Crystal XI R2 exporting issues with double-byte character sets

    NOTE: I have also posted this in the Business Objects General section with no resolution, so I figured I would try this forum as well. We are using Crystal Reports XI Release 2 (version 11.5.0.313). We have an application that can be run using multip

  • Can't print from other network computers

    Windows 7 HP Photosmart C4650 Installed on main computer and everything is great! Added the printer to the other computers in the home network, 1 wired and 2 laptops wireless, all running Windows 7. went through the properties and shared the printer,

  • 3 click boxes one slide - each to jump to different slide - none working !

    Captivate v5.5 I am trying to set up Branching and have create one slide with 3 options. Each option has a click box and set to Jump to slide X, Y Z. Tried everything but none of them are working. Nothing happens. Could there be a conflict when there

  • HT1338 Sending iPhotos by Email

    I am receiving the following message when loading and sending pictures from iPhoto: "The email server didn't recognize your username/password combination." what do i need to do to resolve this issu