ServiceNow ServiceDesk Integration

Hi Folks,

Looking for some help.

In ServiceNow ServiceDesk integration, how to modify request description specifically for Add or Remove Role operation.

OOTB integration generates ServiceNow ticket with description as follows:

  • Add Role:- For <email_id> in application <Source_Name> Add Role <Role_Name>
  • Remove Role:- For <email_id> in application <Source_Name> Remove Role <Role_Name>

My requirement is:-

  • Add Role:- This request is raised via SailPoint Request Center to Add role For <email_id> in application <Source_Name>
  • Remove Role:- This request is raised via SailPoint Certification Campaign to Remove role For <email_id> in application <Source_Name>

Thanks in advance!!!

Hello @maheshtare, So first thing you need is to modify the SDIM before provisioning rule, so that you can get the email id of the user in the Plan.

Next, in order to dynamically update the Add role or remove role, you can use
velocity scripting.

A sample snippet of how you can achieve that is attached below.

#if($request.items)#foreach($item in $request.items)#if($item.Operation == "Add")Add Role:- This request is raised via SailPoint Request Center to Add role For <email_id> in application <request.resource>#{else}Remove Role:- This request is raised via SailPoint Certification Campaign to Remove role For <email_id> in application <request.resource>#end#end#end

Note: Update the email based on your attribute.

Hope this helps.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.