Servicenow Certified Application Developer CAD · Free Practice Question Easy
Question 35
When ServiceNow receives an inbound email it attempts to match the sender to a user record. Which one of the following is NOT true?
-
A
If automatic user creation is disabled, the Guest user is impersonated
-
B
If a match is found, the user is impersonated for the execution of the Inbound Actions
-
C
Inbound Action scripts can reference the user using methods such as gs.getUserName()
-
D
If no match is found the email is sent to the Inbox Junk folder
Reveal correct answer
Correct answer: D
Explanation
Source: Developer
Correct answers:
If automatic user creation is disabled, the Guest user is impersonated: This statement is true. According to the source, if ServiceNow cannot match the sender's email address with a user in the system and the automatic user creation is turned off, then the platform defaults to impersonating the 'Guest' user. This ensures that there is a fallback user context under which the system can process the inbound email.
If a match is found, the user is impersonated for the execution of the Inbound Actions: This is also true. When ServiceNow finds a matching email address in the User [sys_user] table, it impersonates this user to perform actions in response to the inbound email. This means that any Inbound Actions that are executed will run as if the matched user is performing them, providing a context that includes the user's permissions and settings.
Inbound Action scripts can reference the user using methods such as gs.getUserName(): This statement is accurate. Inbound Actions in ServiceNow have the ability to access information about the impersonated user, including methods to get the user's name, which can be particularly useful for personalizing the actions taken in response to the email.
Incorrect answer:
If no match is found the email is sent to the Inbox Junk folder: This statement is not true based on the source. There is no mention of the email being sent to a Junk folder if no match is found. Instead, if there's no match and automatic user creation is enabled, a user record is created and then impersonated. If automatic user creation is disabled, the Guest user is impersonated. There is no automatic diversion of unmatched emails to a junk or spam folder mentioned in the provided details.
Discussion
Think the marked answer is wrong, or have a better explanation? Share it below — comments appear after review.
