Modify Profile Menu- Native SN view
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2025 03:08 AM
Hello All,
Greetings.
It would be great to share some insights about how do we include any new option (e.g. Navigate to ITSM Portal) OR remove any existing option (e.g. Printer Friendly Version) from the Profile Pop-up box.
Looking forward to gather the suggestions.
Thank you.
- Labels:
-
Agent Workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2025 03:11 AM
Hi @Puru2
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2025 03:31 AM
I do not believe you can achieve this using user profile drop-down menu and would not recommend customizing this even if it is technically possible.
Alternatively, you can add menu items as per your requirements and control it using role based access. It is maintained in table sys_polaris_menu_config and you can refer below documentation for more information
If this helped to answer your query, please mark it helpful & accept the solution.
Thanks,
Bhuvan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2025 02:53 AM
Did you get a chance to review this as I believe the information provided should answer your question.
If my response helped to guide you or answer your query, please mark it helpful & accept the solution.
Thanks,
Bhuvan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2025 05:56 AM
Hi @Puru2 ,
this might be help -
Steps to Customize the Profile Pop-up Menu
1. Locate the Widget
- Go to ServiceNow Studio or Service Portal > Widgets.
- Search for the widget named User Profile Menu or similar (depending on your theme).
- Open the widget for editing.
2. Modify the Client Script (Controller)
In the Client Script, you'll see an array of menu items like this:
$scope.menuItems = [
{ label: 'Profile', action: 'profile' },
{ label: 'Preferences', action: 'preferences' },
{ label: 'Printer Friendly Version', action: 'print' },
{ label: 'Log out', action: 'logout' }
];
To add a new item:
Add a new object with a custom action:
{ label: 'Navigate to ITSM Portal', action: 'navigateITSM' }
3. Handle the New Action
In the same widget, add logic to handle the new action:
$scope.performAction = function(action) {
switch(action) {
case 'profile':
// existing logic
break;
case 'navigateITSM':
window.location.href = '/your_itsm_portal_url';
break;
// other cases...
}
};
Logout and test it .
Thanks,
Rithika.ch
