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