GlideRecord is picking up choice from a different tableDescriptionGlideRecord is picking up choice from a different tableSteps to Reproduce 1. in the incident table, add a dictionary entry of type List, and SaveColumn label: Test List Choice Column name: test_list_choice2. Add 2 choices:a. Label: Non-awardValue: nawdSequence: 1b.Label: UndergraduateValue: ugrdSequence: 23. in the problem table, add a dictionary entry of type List, and SaveColumn label: Test List Choice Column name: test_list_choice4. Add a choice:Label: NAWDValue: NAWDSequence: 05. run this background script, where sys_id is a sys_id of an incident record:var gr = new GlideRecord('incident')gr.get('<sys_id>')gr.test_list_choice = 'nawd'gr.update()gs.info(gr.test_list_choice);expected behavior: the test_list_choice in the incident record will get the value 'nawd'actual behavior: the test_list_choice in the incident record got the value 'NAWD'WorkaroundThis problem has been fixed. If you are able to upgrade, review the Fixed In or Intended Fix Version fields to determine whether any versions have a planned or permanent fix.Related Problem: PRB1480175