- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-20-2020 10:48 PM
Please anyone give me some examples and explain the logic behind them
Solved! Go to Solution.
- Labels:
-
Service Catalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-21-2020 12:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-20-2020 11:06 PM
Hello Uma,
You may find below thread helpful.
- Pradeep Sharma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-20-2020 11:07 PM
Filters are nothing but the setting you keep on the table to get the desired results..
Example : if you want incidents with priority 1 which are also active , so you can go to list view of incidents
apply that filter and whatever filter you have applied you just need to copy that and paste it in notepad , you will see a query like 'active=true^priority=1' this.
And lookup filter would be something were you would display data based on selection of other option.
For example you can refer below
Mark my ANSWER as CORRECT and HELPFUL if it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-20-2020 11:10 PM
Hi,
Reference Qualifiers are generally used when you want to limit the selection in reference fields (lookup select box, reference fields, list collectors) based on some conditions.
javascript:'model_category='+current.variables.u_class_category_of_asset+'^install_status=6';
In the above example, the CIs which have model_category same as the category selected in variable "u_class_category_of_asset" and "install_status=6" will populate.
You can also call script includes in reference qualifiers.
Pls. mark this helpful, if this helps.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-21-2020 12:24 AM
