Resetting News Article Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2026 02:28 PM
If we are doing a rebrand of our News Article formats, is there a way to reset the view count on the news article? I checked in the content record and can see the views there. I thought maybe I could just click the people and delete, but that option is greyed out.
Is there any other way than cloning each article and setting the old ones inactive?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2026 07:11 AM
There might be some sort of plugin or subscription applied because I don't have this option.
However use the code I shared above, adjust the query accordingly, if you are selecting these types it will most likely by a knowledge article with type or category to use in the condition. I cannot tell because I don't have this available in my PDI
Where the rules are real, you'll find me
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2026 06:15 AM
Hi @MeganCox
Refer: KB0787113 How to reset the knowledge view count to 0?
Also check : How can we reset the view count and use count of knowledge Article?
Regards
Tanushree Maiti
ServiceNow Technical Architect
LinkedIn: https://www.linkedin.com/in/tanushreemaiti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2026 01:59 PM
@MeganCox currently delete is restricted for sn_ce_view intentionally. If you have maint access, you can use background script to delete views.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2026 05:37 AM
If I'm not a coder at all, can you give me a little more information on how to do this so I can pass this on to my developer to complete for me?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2026 01:34 PM - edited 06-02-2026 01:34 PM
If the dev has access to run background script in sn_ce scope (caution rollback may not be possible) -
var gr = new GlideRecord('sn_ce_view');
gr.addQuery('item', '<replace_with_sys_id_of_the_content>');
gr.query();
gr.deleteMultiple();