Knowledge article disapearing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Saturday - last edited Saturday
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Saturday
Hello @Cheryll J
1. Is the Active Checkbox on that KB ticked or not(your screenshot suggests not)
2. where are you looking when you say the KA's are gone. Knowledge app, KB Search, or Employee Center?
3. you mentioned that you cloned this earlier, what do you mean by it?
4. can you please run the below script. The below scripts helps us to know whether are the knowledge articles are really deleted?
var d = new GlideRecord('sys_audit_delete');
d.addQuery('tablename', 'kb_knowledge');
d.orderByDesc('sys_created_on');
d.setLimit(50);
d.query();
gs.info('deleted article rows: ' + d.getRowCount());
while (d.next())
gs.info(d.sys_created_on + ' | ' + d.documentkey + ' | by ' + d.sys_created_by);
please answer these questions to provide you a proper answer
Regards
Raghavendra G