I noticed that parameters that I'm populating with global variables are displaying as "blank".
The only reason that I took notice is that in one environment the flow is running and in another it isn't. When comparing them, I saw that the variables are blank in both.
So, in the code below the gblCaseNumber and gblStudentID variables are displaying as blank. It's clearly not affecting anything in our development side, but I wasn't sure if that was normal behavior or not.
Set(
varViewSpinner,
true
);
UpdateContext({locSpinnerMessage: "Printing page. Please wait."});
UpdateContext({locPrintInfo: GetreferralformdataintoHTML.Run(gblCaseNumber, gblStudentID,User().Email)});
Notify("Your requested report will be sent via email link", NotificationType.Information);
Set(
varViewSpinner,
false
);