List collector assigned value via g_form.setValue while ordering form but its not showing when opening RITM form and cause dirty formDescriptionList collector assigned value via g_form.setValue while ordering form but its not showing when opening RITM form and cause dirty form Steps to Reproduce 1. Navigate to OOB Instance. 2. Create list collector variable in one of the Catalog item and have script to auto populate value inside this variable. g_form.setValue('cost_center','Sales');3. So cost center is auto populated when you load form for user who has cost center 4. Submit this form and open respective RITM record. Expected - RITM record should show cost center populated Actual - RITM record does not show cost center populated. If you refresh page then it prompts "Changes that you made may not be saved." WorkaroundWe need to pass the sys_id as value for the variables like reference and list collector... Correct method of usage - g_form.setValue("cost_center", "sys_id", ["displayValue"] ); if you want to see the same behaviour in platform/UI16 you need to add attribute "glide_list" to "cost_center" variable.Related Problem: PRB1493067