Customizing / Creating Email Notifications

Ok, so I have asked this question already in an earlier post. About creating/formulating E-mail Notifications, based on Information gathered/input in a Customized User Form.
Here is a copy of my previous posting
=============================================================================================================================================
I am in the process of customizing User Forms, and I would like to implement a trigger (if that's the right name for it) in the XML script, which will execute a Rule (or some code) that will result in an email being sent.
For example, the following simple script (selection from a dropdown menu) :
*<Field name='orderlunch'>*
*<Display class='Select' action='true'>*
*<Property name='title' value='Order Lunch'/>*
*<Property name='allowedValues'>*
*<List>*
*<String>- Please Select -</String>*
*<String>Yes</String>*
*<String>No</String>*
*</List>*
*</Property>*
*</Display>*
*</Field>*
A small XML code, to indicate an order for lunch.
naturally, if the user selects "No", then nothing happens.
But, if he selects "Yes", then I would like to automatically send an Email Notification to the appropriate person, notifying him that lunch has been ordered. (of course, I would need to indicate such things as WHO ordered the lunch, WHEN, etc, etc. But, I will get into that later)
Does anyone know how this can be done?
*(a) Could I insert the trigger/condition/whatever right into the main XML script itself?*
Or
*(b) should I write a code which will call on/invoke a separate Rule, which will subsequently send the email?*
If (b) is the right answer, then how would I go about creating such a Rule, and linking it to the main XML script?
================================================================================================================================================================
Apparently, my question is too difficult, since there were only a couple of replies, and nobody seemed to have a solution to the problem.
So, I'll try to ask something much simpler : Is there ANY way to customize/create custom "E-mail Notifications"  in IDM ?

>
You should have read my answer to your previous post. Several people answered you already.
*(a) Could I insert the trigger/condition/whatever right into the main XML script itself?*Yes. You need to call the rule. I'd do it on the validation stage but there's multiple ways of doing it and it really depends on your specific needs.
*(b) should I write a code which will call on/invoke a separate Rule, which will subsequently send the email?*
If (b) is the right answer, then how would I go about creating such a Rule, and linking it to the main XML script? See my previous post. It shows you how to call the rule. Defining a rule is relatively simple and is pretty well documented and there are existing examples in a default install of IDM that you can check-out and use as reference templates.
Apparently, my question is too difficult, since there were only a couple of replies, and nobody seemed to have a solution to the problem.The question isn't difficult. It's just very broad. Lets see what you're asking:
- rule definition
- rule execution
- an explanation of the various stages of form processing
- an explanation of the various stages of workflow processing
- how to call sub-tasks
- how to customize sub-tasks
- how to define email templates
There's a lot there. You need to take some of what has been told to you in the forum and use that to guide your search in the existing documentation.
>
So, I'll try to ask something much simpler : Is there ANY way to customize/create custom "E-mail Notifications"  in IDM ?
The answer is yes, but you're on your own in determining how to do that. You've become quite the jerk in this forum. Read the docs, go on some training if you can afford it. What you need to know about how to implement rules, email templates and custom notifications is all there.

Similar Messages

  • Is it possible to create a custom E-mail Notification?

    Dear all,
    We have a requirement where the customer would like an additional email notification in the RFx process which is not available in the E-Sourcing system.
    What they want to do is send an email to Vendors who did not get awarded in the RFx Process and let them know.
    Is it possible to create a custom email notification in any way, perhaps using the javax.mail classes?
    import javax.mail.*;
    import javax.mail.internet.*;
    If anyone has prior experience with this, please let me know. I would appreciate pointers on this.
    Thanks & Regards,
    Reshma

    Hi Thashin,
    I understand you have done custom jar email notification for Transnet. I need to do this now for another component, Task Escalation. please contact me regarding correct way to do this. I have developed the custom java code to access Task info. What I need to know is that, does e-sourcing use its own queing mechanism to send out emails, if so what packages in IAPI does this use, or does it use normal java mail api to send out mails?
    Assistance will be highly appreciated.
    Thanks
    Tebogo

  • Email Notification 11g - Event Metadata xml issue

    Hi,
    I am creating Email Notification for 11g .. For that I have created Event Metadata xml, one java class and pluggin.xml.
    the problem I am facing, I am not able to upload the Event Metadata xml (ISUDnotsigned.xml) using weblogicImportMetadata.sh
    My Event Metadata xml is as below:
    <?xml version="1.0" encoding="UTF-8"?>
    <Events xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../metadata/NotificationEvent.xsd">
    <EventType name="ISUD Not Signed">
    <StaticData>
    <Attribute DataType="X2-Entity" EntityName="User" Name="User Login"/>
    <Attribute DataType="91-Entity" EntityName="User Group" Name="User Grp"/>
    </StaticData>
    <Resolver class="com.hssa.oim.emailNotification.ISUDNotSignedNotificationEventResolver">
    <Param DataType="X2-Entity" EntityName="User" Name="usr_login"/>
    </Resolver>
    </EventType>
    </Events>
    the weblogic properties file is as below:
    application_name=OIMMetadata
    metadata_from_loc=/iam/email
    metadata_to_loc=
    metadata_files=/metadata/ISUDnotsigned.xml
    when I am running the weblogicImportMetadata.sh it is saying Transfer complete. but its not reflecting in OIM admin console.. Kindly suggest
    Edited by: boyinabox on Feb 28, 2013 4:50 AM

    it doesn't work because notifications are set from user1 account so USER# is still 1 even when I removed record first.
    This is my aproach based on Ask Tom: On Becoming Others, Limits, and Restoration
    >sqlplus user1
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    SQL> grant execute on sys.dbms_aq to user1;
    Grant succeeded.
    SQL> alter user user3 grant connect through user1;
    User altered.
    SQL> connect user1[user3]
    Enter password:
    Connected.
    SQL> create or replace procedure sched_not_add_q as
      2    reginfo1    sys.aq$_reg_info;
      3    reginfolist sys.aq$_reg_info_list;
      4  begin
      5    reginfo1    := sys.aq$_reg_info('SYS.SCHEDULER$_EVENT_QUEUE:SCHED$_AGT2$_3',
      6                                    1,
      7                                    'plsql://SYS.SCHEDULER$_JOB_EVENT_HANDLER',
      8                                    null);
      9    reginfolist := sys.aq$_reg_info_list(reginfo1);
    10    dbms_aq.register(reginfolist, 1);
    11  end;
    12  /
    Procedure created.
    SQL> exec sched_not_add_q;
    PL/SQL procedure successfully completed.
    SQL> drop procedure sched_not_add_q;
    Procedure dropped.
    SQL> connect user1
    Connected.
    SQL> revoke execute on sys.dbms_aq from user3;
    Revoke succeeded.
    SQL> alter user user3 revoke connect through user1;
    User altered.
    SQL> exit;
    >
    So it works now.

  • Issue Management Email Notifications

    Has anyone had experience in creating email notifications for Issue Management? Specifically I am trying to send an email to the assigned party once the issue has been assigned to them.

    I set up a notification to a fixed mailbox by modifying the SLFI action profile as a test. The message is generated but the email is not sent.
    Have you had any experience setting up notifications from Issue Management?
    It seems that this is not supported at this time.

  • OIM Email Notification issue with custom E-mail user attribute

    Hi All,
    We have a requirement where we need to send e-mail notification programmatically after a OIM account is created for the user through trusted reconciliation. Post process event handler is being used for this. We have created our own Custom Notification Event, created new Notification Template of the type Custom Notification Event.
    For storing e-mail address for every OIM user we are using custom attribute "Email Home". Now the problem is NotificationService is by default picking e-mail address from OTB attribute "Email". Is there a simple way to pick the E-mail address from custom attribute? Below is sample code that we are working on. Any ideas on this would be very helpful.
    NotificationService notService = Platform.getService(NotificationService.class);
    NotificationEvent event = new NotificationEvent();
    String[] receiverUserIds= {"<<*Comma separated list of OIM USER IDs to whom notification is to be sent*>>" }; sets the email address in the OTB "Email" attribute as receivers
    LOGGER.info("Receiver User ID set");
    event.setUserIds(receiverUserIds);
    event.setTemplateName(poTemplateName);
    event.setSender("<<*OIM User ID of sender*>>"); /// sets the email address in the OTB "Email" attribute as sender
    HashMap<String, Object> templateParams = new HashMap<String, Object>();
    templateParams.put("usr_login",poUserId);
    LOGGER.info("template Param set" templateParams);+
    event.setParams(templateParams);
    notService.notify(event);
    Thanks

    Hi,
    any updates on this issue?
    is there any possibility to resend the old notifications manually?
    Thanks,
    Prasad

  • Email notification mail not working in case of customer repository

    Hi Experts,
    We have the system MDM 7.1 SP06, we are not able to get the email notification for customer repository. For other repositories like material & vendor mails are working fine. I Have checked the following steps.
    1) Added notification step to the workflow between processes.
    2) Verified the email addresses of the workflow owner and the receiver of the notification.
    3) Verified that the mds.ini has the "MailServer=" setup to the right smtp.
    I have check in workflow history, it is showing notify step but not showing details of mail like send to, mail body. While in case of material repository, it was showing complete details like send to, mail body & all.
    Previously mails for customers were working fine. Kindly suggest the solution.
    Regards,
    Gaurang

    Hi Gaurang,
    Are the time parameter same for all the repositories?
    Create a dummy user and dummy workflow,and try to send mail from that workflow.
    If this works with some id then check with the Admin id which you are using.
    This way you can eliminate the possibility of id not working.Also it will tell you that user is corrupt or not.
    Check for log and traces,kindly provide with the post here.
    Thanks,
    Ravi

  • Customizing Email Notifications

    How can you customize the email notification received when a user completes and submits a form. At the moment I see a few things that could be improved and so these are more feature requests and suggestions based on the many common things I have seen posted as well as items that I feel would improve the current product to be really outstanding in the marketplace.
    Adobe branding in headers and footers should be removable on paid subscription accounts.
    Responses should also include section headings as laid out in the actual form.
    Have the option to include a PDF version of the completed form included in the email notification.
    Have the option for part of the subject line to be based on a form response field selected.
    Have the option to embed the completed form as designed in the email notification.
    There should be an option to allow you to create a custom layout for the email notification rather then just a table list.
    I would be curious to hear what other users would want to see as well.
    Thanks,

    Yes great points :-)
    I would also add
    7. Make it possible to enter an E-Mail Adress as CC. (So that the person who fills the form can optionally get a copy of the entered formular.)
    Most important for me is 3.)
    3. Have the option to include a PDF version of the completed form included in the email notification. (as attachement ...)

  • Steps to create Service Notification in Customer Service Module

    Hi,
    Can anyone let me know the steps involved and the process to create Service Notification in Customer Service Module.
    Regards,
    Ram

    Hello SAP Guru's,
    I am Shankar from chennai.
    At present i have assigned to do the Customer Service process for our project.
    I had tried the BPP method for doing it.
    When i tried the Depot repair process from BPP i got error during billing process.
    Can any one guide me with the step by steps procedure to do the senerio.
    i searched the web for the process. but i couldnt able to find it.
    If any one has the complete step by step procedure to do the process pls help me.
    my id is ponshankar gmail com.
    Thanks in advance
    Warm regards,
    Shankar

  • Not able to send email notification to adhoc role created

    Hi All,
    Have a requirement to send email notification to multiple emails from workflow. As per the given requirements have derived the emails and concatenated with comma (,) and passed to the API createadhocrole to create.
    lRoleEmail has value as [email protected],[email protected]
    wf_directory.CreateAdHocRole(role_name => lRoleName,
    role_display_name => lDisplayName,
    language => 'AMERICAN',
    territory => 'AMERICA',
    role_description => NULL,
    notification_preference => 'MAILHTML',
    role_users => NULL,
    email_address => lRoleEmail);
    A new role is getting created but there is no email sent.
    Created a new attribute of role type and in the notification function have assigned the same as the performer.
    The NOTIFICATION_PREFERENCE in WF_ROLES table is DISABLED for the new role.
    If anyone came across same issue please let me know to to achieve this.
    Thanks in advance.
    MJ

    You need to provide the correct email address but not the dummy address like '[email protected],[email protected]'. One more thing you can give only email address per one user or role. You cannot assign multiple addresses, if you do also it treats the entire string as one email address only.
    After changing the email address, modify the notification preference to MAIL* and then send a notification.

  • How to create a Email Notification in SRM5.0 ?

    Dear SRM Experts,
    This is my requirement:
    Requirement: If Delivery date for a PO is approaching, system should send notification E-mails to approvers and PO initiators. Program execution and dates for notifications will be affiliate specific.
    Each affiliate should be able to define text for E-mail notification and number of days before delivery date when reminder should be sent.
    We need to send an email notification if Delivery date is approaching that is 3 days before delivery date,if no action is taken then
    PO needs to be locked .
    Kindly help  me regading the requirement.
    Thanks&Regards,
    Chitra

    Chitra,
    you can have one record per affiliate in the custom table with Standard Text name and no of days and in your program based on the text name and no of days you should able to send notification also for locking the PO from approval the work item can be deleted(by program) so that the approver can no longer approve the PO.
    Thanks,
    Suresh

  • Email notification for user created through reconciliation in OIM

    Hi..
    I have done the following configurations for email notification when user is created through reconciliation in OIM
    Configuring IT Resource     
    Name     Email Server
         Type      Mail Server
         Authentication     FALSE
         Server Name     *.*.*.*
         Username     
         Password     
    Creating email definition with the following values     
    Name     Create User Email Notification
         Type     Provisioning Related
         Language     en
         Region     US
         Object Name     Xellerate User
         Process name     Xellerate User
         From     User
         User Login     Xelsysadm
         Subject      User Created
    Add Email notification in a new process task with name Notify     
    Process definition     Xellerate User
         Task     Notify
         Disable Manual Insert     Enable
         Required for Completion     Enable
         Allow Cancellation while Pending     Enable
         Handler Name     tcComplete Task
         Assignment Rule     Default
         Target Type     User
         User     Xelsysadm
         Email name     Create User Email Notification
         Send Email     Enable
         Notification Assignee     Enable
         Email      Create User Email Notification
         Status     Completed
    Xelsysadm has a valid email id. Now when I am reconciling any user, two mail notifications are being sent. Not able to know from where these two notifications are being triggered.
    Am i suppose to make any changes in the configurations?
    Edited by: Amruta Agarwal on Sep 28, 2011 4:21 AM

    Sorry re-read your issue again. I believe there are two notifications because you have added your notify task in the process definition and OIM OOTB sends a notification when a user is recon'd. Thus remove your task or disable the OOTB notification. The property is Recon.SEND_NOTIFICATION
    HTH,
    BB
    Edited by: bbagaria on Oct 7, 2011 9:13 AM

  • Sending email after creating the notification automatically

    Dear Experts,
    The requirement is that when the notification is created and saved, at that moment email should be triggered automatically to specific mail ids. And after closing the notification again email should be triggered.
    Kindly help in this regard.
    Best regards,
    Tushar

    For Creating Notification
    Goto SPRO
    IMG-PMCS-Maintenance and Service Processing-Maintenance and Service Notifications-Notification Processing-Set wrokflow for Maintenance Notifications.
    click on Assign Agents it takes to a new screen,
    their  open Process Sample maintenance notification
    select PMtask: Edit newly-created notification
    then click on create agent assignment (press F5) on the top left corner of the screen. it pos up a new window select user and mention the concerned user there.
    Come back from that screen, click on Activate Event Linking
    open WS20000317
    for task BUS2038 CREATED  click on the details button and tick both the options Event Linkage activated and Enable usage of event que
    press enter, then you can observe the Green indicator Activated.
    Now create a Notification, it will trigger a mail in SAP to the user u assigned. That user can check SAP mail box (T code SBWP, Inbox - workflow).

  • Custom email notification

    Hi All,
    I have written a component which will search KM repository and find out list of documents under Timebasedpublishing enabled folder which is going to expire in another one week of time with the owner and expire date details.
    Now I need to write a custom component to send a mail to owner of each document with the expiry date details.
    Could anyone help me out with same code for sending the email notification for the above requirement.
    Thanks in advance,
    Siva

    Hi Siva,
    you can use JavaMail natively or use some of the mail services implemented within KM (using for example configured mail servers and so on).
    Most of the possibilities are discussed several times on SDN, just three examples (with further links) to get some overview:
    https://www.sdn.sap.com/irj/sdn/thread?threadID=263553
    https://forums.sdn.sap.com/thread.jspa?threadID=98781
    https://forums.sdn.sap.com/thread.jspa?messageID=264422
    Hope it helps
    Detlev

  • How do I do this. Users without FormsCentral accounts or accounts with unverified email addresses cannot receive email notifications. No notifications will be sent until the accounts are created and verified.

    How do I do this. Users without FormsCentral accounts or accounts with unverified email addresses cannot receive email notifications. No notifications will be sent until the accounts are created and verified.

    Moving this discussion to the FormsCentral forum.

  • Customer create notification - sd

    dear wf experts,
    sd std workflow - customer create notification is activated in OOCU, but we find in our system
    ecc 5, that there is no activate event linking for std workflow WS20000084 - customer create notification
    also all sd std workflows are do not have the above.
    pl note that we are using mm std workflows.
    pl help, how to activate the sd wf.
    thanx in advance
    regards
    srihari

    Hi,
    Check whether you can trigger by assigning the workflow no. in the SPRO settings instead of triggering by the Event.
    Help [link|http://help.sap.com/saphelp_srm30/helpdata/en/ca/c668a4e4ee11d1a53a0060087a79ea/content.htm] related to this workflow.
    Regards,
    Surjith

Maybe you are looking for

  • Can no longer sort RAW with JPG files together by capture date.

    Suddenly I can no longer sort  JPG and RAW files together by capture date. I have two Canon SLR's shooting in RAW and one Canon point an shoot shooting in JPG and want to collate the photos in LR4, which I was able to do up to now. I cannot find out

  • Zen Vision M : 60GB sound issue solv

    Hello, yesterday, i?we bought a ZEN Vision M:60GB player and a after playing few tracks, i was looking for a reason of sound hissing a scratching. In this forum i found an answer why,but i cannot find if it was patched or repaired in next firmware Fo

  • Special Characters in iTunes Search

    If I'm searching for "González" and I enter "Gonzalez" in the search box, iTunes used to return hits for "González". Now, I have to enter "González" specifically- "Gonzalez" returns no results. Is there a way to get iTunes to treat accented character

  • Motion Paths won't display the whole path!

    You see the sun in the middle of the frame, the path is only shown for about 30 sec of movement but the path actually goes from bottom right all the way to top left over 3 min. It is impossible to adjust the curve of the path with this limitation, do

  • How to create Entry

    Hi   In one of our client which employees salary is taxable , they are issued separate Cheques . They donot have Salary Account How to handle this scenario . Do we need to create these employees as separate g/l accounts or some other procedure can be