couldn't able to delete records in table but when opened showing as record not found

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-13-2023 07:50 AM
couldn't able to delete records in the table but when opened showing as record not found
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-13-2023 07:55 AM
If you are not able to see the records then how do you know that records are not deleted?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-13-2023 09:35 PM
I could able to see the records, but when opened it showing as Record Not Found. And, Couldn't able to delete these as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-13-2023 10:55 PM
Can you share the screenshots, if thats possible?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2023 02:19 AM - edited ‎02-14-2023 02:45 AM
Try this script in background script @Community Alums
var gr = new GlideRecord('Company name');
gr.addQuery('Your updated till last year');
gr.query();
while (gr.next()) {
gr.deleteMultiple();
}