- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-15-2017 02:00 AM
Hi I need to change state field in task table from read only to editable. Not able to figure out where i can change. Kindly help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-15-2017 02:10 AM
Hi Mahesh,
You need to check whether there is any UI policy or Client script turning the field in Read Only.
Secondly right click on that field > go to Configure Dictionary. Here you can change the attribute.
Raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-15-2017 02:10 AM
Hi Mahesh,
You need to check whether there is any UI policy or Client script turning the field in Read Only.
Secondly right click on that field > go to Configure Dictionary. Here you can change the attribute.
Raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-15-2017 03:23 AM
Hi, Read only field is not even marked there for State in Dictionary but still it is showing as read only in task table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-15-2017 03:30 AM
Hi mahesh,
Please check the ACL's also.
client scripts or ui policies as well on the task table.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-15-2017 02:14 AM
Hi Mahesh,
Read only can be made by using following actions.. Please validate each step to check
1. Read only can be made in dictionary level.
Please right click near the label of the field and select configure dictionary, once opened please check if read-only check box is checked.
2.By client scripts
in client scripts for sc_task please add filter script contains state
Open the filtered scripts and check for line g_form.setMandatory('state',true);
3.By UI policy actions
By accessing sys_ui_policy_action table filer out UI policy actions for sc_task
check for state and check the options if it marked mandatory.
Please like or mark correct based on your views.