Reference fields not working

Radha K
Kilo Guru

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.
1 ACCEPTED SOLUTION

Radha K
Kilo Guru

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.

View solution in original post

17 REPLIES 17

Hi Radha,



You can look for ACL & also make sure you have not impersonated any non-admin user in the same browser specific instance.


Kalaiarasan Pus
Giga Sage

Have you also checked reference qualifier of the field?


Radha K
Kilo Guru

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.