Skip to page contentSkip to chat
ServiceNow support
    • Community
      Ask questions, give advice, and connect with fellow ServiceNow professionals.
      Developer
      Build, test, and deploy applications
      Documentation
      Find detailed information about ServiceNow products, apps, features, and releases.
      Impact
      Accelerate ROI and amplify your expertise.
      Learning
      Build skills with instructor-led and online training.
      Partner
      Grow your business with promotions, news, and marketing tools
      ServiceNow
      Learn about ServiceNow products & solutions.
      Store
      Download certified apps and integrations that complement ServiceNow.
      Support
      Manage your instances, access self-help, and get technical support.
Hiding Visual Task boards from users with a specific roles - Support and Troubleshooting
  • >
  • Knowledge Base
  • >
  • Support and Troubleshooting (Knowledge Base)
  • >
  • Hiding Visual Task boards from users with a specific roles
KB0793547

Hiding Visual Task boards from users with a specific roles


843 Views Last updated : Apr 8, 2024 public Copy Permalink
KB Summary by Now Assist

Issue

Even though the 'Visual Task Board' module was hidden for the users, few users were still able to open it from the incident context menu and direct URL and see the data.

Cause

The 'Visual Task Board' module or any module in the application navigator, can be thought of as a link or shortcut to a particular list or item. Hiding the module just hides the shortcut to that link, but it does not restrict the data that customers can see already. If they have the direct link they can still see the board. The menu item from the context menu such as incident list is also a way users can open VTB, so to restrict that conditions need to be applied on the UI action as well.

Resolution

If the users have saved the direct URL on their favourites, they can still see the data. To restrict that customer can create either READ ACL or Before Query Business Rule on vtb_board table to restrict the visibility of the board to a certain group of users. Here is a sample Before Query business rule, to restrict VTB board access to any users except admins:

if(!(gs.hasRole('admin'))){
gs.addErrorMessage("You are not authorized to view this type of Board!");
current.setAbortAction(true);
}

In a nutshell, it was not expected that hiding the 'Visual Task Board' module will stop the users from seeing the VTB, as they could have opened from 1) UI action from the list context menu and 2) With direct URLs. 


The world works with ServiceNow.

Sign in for more! There's more content available only to authenticated users Sign in for more!
Did this KB article help you?
Did this KB article help you?

How would you rate your Now Support digital experience?

*

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

What can we improve? Please select all that apply.

What are we doing well? Please select all that apply.

Tell us more

*

Do you expect a response from this feedback?

  • Terms and conditions
  • Privacy statement
  • GDPR
  • Cookie policy
  • © 2025 ServiceNow. All rights reserved.