- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-27-2019 11:00 PM
I can know if knowledge has been viewed by kb_use table.
Is there a way to know if a knowledge attachment has been downloaded?
Solved! Go to Solution.
- Labels:
-
Knowledge Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-27-2019 11:26 PM
You have to check event "attachment.read" , whenever you will download the attachment in event logs you will find an entry with "attachment.read" as well as in parm2 you will find table name, so you can filter there and see how many attachment has been downloaded from your kb_knowledge table.
eg: i have added one attachment on my article and if i download it so one entry will be available in event logs , so you need to go to the system logs >> Events, add condition like below.
Name | IS | attachment.read
AND
parm2 | IS | kb_knowledge
Doc link for further details.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-27-2019 11:26 PM
You have to check event "attachment.read" , whenever you will download the attachment in event logs you will find an entry with "attachment.read" as well as in parm2 you will find table name, so you can filter there and see how many attachment has been downloaded from your kb_knowledge table.
eg: i have added one attachment on my article and if i download it so one entry will be available in event logs , so you need to go to the system logs >> Events, add condition like below.
Name | IS | attachment.read
AND
parm2 | IS | kb_knowledge
Doc link for further details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-27-2019 11:58 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-20-2022 08:19 PM
Hi Harsha,
Can you help me find out which script / Business rule is triggering this event "attachment.read" ?