Dot walk within Flow inline script behaves different in QuebecPre-Quebec, Flows dot walked in inline script prior to executing the scripts themselves. This caused discrepancies between how inline scripts execute vs the rest of the platform. We have resolved this in Quebec where we allow dot walking to happen within the script engine. Now executing fd_data.trigger.current.caller.manager inline script produces a sys_id exactly as this script does in Scripts - background: gr = new GlideRecord("incident");gr.get("<sys_id>");gs.info(gr.caller_id.manager); *** Script: d3383a875b0132003d1c484c11f91a5b The recommended approach is to update flows to work with sys_ids going forward. Another difference is the type of a field may now be an Object rather than a string as it was before. gr = new GlideRecord('incident');gr.query();gr.next();var num = gr.number;var short_desc = gr.short_description;gs.print(typeof num); To convert these objects to a string in the platform append an empty string to it: gs.print(typeof (num + '')); As a last resort customers may create the property com.glide.hub.flow.inline_script.dotwalk.enabled and set it to a value of true. This will revert to the pre-Quebec behavior after flows and actions are re-compiled. Flows and actions may need to recompiled for this to take effect. Please see KB0963031 for details.