- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2023 11:06 AM
Hi All,
I want to remove the activity tab available on the TO-dos Page , We only require details tab . Please suggest on how I can remove this . Please help and share your valuable suggestions.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2023 12:20 AM
Hi All,
Thanks for replying . Below is the accepted solution and worked for me .
1. Navigate to Widget -HRM Task AHC Widgets.
2. In the client controller : Check lines 45-50
activity: {
name: i18n.getMessage("Activity"),
aria: i18n.getMessage("Open activity, view conversation history or type new message"),
value: 'activity',
widget: 'historyWidget',
display: true
}
3. Change the display :false
4. Save .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2023 11:49 AM
Below solution might help you.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2023 12:16 PM
Hi,
To remove the Activity tab from the To-Do page in ServiceNow, you can follow these steps:
Navigate to the System Definition > Dictionary module in your ServiceNow instance.
Search for the "task" table in the search bar.
Locate the "Activity" field in the list of fields for the "task" table.
Click on the "Activity" field to open its Dictionary record.
In the Dictionary record, scroll down to the "Attributes" section and find the "Attributes" field.
In the "Attributes" field, add the following attribute:
activity_table="false"
Save the changes to the Dictionary record.
After making this change, the Activity tab should no longer be visible on the To-Do page in ServiceNow. However, please note that this change will affect all instances where the "task" table is used, so it's important to consider the impact of this change before making it. Additionally, this change may not persist through ServiceNow upgrades, so it may need to be reapplied after upgrades.
Thanks,
Rahul Kumar
Thanks,
Rahul Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2023 11:51 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2023 12:20 AM
Hi All,
Thanks for replying . Below is the accepted solution and worked for me .
1. Navigate to Widget -HRM Task AHC Widgets.
2. In the client controller : Check lines 45-50
activity: {
name: i18n.getMessage("Activity"),
aria: i18n.getMessage("Open activity, view conversation history or type new message"),
value: 'activity',
widget: 'historyWidget',
display: true
}
3. Change the display :false
4. Save .