- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2024 05:59 AM
Hi
I have business rule Close Item which closes items after some time. During running update other business rules are fired. I want to disable one particular BR during execution of Close Item BR. Option setWorkflow(false) cannot be taken into account as it will block all BRs. I also dont want to disable BR on 'sys_script' table within code. Could you please advise me what can be done more to omit execution of the BR
Regards
Piotr
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2024 06:19 AM
The only way you could exclude one in particular BR in certain circumstances would be to either, build conditions in the BR to prevent it from running under the specified condition, or to script a condition, or do something in the script to decide whether to allow it or use current.setAbortAction(true)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2024 06:19 AM
The only way you could exclude one in particular BR in certain circumstances would be to either, build conditions in the BR to prevent it from running under the specified condition, or to script a condition, or do something in the script to decide whether to allow it or use current.setAbortAction(true)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2024 06:43 AM
Are you running code to close out the items via the advance scripting field? If so, what does your code look like?