'IncidentState is undefined, maybe missing global qualifer' error message is shown in the Security Incident form viewIssue The following message is displayed "IncidentState undefined, maybe missing global qualifier" on the security incident formCauseThe script include "IncidentState" is NOT called by using the API Name (i.e) it was missing global qualifierResolutionThere was a UI action that was calling the script include 'IncidentState' and it was missing the global qualifier.The script include should be called by its API name (i.e) it must be including the global qualifier Changing the script include call to global.IncidentState instead of IncidentState resolved the issue. P.S. This is not specific just to UI action, the same applies for other scripts like UI Policy script, Client Script as well