How to redirect to standard change catalog when creating Request from Incident form

fibssy
Tera Guru

Hi community friends, 

I need your help.

In ServiceNow there is a service catalog called : Standard Change Catalog and I want to direct users with the ITIL role to this catalog when they create a request from the incident form.

find_real_file.png

find_real_file.png

When I Click on Create Request from the incident form I'm not getting redirected to the standard change catalog but to an empty service catalog (see pictures below). How Can I redirect users to the standard change catalog? Thank you in advance.

 

Fibssy

find_real_file.png

 

find_real_file.png

1 ACCEPTED SOLUTION

Thank you Rajesh. This works. 

View solution in original post

4 REPLIES 4

Rajesh M1
Giga Guru

Hi

OOB there is UI action "Create Standard Change".

 

If not available use below code in UI action

 

var url = "com.glideapp.servicecatalog_category_view.do?v=1&sysparm_parent=b0fdfb01932002009ca87a75e57ffbe9&sysparm_cartless=true&sysparm_processing_hint=updateIncFieldWithStdChange:";

url += current.sys_id;

action.setRedirectURL(url);

 

 

Mark answer as correct/helpful if it resolves your issue.

Best Regards,

Rajesh M.

Thank you Rajesh. This works. 

Hi,

 

You need to mark my response as correct so that I will receive points.

 

Regards,

Rajesh M.

Already Did together with my response