- 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-13-2017 03:52 AM
In my environment it's protection policy enabled . We aerated new xxxxx_cxs_Knowledge , and updated what you provided . still no luck .
Once we attached the knowledge to the case alert is appearing ( KB short description +have been added to the Customer Visible Notes(comments) (Customer visible) field) .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2017 04:06 AM
Comment this line out,
response.fields = gs.getProperty("glide.knowman.attach.fields", "").split(",");
Thanks,
Vinitha.K
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2017 04:36 AM
Vinitha ,
Where can I comment the above code?
On Mon, Mar 13, 2017 at 4:37 PM, vinitha <community-no-reply@servicenow.com>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2017 04:43 AM
In this place, Please put ctrl+F and find,
else {
response.article.content = s;
response.fields = "work_notes".split(",");
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-13-2017 04:51 AM
if(article.u_publish_to_customer_portal==true){
//response.article.content = s;
//response.fields = "comments".split(",");
} else {
//response.article.content = s;
//response.fields = "work_notes".split(",");
}
}
} still same issue .
any another way is it possible to find from alert ?
where it configured ?
On Mon, Mar 13, 2017 at 5:13 PM, vinitha <community-no-reply@servicenow.com>