- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 07:35 AM
Hello,
In our dev instance, just for the change_request table, I cannot select any value in any of the reference field. The reference fields on other tables looks good like incident, problem, demand..Not sure on how to debug this problem. I checked all the client scripts and there are no new ones added recently. Can anyone please suggest on how to debug this?
RK
If my response is helpful, please select Helpful. If my response answers your question, please select Accept as Solution.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 08:30 AM
The original UI policy I have has the following script
function onCondition() {
var sections = g_form.getSections();
sections[10].style.display = 'block'; //used section number
}
Modified it to following which resolved the issue
function onCondition() {
g_form.setSectionDisplay('code_promotion', true); //used section name
}
RK
If my response is helpful, please select Helpful. If my response answers your question, please select Accept as Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 07:37 AM
Hi Radha,
Could you confirm the field (assignment group/assigned to/affected ci etc.) that is being referenced to a table & is not showing up.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 07:40 AM
Yes Jaspal. All those reference fields are actually coming from task table and looks good in other tables except change.
RK
If my response is helpful, please select Helpful. If my response answers your question, please select Accept as Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 07:43 AM
So, if the issue is of Assignment Group not showing up look for Group Type. Possibly this may be the cause.
If it is not Assignment Group do confirm the other fields that are not showing up even though being reference field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-12-2017 07:46 AM
Hi Jaspal,
Let me be more clear. There are around 5 reference fields like aff CI, assign group, assigned to etc on change_request table. None of them are working. The same fields are also on incident, problem forms too and they work okay.
RK
If my response is helpful, please select Helpful. If my response answers your question, please select Accept as Solution.