Client Script displays "undefined" from Xanadu releaseIssue Client Script displays "undefined" from Xanadu when the object is "undefined".In Vancouver release, system does not display the value when the object is "undefined". This issue occurs when a client script utilizes g_scratchpad and the session does not have the target field object. Sample Steps: Create Client script for the Case creationIn this script, system tries to set u_description_XXXXX from g_scratchpad.NOTE: It is assumed that g_scratchpad.u_description_XXXXX has not been generated.function onLoad() { g_form.setValue('description', g_scratchpad.u_description_XXXXX);}Open the case and "undefined" is displayed from Xanadu release.CauseCurrently, unknownResolutionAs workaround, please add logic to confirm whether your object is "undefined" of not.Then, if your object is "undefined", please set ''. Example: function onLoad() { if (typeof g_scratchpad.u_description_XXXXX === 'undefined') { // console.log('The variable [g_scratchpad.u_description_XXXXX] is undefined.'); g_form.setValue('description', ''); } else { // console.log('The variable [g_scratchpad.u_description_XXXXX] is defined.'); g_form.setValue('description', g_scratchpad.u_description_XXXXX); }}