Glide records can not be dot-walked on the MID serverDescriptionGlide records can not be dot-walked on the MID server. Users have no indication that dot-walking a Record on MID is not supported.Steps to Reproduce 1- Create an action that has an input of type record.2- Use a property of the record in a step such as a script step.3- Output the property.4- Create a flow where the trigger is the type of record the action expects.5- Add the action and pass in the triggered record.6- Add a log of the output of the action.7- Run the test.Notice the output is blank and there is no indication that the record could not be dot-walked.WorkaroundAdd a Script step as listed below at the end of the action. This will force the plan back to the instance, so that, when the next iteration executes, it will perform the Look Up with the correct sys_id.Required runtime: InstanceScript:(function execute(inputs, outputs) {gs.log("force shift back to instance");})(inputs, outputs);Related Problem: PRB1380621