- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-14-2016 03:07 PM
I have form on which i track who uploaded what attachment as in the screen capture below:
This works fine as long as the form is submitted but obviously it is no good if a user drags a file to the form. So, I registered an event as follows:
I then wrote a business rule:
and nothing happened....Where did I go wrong?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-16-2016 07:42 AM
Yes as chuck mentioned, it should be an after BR. What is the field type of attachment_links and is it a custom field ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-14-2016 03:11 PM
A business rule only runs when a database action takes place. You may be looking to use a Script Action (a script that is triggered by an event.)
http://wiki.servicenow.com/index.php?title=Script_Actions
Script Actions - Business Rules' cousin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-15-2016 12:39 PM
Hi Chuck,
Thanks for the response, my research shows your answer has potential but without any examples in the wiki, I am not sure how to make it work. Could you provide a quick example where a file upload updates a field on the record where the upload took place?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-15-2016 12:42 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-15-2016 01:00 PM
Thanks for your example. Yes, I can manipulate attachments on submit. Easy!! But, that is not what I am looking for. I need to be able to trigger an event when a file is dragged to the paper clip without a submit button and change a field value subsequently.