- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2014 04:07 AM
Hi all,
What's the best way to check the current action in a business rule? ie for a business rule that runs on insert or update, how can I test which action is actually happening for the current record?
I was think of something equivalent to if (action == "insert") as used in transform map scripts.
Thanks.
Solved! Go to Solution.
- Labels:
-
Service Mapping

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2014 04:09 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2014 04:09 AM
current.operation() == 'insert'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2014 04:10 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2017 09:16 AM
For anyone who also falls victim to the Wiki redirect dead-end, here's a place where this comes up in the latest [Kingston] documentation: Determine the operation that triggered the business rule
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2014 04:13 AM
Thank you. I should have spotted that in that Wiki!