- Use when attempting to get information from specific records
- Don't use for attempting to do calculations on groups of records, use GlideAggregate instead
- Only use on server scripts (usable in client scripts but do not do this, opt for GlideAjax instead)
- Use when doing calculations on groups of records
- Only use on server scripts
- Use when you need information from the server after the client has finished loading the page
- Only use on client scripts
- Used to operate on fields of the currently selected GlideRecord
- Only use on server scripts
- Use to get information from the system
- Only use on server scripts
- Use to perform date-time operations
- Only use on server scripts
- Use when getting session infromation about the current logged-in user
- Only use on client scripts