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

Community Alums
Not applicable

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

14 REPLIES 14

Twinkle S
Mega Sage
Mega Sage

If you are not able to see the records then how do you know that records are not deleted?

 

Community Alums
Not applicable

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.

Can you share the screenshots, if thats possible?

 

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(); 

 

}