- A
Configure the form layout to hide the field
Why wrong: Hiding removes it, not make read-only.
- B
Create an ACL that denies write access
Why wrong: ACL would prevent writing but the field may still appear editable.
- C
Create a UI policy that sets the field to read-only when a condition is true
UI policy can change state dynamically.
- D
Set the field attribute to 'Read only' in dictionary entry
This forces the field to be read-only always.
- E
Add the field to a related list
Why wrong: Related lists are for related records, not field state.
ServiceNow: How to Make a Field Read-Only Using UI Policy and Dictionary
This SNOW-CSA practice question tests your understanding of ui, navigation and forms. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. 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.
Which TWO methods allow an administrator to make a field read-only on a form? (Choose two.)
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Create a UI policy that sets the field to read-only when a condition is true
Option C is correct because a UI policy can dynamically set a field to read-only based on a specified condition, such as a particular state or value. This allows administrators to control field editability at runtime without permanently altering the field's definition. Option D is correct because setting the 'Read only' attribute in the dictionary entry makes the field read-only globally across all forms and views, providing a static, system-wide restriction.
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.
- ✗
Configure the form layout to hide the field
Why it's wrong here
Hiding removes it, not make read-only.
- ✗
Create an ACL that denies write access
Why it's wrong here
ACL would prevent writing but the field may still appear editable.
- ✓
Create a UI policy that sets the field to read-only when a condition is true
Why this is correct
UI policy can change state dynamically.
Related concept
Read the scenario before looking for a memorised answer.
- ✓
Set the field attribute to 'Read only' in dictionary entry
Why this is correct
This forces the field to be read-only always.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Add the field to a related list
Why it's wrong here
Related lists are for related records, not field state.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often confuse ACLs (which control write access at the data layer) with UI policies (which control field editability at the presentation layer), leading them to incorrectly select option B as a method to make a field read-only on a form.
Detailed technical explanation
How to think about this question
Under the hood, the dictionary entry's 'Read only' attribute sets the 'readonly' property on the field's GlideRecord element, which is enforced at the database level for all UI interactions. UI policies, on the other hand, use client-side JavaScript to set the 'readonly' attribute on the HTML input element, and can be overridden by server-side scripts if not properly configured. A real-world scenario: using a UI policy to make a 'Close date' field read-only until the state changes to 'Closed' prevents premature data entry while keeping the field visible for reference.
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.
- →
UI, Navigation and Forms — study guide chapter
Learn the concepts, then practise the questions
- →
UI, Navigation and Forms practice questions
Targeted practice on this topic area only
- →
All SNOW-CSA questions
520 questions across all exam domains
- →
ServiceNow Certified System Administrator CSA study guide
Full concept coverage aligned to exam objectives
- →
SNOW-CSA practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related SNOW-CSA practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Reporting, SLA and Imports practice questions
Practise SNOW-CSA questions linked to Reporting, SLA and Imports.
Self-Service and Automation practice questions
Practise SNOW-CSA questions linked to Self-Service and Automation.
UI, Navigation and Forms practice questions
Practise SNOW-CSA questions linked to UI, Navigation and Forms.
Database Administration and CMDB practice questions
Practise SNOW-CSA questions linked to Database Administration and CMDB.
Service Catalog and Workflows practice questions
Practise SNOW-CSA questions linked to Service Catalog and Workflows.
Application Rules, ACL and Notifications practice questions
Practise SNOW-CSA questions linked to Application Rules, ACL and Notifications.
SNOW-CSA fundamentals practice questions
Practise SNOW-CSA questions linked to SNOW-CSA fundamentals.
SNOW-CSA scenario practice questions
Practise SNOW-CSA questions linked to SNOW-CSA scenario.
SNOW-CSA troubleshooting practice questions
Practise SNOW-CSA questions linked to SNOW-CSA troubleshooting.
Practice this exam
Start a free SNOW-CSA practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this SNOW-CSA question test?
UI, Navigation and Forms — This question tests UI, Navigation and Forms — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Create a UI policy that sets the field to read-only when a condition is true — Option C is correct because a UI policy can dynamically set a field to read-only based on a specified condition, such as a particular state or value. This allows administrators to control field editability at runtime without permanently altering the field's definition. Option D is correct because setting the 'Read only' attribute in the dictionary entry makes the field read-only globally across all forms and views, providing a static, system-wide restriction.
What should I do if I get this SNOW-CSA question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
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 →
Same concept, more angles
1 more ways this is tested on SNOW-CSA
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. An administrator is asked to make the 'State' field read-only on the incident form after the record is saved. Which configuration should be used?
medium- ✓ A.Create a UI Policy with condition 'always true' and set 'Read only' action, with 'On load' and 'After update' options
- B.Write a Business Rule that sets the field read-only after update
- C.Create an ACL that denies write access to the field
- D.Use a Client Script that runs on load and makes the field read-only if the record has a sys_id
Why A: Option A is correct because a UI Policy with the condition 'always true' and the 'Read only' action, with both 'On load' and 'After update' options selected, ensures the 'State' field becomes read-only immediately after the record is saved. The 'After update' option triggers the UI Policy to re-evaluate and apply the read-only state after the record is committed, while 'On load' ensures it is also read-only when the form is first opened. This is the only declarative client-side configuration that enforces the field state both on initial load and after every save.
Keep practising
More SNOW-CSA practice questions
- An administrator wants to create a new module under the 'User Administration' application menu. Which module type should…
- Drag and drop the steps to create a new report in ServiceNow into the correct order.
- A company wants to ensure that when a user submits a catalog item for a new laptop, the request is automatically approve…
- An organization is planning to implement CMDB for a large-scale environment with multiple data sources. They need to ens…
- Which TWO of the following are valid ways to trigger a workflow from a catalog item? (Choose two.)
- Refer to the exhibit. A catalog item has a variable 'department' (choice list with values 'IT', 'HR', 'Finance') and a v…
Last reviewed: Jul 4, 2026
This SNOW-CSA 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-CSA 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.