setDisplay() – It will reclaim the space if the field is hidden on the form If the field is hidden, the space is used to display other items. that means below field like, if sub status of the incident is not displaying then assignment group will display on that blank space. setVisible() If the […]
LDAP integration vs. SSO ServiceNow what is the difference?
LDAP integration means that your Service-Now instance will pick up newly created Users from the Active Directory, either through Listener ports or through Scheduled Uploads, and when you authenticate yourself while Logging onto Service-Now, this authentication is happening from the AD. SSO implemented means that you do not have to re-authenticate yourself when […]
Make all form fields read only – ServiceNow Client Script
var fields = g_form.getEditableFields(); for (var x = 0; x < fields.length; x++) { g_form.setReadOnly(fields[x], true); }