How to use assignement rule in custom table?

Akshay Pundeer
Tera Contributor

Whenever a user selects Category as ServiceNow and subcategory as Fundamentals, the Assignment group should be automatically set to custom group created in Assignment 1 and assigned to should be Group Manager else another other selection should clear the value of group field.

6 REPLIES 6

Aman Kumar S
Kilo Patron

Is your custom table task extended table?

If not, you will not be able to use assignment rule functionality, you will have to write everything down to your client script to set this up.

Best Regards
Aman Kumar

Can you please help me with that?

My table is not extended table

You can follow below post:

Assignment group population based on subcategory

Best Regards
Aman Kumar

Harish KM
Kilo Patron
Kilo Patron

Hi if your table is not extended. You can go for BR insert or update BR

if(current.category == 'servicenow' && current.subcategory == 'Fundamentals')

{

current.assignment_group = "groupsysID";

current.assigned_to = current.assignment_group.manager;

}

Regards
Harish