Business Rule to ensure it does not run against DISCOVERY, JAMF and SCCM integrations.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2024 04:37 AM - edited 02-05-2024 04:43 AM
Hello All,
We have one requirement to not run BR against some integration.
Update Business Rule to ensure it does not run against DISCOVERY, JAMF and SCCM integrations. Also, any future system built installed, and configurated integrations.
-> condition when to run that signifies a human is logged in
--> Use the advance scripting area to code interactive human session.
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2024 05:18 AM
Using
gs.getSession().isInteractive();
as a condition should restrict the BR to run only when an actual user is triggering it. REST and soap for example wouldn't be interactive, so it'll probably work in your usecase.