The most likely cause is that the table was removed from the application scope after creation. When a table is created within a scoped application, it is automatically included in that application’s scope, but if it is later removed—even though the table and its records still exist in the instance—the scoped application’s business rules lose visibility to it. Scoped applications enforce strict table access controls, so a business rule running in that scope cannot query or write to a table that is no longer explicitly part of the application’s definition. On the ServiceNow Certified Application Developer CAD exam, this scenario tests your understanding of scoped application isolation and the fact that table membership is not permanent after creation. A common trap is assuming the table remains accessible simply because it still holds data. Remember the memory tip: “Once removed, forever hidden from the scope.”
SNOW-CAD Practice Question: Application development using ServiceNow Studio
This SNOW-CAD practice question tests your understanding of application development using servicenow studio. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Refer to the exhibit.
Error log from a scoped application:
2024-01-15 10:23:45 ERROR Script: GlideRecord operation failed for table 'x_myapp_incident' because the table does not exist or is not accessible in scope 'x_myapp'. Stack: ...
A developer encounters this error when running a business rule in a scoped application. The table 'x_myapp_incident' was created in the application scope and has records in it. What is the most likely cause?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue: "most likely"
Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
Refer to the exhibit.
Error log from a scoped application:
2024-01-15 10:23:45 ERROR Script: GlideRecord operation failed for table 'x_myapp_incident' because the table does not exist or is not accessible in scope 'x_myapp'. Stack: ...
A
The ACLs on the table restrict access for the script's user.
Why wrong: ACLs would cause a read/write error, not a 'does not exist' error.
B
The business rule is trying to access a table in a different scope without using the 'global.' prefix.
Why wrong: The table is in the same scope, so no prefix is needed.
C
The application was installed via an update set and the table was not included.
Why wrong: The error occurs in the current instance, not during installation.
D
The table was removed from the application scope after creation.
If the table is removed from the scope, it becomes inaccessible.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The table was removed from the application scope after creation.
When a table is removed from an application scope after creation, the table still exists in the instance but is no longer associated with the application. Business rules running in the scoped application cannot access tables that are not part of the application's scope, causing an error. This is because scoped applications enforce strict table visibility rules, and only tables explicitly included in the application scope are accessible.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
The ACLs on the table restrict access for the script's user.
Why it's wrong here
ACLs would cause a read/write error, not a 'does not exist' error.
✗
The business rule is trying to access a table in a different scope without using the 'global.' prefix.
Why it's wrong here
The table is in the same scope, so no prefix is needed.
✗
The application was installed via an update set and the table was not included.
Why it's wrong here
The error occurs in the current instance, not during installation.
✓
The table was removed from the application scope after creation.
Why this is correct
If the table is removed from the scope, it becomes inaccessible.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
Common exam traps
Common exam trap: answer the scenario, not the keyword
ServiceNow often tests the distinction between a table not existing at all versus a table existing but being out of scope, leading candidates to mistakenly choose options about update sets or ACLs instead of recognizing the scope removal scenario.
Detailed technical explanation
How to think about this question
Under the hood, ServiceNow scoped applications use a scope-based namespace system where each table is bound to a specific application scope via the 'sys_scope' field in the 'sys_db_object' table. When a business rule in a scope references a table, the platform checks if the table's scope matches the application's scope or if the table is marked as 'global'. If the table was removed from the scope (e.g., via 'Remove from Application' in Studio), the 'sys_scope' field is set to null, making it invisible to the scoped application's code even though the table and its records still exist in the instance. This is a common pitfall when refactoring applications or moving tables between scopes.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A security administrator must allow nursing staff to reach a patient records server while blocking access from the guest Wi-Fi VLAN. After applying an extended ACL, traffic is still blocked from nursing workstations. The ACL was applied outbound instead of inbound on the wrong interface. Questions like this test ACL direction and placement rules.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Application development using ServiceNow Studio — This question tests Application development using ServiceNow Studio — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The table was removed from the application scope after creation. — When a table is removed from an application scope after creation, the table still exists in the instance but is no longer associated with the application. Business rules running in the scoped application cannot access tables that are not part of the application's scope, causing an error. This is because scoped applications enforce strict table visibility rules, and only tables explicitly included in the application scope are accessible.
What should I do if I get this SNOW-CAD question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This SNOW-CAD practice question is part of Courseiva's free ServiceNow certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SNOW-CAD exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.