Manager review process usecase

Preethi26
Tera Contributor

Hi Team,

I need to come up with idea that, we have to notify User's Manager on the user roles and whether user needs the role or not.

Example: I have itil and few change relates roles and for every 6 months my manager must be informed on my roles and he should approve or reject it.

Likewise for all his reportees -Manager must be notified.

 

How i can built it. Kindly suggest.

2 REPLIES 2

Sonam_Tiwari
Kilo Sage

Hi @Preethi26 ,

 

You can create a report on User Roles and a 'Scheduled email of report' which triggers only on 6th month or 12th month. 

Put an additional filter as 'Manager is dynamic Me' in the report so that only his/her reportees will be included in the list. 

 

sonamtiwari_0-1701061544946.png

 

Scheduled email of report

 

sonamtiwari_1-1701061743923.png

Here, in the condition, you can check for 6th or 12th month as 6 monthly is not present OOB
sonamtiwari_2-1701061808012.png

Condition : 

var month_check= false;
var gdt = new GlideDateTime();
if (gdt.getMonthLocalTime() == 6 || gdt.getMonthLocalTime() == 12) {
    month_check= true;
}
month_check;
 
 
For approval part you can create required mail scripts with approve and reject buttons.
 
 
 
 
 



Consider indicating the response as helpful and marking it as correct if it meets your needs.

Thanks @Sonam_Tiwari  I will apply this idea and if some other comes up please let me know.