- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2017 01:04 AM
When knowledge article attached KB content coping to case worknotes . How can we stop that . We don't need the content .
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-14-2017 02:51 AM
Thanks Vinitha ,
Temporary I done the create new field and through UI policy dine it . Still notification is coming . Have to fix .
Once again thanks for you help .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2018 08:21 AM
Hi Vinitha, I am having trouble getting the KB sys id.
With a BR I am trying:
var notes = current.close_notes;
if(notes.indexOf("Knowledge article")>=0);
var str = notes.toString();
var res = str.substring(18, 27); this gets the correct KB article number
//var KBnum = res;
var kbGr = new GlideRecord('kb_knowledge');
kbGr.addQuery('number', res); I think the problem is here but as I understand I pass res which has kb number and if there is a match it should return it.
kbGr.query();
if(kbGr.next())
gs.log('Found1 ' +kbGr); results in. Found1 [object GlideRecord
gs.log('Found2 ' +res); Found2 KB0014306
Any advise appreciated 🙂
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2017 02:32 AM
Please mark as correct answer if it has helped you out.
Thanks,
Vinitha.K
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2017 05:45 AM
Hi Hima,
You need to navigate to System properties(sys_properties.list) from the application search menu and then find this Property "glide.knowman.attach.fields". Simply remove the Work Notes from the Property value to stop attaching the knowledge content getting attached to work note field as shown below:
Hope this helps.Mark the answer as correct/helpful based on impact.
Regards,
Shloke
Regards,
Shloke
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2017 06:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-14-2017 12:28 AM