We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

Customers unable to see all cases for their account on the Customer Portal

Alice_W1
Mega Contributor

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.

 

 

1 ACCEPTED SOLUTION

AndersBGS
Tera Patron

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/

View solution in original post

5 REPLIES 5

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);
}