- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2023 02:16 AM
Customers who are assigned a 'sn_customerservice.customer_admin' role were previously able to see all cases raised under their account- since a recent update on ServiceNow- customers are no longer able to see all cases.
Any help to get this working again would be appriciated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2023 11:26 PM
Hi @Alice_W1 ,
I would recommend you to review any ACLs according to the table.
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
best regards
Anders
If my answer has helped with your question, please mark my answer as the accepted solution and give a thumbs up.
Best regards
Anders
Rising star 2024
MVP 2025
linkedIn: https://www.linkedin.com/in/andersskovbjerg/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2024 02:34 AM
Hi there, yes- the link between the account code and account paths had been corrupted, and we had to run a script to fix them all.
var gr = new GlideRecord("customer_account");
gr.addNullQuery('account_path');
gr.query();
while (gr.next()){
new global.generateCodeForTreePath().updateAccountPath(gr.sys_id);
}