- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 01:29 PM
is there a script or an out of the box for the Manager and knowledge base owner to approve the KB article before it can continue?
my thoughts are as followed:
this is for manager approval and i don't think is working.
answer.push(current.request.requested_for.manager);
and i think this here is for both but it is not working am i missing somehthing?
getApprovers: function(knowledgeGR) {
var kbOwner = knowledgeGR.kb_knowledge_base.owner;
var kbManagers = knowledgeGR.kb_knowledge_base.kb_managers;
//Approval activity will handle any trailing comma, if there are no managers.
return kbOwner + "," + kbManagers;
i have attached pictures ... Also what workflows do they do in?
i want this to work for all KB articles- i was putting this in the request new knowledgeBase
thanks for the help! Developer Community
Solved! Go to Solution.
- Labels:
-
Knowledge Management
-
Workflow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 02:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 02:26 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 02:31 PM
ok let me try this on the knowledge approval-publish work flow or should i just create a new one?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 02:34 PM
ok i see its in the the knowledge approval- publish
let me plug this in ... now how can i get email notifications sent to the manager when i get a kb article to approve?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 02:40 PM
The approval activity is creating an record in the sysapproval_approver table. Create a notification to hit on this table on Insert and design it like you want. I guess you want to send it to the user in the "approver" field on that record. Be aware that all approvers end up here, so if you want to make this only happen for knowledge I guess you need to make a condition to check what kind of record it is in the "approval for" field.
//Göran
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-07-2017 02:38 PM