EP Notification Templates deployed

Problem is:  Missing Deployment Parameter Substitution (Public Substitution variables) in SDM tool.
Question:  Is there another substitution variable that EP uses to deploy it’s generic delivered templates to that we can also use for our application?
<b>BACKGROUND</b>
The substitution variable com.sap.cm.share is missing from the SDM repository in NW04s SP6.  In previous NW04s installations this variable was present and assigned a value with a relative path.  Our application built on NW04s uses this parameter to deploy application specific notification templates to the same location the Portal uses to store its templates (i.e. subscription).
A Consultant had this problem when he downloaded using the
SAP-Software Manager which provides a virtual DVD. 
Michael Beutelspacher wrote to me:
I removed the settings of this subst variable in December 2005. In 04s when deploying UT EP the following variables were set: com.sap.portal.deploy, com.sap.portal.deploy.pcd,
com.sap.portal.deploy.pcdcontent, com.sap.cm.share.
In 04s SR1 it's only com.sap.portal.deploy, com.sap.portal.deploy.pcd, com.sap.portal.deploy.pcdcontent.
- I believe it was communicated to us that this variable is obsolete with 04s.

Thank you for your response Kevin..
No, there is no specific reaseon for using custom notifications, I just could not undesrtand from where to start and tried the part I described before...
How I can use OOTB, could you guide a little? You do it from design console? I tried the following steps from there but email was not sent .
1. Defined IT Resource for smtp from sysadmin page
2. From design console I have checked if system property the Emai Server sees my definition
3.From design console I have searched for my process form, then opened Reconciliation Insert Received task.
4. Opened the Assignment tab, Left the rule as default, cheked Send Email, selected User as target type, typed the user login of the receiver for Email, selected my template as Email Name.
5. Opened notification type,typed C for status, selected my template for Email, checked User and Assignee
After all I have opened my resource object and Clicked the Create Reconciliation Profile button.
not : I have developed a custom task for trusted reconciliation.
Your help is strongly appreciated..
BR,
Aliye

