
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-14-2018 10:57 AM
Hello Community,
I'm running a report against the kb_use table to simply get a count of articles used and the short description of the article. ( I have Knowledge_admin role )
However the short description is not being displayed:
Any ideas as to what could be blocking this? I am able to see the field in other reports from the KB_knowledge table so I know the actual field is not restricted.
Thank you
Solved! Go to Solution.
- Labels:
-
Knowledge Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-28-2018 07:58 AM
Thank you All for your replies,
The cause of the issue turned out to be in an ACL that was preventing any role other than Admin from displaying that field in this fashion.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-15-2018 11:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-15-2018 08:15 PM
I suspect this may be due to any ACLs at play for your profile. You may want to reach out to our Support team through a HI ticket.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-28-2018 07:58 AM
Thank you All for your replies,
The cause of the issue turned out to be in an ACL that was preventing any role other than Admin from displaying that field in this fashion.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2018 12:01 PM
Which ACL was causing the problem? We're having the same issue but I haven't pinpointed the ACL yet.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-08-2020 12:40 PM
Josh,
I dont know if you still need assistance with this but the solution i came up with was in the script include called KBKnowledge. I added the following first thing in the canRead() function:
canRead: function(knowledgeGR) {
knowledgeGR = new GlideRecordUtil().getGR("kb_knowledge", knowledgeGR.sys_id);
...
I found through logging that the table level ACL sent the current object entirely but the field level ACL did not pass a full knowledge glide record object. Grabbing the object in the script include made sure the whole gliderecord was available regardless.