- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-22-2018 02:54 AM
Hi all
We've got a requirement for the ServicePortal to show users closed as well as their open incidents & requests.
The list of these comes from a Header Menu scripted list called 'My Calls'
Looking at the code, is it as simple as removing the highlighted text, or something a bit cleverer?
Solved! Go to Solution.
- Labels:
-
Service Portal Development

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-25-2018 06:12 AM
Dont remove
t.record_watchers.push({'table':'incident','filter':'active=true^caller_id=' + u});
t.record_watchers.push({'table':'sc_request','filter':'active=true^requested_for=' + u});
replace them with
t.record_watchers.push({'table':'incident','filter':'caller_id=' + u});
t.record_watchers.push({'table':'sc_request','filter':'requested_for=' + u});
and in places where you have used addActiveQuery(), add an "//" before them
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2022 04:49 AM
Can someone help me to display Demands(dmn_demand) on the same page..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2022 03:19 AM
I used this script and it worked. But when clicking on RITM number it is not displaying requested item record. Can anyone provide solution to view RITM details.