Similar Messages

  • OIM 11.1.1.5 Notification Template

    I am trying to create a new Notification template by following the steps in the following thread http://fusionsecurity.blogspot.com/2011/07/oim-11g-notifications.html . Some fields I should be able to see in the admin console, but I don't. Like the 'Available Data' and 'Selected Data'. I am not able to see the drop down list for those 2 fields, which results into not letting me add tags to my notification body or subject.
    First I defined the new event metadata as follows:
    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <Events xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../metadata/NotificationEvent.xsd">
    3. <EventType name="Demo Notification Event">
    4. <StaticData>
    5. <Attribute DataType="X2-Entity" EntityName="User" Name="User Login"/>
    6. <Attribute DataType="91-Entity" EntityName="User Group" Name="User Grp"/>
    7. </StaticData>
    8. <Resolver class="com.oracle.demo.oim.notification.DemoNotificationEventResolver">
    9. <Param DataType="X2-Entity" EntityName="User" Name="usr_login"/>
    10. </Resolver>
    11. </EventType>
    12. </Events>
    Then I did import using weblogicImport.
    In the admin console, I am able to select the new 'Demo Notification Event'.. but the other dropdown fields, 'Available Data' and 'Selected Data', they are not available in the UI.
    Is there something wrong with this event definition??
    Thank you for your help...

    Thanks a lot for your quick reply.
    So I changed my Event metadata definition to match the EndDateNotifcation in particular the StaticData section.
    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <Events xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../metadata/NotificationEvent.xsd">
    3. <EventType name="Demo Notification Event">
    4. <StaticData>
    5. *<Attribute DataType="X2-Entity" EntityName="User" Name="Granted User"/>*
    7. </StaticData>
    8. <Resolver class="com.oracle.demo.oim.notification.DemoNotificationEventResolver">
    9. *<Param DataType="X2-Entity" EntityName="User" Name="usr_key"/>*
    10. </Resolver>
    11. </EventType>
    12. </Events>
    Did re-import. And now I am able to see those 2 dropdown fields. I am not sure how this fixed my view. When I tried to create a new template, I selected the 'End Date Notifcation Event', then the dopdown fields were visible. So I matched the static data section of my event with the EndDateNotification StaticData section.
    For now I am trying to create my own template just to understand the different components. My next step is to modify an existing notification based on the info you supplied in the link.
    Again thank you a lot for your help..

  • OIM 11g: Adding a new tag to notification template

    Hi:
    OIM 11g comes with some pre-defined notification templates, like 'Generated Password Template', 'Reset Password Template'.
    You can see those thru the admin console, System Management, Notifications.
    I would like to add a new Tag to one of those notifications, like 'Generated Password'. It currently includes the User Login and Password. I would like to include the User Name to the notification Body.
    Can I do this?? How can I accomplish this??
    I try to edit the template, and in the documentation, they mention the Event Name and Available variables. I don't see this 'Available Variables' to select from when I edit the notification template.
    I am using OIM 11g 11.1.1.5.
    Thank you for your help..

    Modify the OOTB notification Template for including a few extra attributes
    -Identify the template and the event type which you want to modify. For example let’s assume we will modify the OOTB ‘Request Creation’, the corresponding xml for this event type is in the following MDS path:
    \metadata\iam-features-request\notification\RequestCreationEvent.xml
    Note: The path as specified in the OIM11G documentation might be incorrect
    -Modify this xml to point to a custom resolver class as follows:
    <?xml version='1.0' encoding='UTF-8'?>
    <Events xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../notification/metadata/NotificationEvent.xsd">
    <EventType name="RequestCreation">
    <Resolver class="com.iam.notification.CustomNotificationResolver">
    <Param Name="Request" DataType="X2-Entity" EntityName="Request"/>
    </Resolver>
    </EventType>
    </Events>-Import the xml back to the MDS database
    -Create a jar (custom resolver class) and a plugin.xml, bundle them up as a zip and register the plug-in using ‘ant/API’s’ as you want
    -Modify the OOTB notification templates as required
    -Send email to verify if your changes are being reflected
    You can create your own customized templates based on the OOTB one but the ‘Resolver Class’ would not be able to pick up this new template because the only purpose of the resolver class is to override a couple of methods (‘getAvailableData’ & ‘getReplacedData’), so that you can add some extra attributes to be read in your template, but the ‘Template Name’ remains the same as it is hard-coded.
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    import oracle.iam.notification.impl.NotificationEventResolver;
    import oracle.iam.notification.vo.NotificationAttribute;
    public class CustomNotificationResolver implements NotificationEventResolver {
         public List<NotificationAttribute> getAvailableData(String eventType, Map<String, Object> params) throws Exception {
              return null;
         public HashMap<String, Object> getReplacedData(String eventType, Map<String, Object> params) throws Exception {
              HashMap<String, Object> resolvedData = new HashMap<String, Object>();
             resolvedData.put("requestId", params.get("RequestId"));
             resolvedData.put("requestType", params.get("RequestType"));
             resolvedData.put("userId", params.get("UserId"));
             resolvedData.put("userName", params.get("Name"));
             resolvedData.put("baseUrl", params.get("BaseURL"));
             resolvedData.put("myCustomField1", "myCustomField1");
             resolvedData.put("myCustomField2", "myCustomField2");
             resolvedData.put("myCustomField3", "myCustomField3");
              return resolvedData;
    }Credits to Sunny for coming up with the solution. Since he seems busy, I took the liberty of posting his solution here.
    HTH,
    BB

  • Can I insert the name poperty of the RequestedByUser related object of the parent Change Request workitem in a review activity email notification template?

    I am working on a SCSM change control workflow driven by email. 
    A lot of my work is based on the information found in this post:
    http://blogs.technet.com/b/servicemanager/archive/2012/04/03/using-data-properties-from-the-parent-work-items-in-activity-email-templates.aspx#pi158453=4
    This is an excellent post to which my Internet searches continually return. The workflow is about 90% complete. 
    My question is can I insert the properties of a related object of the parent workitem in a workflow email notification? 
    For example, I want to include the name property of the RequestedByUser related object of the parent workitem object in a review activity notification.

    Thank you for your reply.  I have confirmed my template is using a projection that includes the parent workitem and requested by user.  Where I am having trouble is the notification template syntax used to call the properties of the related
    object of the parent workitem.  The picker in the GUI won't show that related object, so I have no example to follow.  I hope this reply makes sense!

  • Sending email to user using the notification template in OIM 11g

    Hi all
    I have created a Notification Template using web console in OIM 11g.
    Iam able to access the contents from notification template in my java code.
    But iam not able to find the correct api's to send email to user using the notification template
    (like tcEmailNotificationUtil using this class we can connect to email template created in design console and creating IT resourse we can send email to user using the method sendEmail).
    Waiting for your help and pointers
    Thanks and Regards
    Bipin patil

    Thanks GP!.
    But i have the same doubt here.
    "The Notification Event is defined through a XML file that must be loaded into MDS database." - in which path and in what name it should be.
    Because under /metadata/iam-features-notification, i couldnt see any event Xml present. I thought atleast we could see the existing OOB notification template's event xml files.
    Please let me know if you are aware.
    Thanks,
    Amudha

  • Notification Template  and send Email in oim 11g

    Hi All
    I need to send an email(html) format to users.I have created the a notificationtemplate through webconsole.
    I am intrested to know are there any api's available in 11 g to access this particular notification template in my java code and send email to a user using this template.
    iam referring to the class <oracle.iam.notification.vo.NotificationTemplate> and <Thor.API.OperationsInterface tcEmailOperationsIntf> classes but iam unable to access the notifcation template and send email.
    Edited by: Bipin Patil on Jul 1, 2011 12:34 AM

    Hi Rajiv Dewan
    Your link was helpful iam able to connect the the notification template.
    Now iam able to get the Template name,Subject,ID,Locale etc.
    I have one small question how to get the message from the template using this api,
    I referred the NotificationEvent,NotificationTemplate api's still iam not able to get message from my template and set message in my template.
    Is there any other API's i need to explore to get message from notification template.
    Thanks and Regards
    Bipin patill
    Edited by: Bipin Patil on Jul 1, 2011 5:29 AM

  • Add User Input in Email Notification Template

    Hi all, I'm new to SM and in need of anyone's assistance. I've created a service request and in the template under User Input, I have it requesting the "New Users Name" and the "Start or Termination Date". I'd like to add these 2
    inputs into my Email Notification Template. How can this be done? I've been able to insert the Title, Requestor, Alternative Number, and Description in the Template Design but can't seem to find where I can add these Inputs. Any help would be
    appreciated. Thanks in advance.

    Hi,
    Please refer to the link below:
    E-mail user from Service Manager Console
    http://blogs.technet.com/b/servicemanager/archive/2010/02/02/e-mail-user-from-service-manager-console.aspx
    Moreover, the video  [09:00-11:00 min] might be help you:
    Demo: Automating Service Request Fulfillment from the SCSM Service Catalog with Orchestrator
    http://blogs.technet.com/b/servicemanager/archive/2011/11/09/demo-automating-service-request-fulfillment-from-the-scsm-service-catalog-with-orchestrator.aspx
    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]

  • Prime Infrastructure 2.1. Configuration template deploy problem.

    Hello! I have a problem with the CLI template deployment on Cisco Prime. PI version is 2.1.
    There is the following template, which contains:
    logging on
    logging 10.10.10.10
    When I try to deploy it on the router 1800 IOS Version 12.3(14)T7 all is going well and the report I get the following:
    Device
    Status
    Transcript
    10.5.5.1
    Success
    configlet: logging on logging 10.10.10.10 response: terminal width 0 config t logging on logging 10.10.10.10
    But, when I try to deploy the same template on the router 3825 IOS Version 15.1(4)M5, the system issues the following error:
    Device
    Status
    Transcript
    10.5.5.2
    Failed
    Error : Exception while sending interactive commands to device, Expect timeout: Failed to match expected device output due to Expect timeout current timeout 60000. Current output : Enter configuration commands, one per line. End with CNTL/Z. MAIN_VOICE_gate(config)# Current expects : (MAIN_VOICE_gate:579|MAIN_VOICE_gate:579)\([^\)]+\)#\s*\z MAIN_VOICE_gate:579#
    In what may be the reason that Prime cannot deploy the configuration on IOS version 15.1?
    Thank you!

    Good day! Yes, maybe we have the same BUG
    https://tools.cisco.com/bugsearch/bug/CSCub57283
    but in the status written that it is Fixed and applies to releases 1.2 and 2.0, but we used version 2.1.

  • Embedding Image in SCSM notification template instead of refering the image

    Hi All,
    I have an image which is to displayed in the email , I used the HTML img tag and referenced the shared location of the image and it is working fine ,
    But can we embed the image directly in the email , using the
    "data:image/png;base64/"" in SCSM Notification templates..
    I require this because , the image is not displayed in gmail If we use the below code
    <img src="share path of image">
    Thanks
    Kalai

    Hi,
    Based on my research, to add images to an email, those images should be hosted on some web server on your
    intranet.  If they are on the Internet you’ll get the little red X in your Outlook (or other email client) for privacy/security reasons. 
    Add a line of HTML to your template that looks like this:
    <img src=”http://yourserver/SomeImageFile.jpg”/>  where you put the URL to your file in the src attribute
    More details:
    http://blogs.technet.com/b/servicemanager/archive/2009/09/28/creating-notification-templates-in-system-center-service-manager.aspx
    In addition, here is a similar thread, please also refer to it:
    Add logo to email template
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/3f006db7-b71a-4a56-b62d-9825eec95c77/add-logo-to-email-template
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Email notification template - variable list

    Does anybody have a complete list of the variables that can be used within a notification template ? I cannot find this documented anywhere.
    What I have so far is:
    $EnvelopeSender
    $EnvelopeRecipients
    $Header['From']
    $Header['To']
    $Allheaders
    I would like in particular variables for email time sent or received, and also variable for attachment filename and file size.

    Does anybody have a complete list of the variables that can be used within a notification template ? I cannot find this documented anywhere.
    What I have so far is:
    $EnvelopeSender
    $EnvelopeRecipients
    $Header['From']
    $Header['To']
    $Allheaders
    I would like in particular variables for email time sent or received, and also variable for attachment filename and file size.
    take a look ar my map: http://www.ironport-infos.com/ironport-cli.pdf
    All variables are listed there.
    regards
    Uwe Sommer

  • 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.

  • Adding CC list for OOB notification template

    We have the OOB generate password notification template which gets triggered to end user when user is created. Can we add some one in the CC list to this mail so that the mail is sent to CC list also..??
    One approach would be creating a post create event handler and in that code we can send the email to cc list. Is there any approach apart from this..?

    We have the OOB generate password notification template which gets triggered to end user when user is created. Can we add some one in the CC list to this mail so that the mail is sent to CC list also..??
    One approach would be creating a post create event handler and in that code we can send the email to cc list. Is there any approach apart from this..?

  • Updates to notification templates are transported?

    Hi Experts,
    System: SAP IDM 7.20.9
    Database: SQL Server 2012
    As per my understanding, notification templates are included in transport. Correct me if I am wrong. I see my new notifications are transported and created in QA IDM. But the updates in existing templates are not transported to QA! Anyone else noticed this?
    Kind regards,
    Jaisuryan

    Hello Jaisuryan,
    there is export and import job for the templates. You have to transport them manually.
    I dont think this is wrong though as you might have other text on dev, qa and prod.
    Regards
    Norman

  • Notification Template Design Documentation?

    Hello--
    Is there any documentation for the substitution string syntax in notification templates? The reason I ask is I am not seeing the fields I would like to display in the template (such as choosing the Affected User's email address).
    Also, when I add a field I see $Context/Property[Type='CustomSystem_WorkItem_Library!System.WorkItem']/Id$ instead of $Context/Property[Type='WorkItem!System.WorkItem']/Id$
    Can anyone explain the CustomSystem_WorkItem_Library class instead of the standard WorkItem library?
    Thanks,
    Matt

    take a look at the top of your MP, you should see a reference block that looks something like this:
    <Reference Alias="CustomSystem_WorkItem_Library">
    <ID>System.WorkItem.Library</ID>
    <Version>7.5.1561.0</Version>
    <PublicKeyToken>31bf3856ad364e35</PublicKeyToken>
    </Reference>
    if the Alias property was "WorkItem", then your second reference would be valid.

  • Disable Notification template in oim 11g

    In OIM 11g there are a set of notifications under system management(advanced tab in admin console). How do you disable an email notification without deleting the email template?
    Thanks.

    http://docs.oracle.com/cd/E21764_01/doc.1111/e14308/system_props.htm#BACGIDCH
    Property: Recon.SEND_NOTIFICATION
    Re: [OIM 11g] OOTB Email Notification
    -Bikash

Maybe you are looking for

  • How do I move my us ipod to canada?

    One of the members of our iTunes account will be moving to Canada.  We have had the experience of relatives buying iTunes gift cards for our children and having them not work on our US iTunes account.  Can she still sync her US iPod in Canada?  Does

  • CASE.. WHEN statement.. Query not working

    Hi, Can someone help me to correct the following code: select * from( select col1,col2, CASE WHEN Percentage >=75 THEN 'red' ELSE 'green' end as color from (select ROUND(((COUNT(CASE WHEN class ='A' THEN 1 END)/ nullif((SUM(CASE WHEN class ='B' THEN

  • WORK CENTER  master data n corresponding Bapi

    Hi........Gurus, Guys Please provide me hep for creating WORK CENTER master data using Bapi if u r providing exact Bapi name for creating  WORK CENTER master data or please provide step by step documentation or program logic that would be heplful to

  • I am using Aperture 2.1.4 on my iMac OS 10.8.5

    When I try to back up new information from Aperture, I get the message that the vault is not connected, and to re-connect the vault.  The vault IS connected because the pictures are all there.  I have tried ejected the disc that Aperture is backed up

  • Can somebody help me find the FCE 4.0.1 upgrade?

    I'm about to  install Final Cut Express 4 in a Mac Book Pro running OS 10.8.2. Based on what I've read, it looks like I'll have to upgrade the software to 4.0.1 before Final Cut Express will run on my computer. Does anyone know if it's still availabl