- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2019 10:57 AM
I have an inbound action that adds a work note to my incident containing the email content when the subject of the email contains "work note added". I can confirm that this works. I also have a business rule that runs when my incident gets a work note. Technically, the business rule runs on the sys_journal_field table when the journal record gets added. The business rule runs correctly when a work note gets added manually to the incident form. The problem is when the incident gets the work note generated by the inbound action, the business rule is ignored. I think it may have something to do with the fact that both the inbound action and business rule are running at the same time. Any ideas?
Solved! Go to Solution.
- Labels:
-
Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2019 08:50 AM
I found the problem. It was pretty obvious. The condition on the business rule contained "gs.getSession().isInteractive()" which looks for a transaction generated from a user session. The inbound action doesn't meet that condition.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2019 04:17 PM
Can you share business rule screenshot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2019 08:50 AM
I found the problem. It was pretty obvious. The condition on the business rule contained "gs.getSession().isInteractive()" which looks for a transaction generated from a user session. The inbound action doesn't meet that condition.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2019 01:33 PM
Yap, That's what I wanted to check on screenshot.