This recipe explains how to provide a hyperlink on a user to search for other users in e.g. the same location, or the same department.
To do this in Service Panel you will add a URL decorator in "Replace" mode to that attribute. The URL will construct a search link with query parameters showing the respective object type and attribute match.
Tips:
- Use the UriEscape function to handle special characters in the query parameter.
- The Service Panel search URL is:
"/search#!term={what to search}&silo={lowercase name of service panel silo}&field={field name from parent Identity Panel silo}"
For Example:
Set the silo and attribute value to show department:
Add a decorator with Replace mode:
Add a URL rule that goes to the search page with field set to department, silo to the parent Service Panel silo, and term to the value on the user.
URL Rule: $"/search#!term={UriEscape(Attributes.department)}&field=department&silo=people"
Comments
0 comments
Please sign in to leave a comment.