- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-28-2023 01:43 PM
Is there a way to provide a link for opening an incident to a specific assignment group?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2023 06:24 AM
Yes @tmccasland ,
In ServiceNow, you can create a URL that pre-populates fields in a form, including the assignment group. You'll need to construct a URL that includes the appropriate parameters for the assignment group field.
The URL structure might look something like this:
https://your_instance.service-now.com/incident.do?sys_id=-1&sysparm_query=active=true^assignment_group=<assignment_group_sys_id>
Replace your_instance with your ServiceNow instance name and <assignment_group_sys_id> with the Sys ID of the assignment group you want to pre-populate.
Keep in mind that this assumes you have the necessary permissions to create incidents and access the specific assignment group. If you're unsure about the Sys ID of the assignment group, you can find it by navigating to the assignment group record in ServiceNow and looking at the URL. It will be part of the URL as sys_id=<assignment_group_sys_id>.
Mark helpful or correct if applicable.
Thanks & Regards,
Sayali Gurav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2023 06:26 PM
Hello,
Follow these steps to simply get a link that will open an incident record with the assignment group pre-populated:
- Navigate to the incident list
- Apply the filter (assignment group) in your case
- Click the 'New' button
Notice that the form opens with the assignment group pre-populated with the value you filtered your list. The URL will have the parameters necessary to let the form know to pre-populate it with the assignment group value.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2023 06:01 AM
Hey Cesar, thanks for this, however the assignment group is not populated when I follow the given steps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-04-2023 06:58 PM
Hi @tmccasland
Can you provide some more info please...??
ServiceNow Developer
I know one thing, and that is that I know nothing.
- Socrates
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2023 06:24 AM
Yes @tmccasland ,
In ServiceNow, you can create a URL that pre-populates fields in a form, including the assignment group. You'll need to construct a URL that includes the appropriate parameters for the assignment group field.
The URL structure might look something like this:
https://your_instance.service-now.com/incident.do?sys_id=-1&sysparm_query=active=true^assignment_group=<assignment_group_sys_id>
Replace your_instance with your ServiceNow instance name and <assignment_group_sys_id> with the Sys ID of the assignment group you want to pre-populate.
Keep in mind that this assumes you have the necessary permissions to create incidents and access the specific assignment group. If you're unsure about the Sys ID of the assignment group, you can find it by navigating to the assignment group record in ServiceNow and looking at the URL. It will be part of the URL as sys_id=<assignment_group_sys_id>.
Mark helpful or correct if applicable.
Thanks & Regards,
Sayali Gurav