
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-11-2022 08:15 PM
Standard change proposal, modification should be available to users with itil or admin role.
I'm experiencing an issue where as someone with admin role, everything is working fine when Proposing or Modifying Standard Changes, but as a user with only itil role (not admin), ALL of the "Change Request Values" object becomes read-only.
I can't find where this is coming from or locate anything that's causing it.
Anyone have any thoughts?
Solved! Go to Solution.
- Labels:
-
Change Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2022 11:20 PM
For closure - and anyone who runs into this issue in future and comes across this post - it did turn out to be the problem/resolution described in the KB article I posted earlier. After creating the additional ACL, itil users are now able to edit the Change Request Values object.
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0636146
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-11-2022 08:49 PM
HI
That's a Expected Behavior , nothing wrong in it !!
The fields are set read-only from the client script - Mark standard change fields read only
Since Standard Changes are pre-approved, low risk, they are normally read only. However, I know that sometimes the std change contains some generic info and needs updating before implementing.
Here are the steps I took to accomplish this allowing certain std changes to be editable before implementing. Maybe these steps will helps you :
Added new checkbox field to Change Request- STDCHG hold.
Clone client script - Mark standard change fields readonly - and added && g_form.getValue('u_stdchg_hold') == false) - which will prevent the fields from being read-only on submit IF STDCHG is true.
Clone UI action - Schedule - and added - g_form.setValue('u_stdchg_hold',false); - which will set the new field to false once the change is Scheduled thus making the fields read-only.
Created new UI Policy to hide new field since it has to be on form for Client Script to work.
Mark my answer correct & Helpful, if Applicable.
Thanks,
Sandeep

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-11-2022 08:55 PM
Hi Sandeep - that applies to fields on Changes spawned from the template. Not to the template itself - i.e. that's on change_request table.
I'm talking here about the Proposal and Modification Catalog Item/Template.
(see screenshot in original post)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-11-2022 08:56 PM
I'm now wondering if it's related to this -
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0636146
Though I'd hate to think that "bug" has been around since the Jakarta days and hasn't been fixed...?
(I'm asking the customer to add security_admin role to me so I can test the proposed workaround in DEV and see if it solves the issue).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-11-2022 09:10 PM
It's not related to https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0636146 and it's not a bug , you can use the solution i proposed.
Glad to see
Kindly mark the applicable answer as Correct & Helpful both such that others can get help.
Thanks,
Sandeep