- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2021 07:21 AM
Hi Guys,
I am facing the below error on service portal when I try to open any RITM ticket (not for all users). Please refer the below image.
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2021 10:41 PM
Hi Timmo
Found the solution, created the read acl on the table sc_req_item.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2021 08:56 AM
Do you have any custom fields on that table? - Yes
Is the 'Ticket Fields' widget the out of box code, or has it been cloned and modified? - No it is OOB we didn't clowned that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2021 10:41 PM
Hi Timmo
Found the solution, created the read acl on the table sc_req_item.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2021 07:17 AM
Awesome.
If anything I said pointed you in the right direction, please mar some of my responses as 'Helpful'.
Cheers,
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2022 05:23 AM
Hello,
when i try close the associate sc_task at time of closure of RITM, facing the same error,
i also created write ACL on sc_task table. but couldn't resolve the issue.
Kindly help to resolve.
My After BR:
Table: sc_req_item
(function executeRule(current, previous /*null when async*/) {
var gr2 = new GlideRecord('sc_task');
gr2.addQuery('request_item', current.sys_id);
gr2.query();
while (gr2.next()) {
gr2.setValue('state', 3);//closed complete
gr2.update();
}