ACL condition

CV1
Tera Contributor

what does ACL condition 

incident_stateNOT IN7,8^EQ (EQ mean)

Thanks

1 ACCEPTED SOLUTION

Rajdeep Ganguly
Mega Guru


The ACL condition incident_stateNOT IN7,8^EQ is a condition used in ServiceNow to control access to data. Here's what it means:

- incident_stateNOT IN7,8: This part of the condition checks if the state of an incident is not in the states represented by the numbers 7 and 8. In ServiceNow, different numbers represent different states of an incident. For example, 7 usually represents 'Closed' and 8 represents 'Canceled'.

- ^EQ: This is an operator used in ServiceNow to combine conditions. It stands for 'AND'. So, if there were another condition after this operator, it would mean that both conditions need to be true.

So, in summary, this condition checks if the state of an incident is neither 'Closed' nor 'Canceled'. If there were another condition after the ^EQ operator, both this condition and the next one would need to be true for the ACL to grant access.


nowKB.com

For asking ServiceNow-related questions try this :
For a better and more optimistic result, please visit this website. It uses a Chat Generative Pre-Trained Transformer ( GPT ) technology for solving ServiceNow-related issues.
Link - https://nowgpt.ai/

For the ServiceNow Certified System Administrator exams try this :
https://www.udemy.com/course/servicenow-csa-admin-certification-exam-2023/?couponCode=NOW-DEVELOPER

View solution in original post

5 REPLIES 5

Anand Kumar P
Giga Patron
Giga Patron

Hi @CV1 ,
incident_state NOT IN 7,8 checks the status of an incident. If the incident is not in state 7 or 8, then the condition is met. ^EQ = End Query.

AnandKumarP_0-1708158098109.pngAnandKumarP_1-1708158118504.png

 

 

 

Mark it as helpful and solution proposed if it serves your purpose.
Thanks,
Anand