- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 12:51 AM
Hi everyone, I am making a variable filter and need to know the sys_id of the current catalogitem, but the g_form.getUniqueValue() method can only be applied in the clientscript. Is there any other way to solve my problem?
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 12:54 AM - edited 12-22-2022 01:05 AM
current.cat_item will return the catalog item sys_id, you can use that accordingly.
example, if you want to pull RITMs related to current cat item, the ref qualifier will be:
javascript:'cat_item='+current.cat_item;
Please mark the answer correct/helpful accordingly.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 12:54 AM - edited 12-22-2022 01:05 AM
current.cat_item will return the catalog item sys_id, you can use that accordingly.
example, if you want to pull RITMs related to current cat item, the ref qualifier will be:
javascript:'cat_item='+current.cat_item;
Please mark the answer correct/helpful accordingly.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 04:38 PM
Thank you!!