- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2014 08:28 AM
Although it is said that ServiceNow strongly advises against using Global Business Rules... playing Devil's advocate: why are Global Business Rules available?
What would be a good example of using a Global Business Rule?
Anyone with an answer would help me greatly.
Best,
Myles Ferich
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2014 08:58 AM
Global Business Rules are only available still for backward compatibility, but you should NEVER use them. You should instead use Script Includes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2014 08:58 AM
Global Business Rules are only available still for backward compatibility, but you should NEVER use them. You should instead use Script Includes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2014 09:07 AM
The reason you would need to use Global Business rules in the past is if you wanted a custom globally accessible function, such as getMyGroups, or getUser. You can do the same thing in Script Includes now in a safer, less performance impacting way.
WIKI: Script Includes - ServiceNow Wiki

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2014 10:11 AM
I believe that only time I needed to create a Global Business Rule was because this:
Filtering Related List Relationships - ServiceNow Wiki
For other options follow this link:
[]'s
Andre Moreira
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2014 10:40 AM
Thank you all for your answers!