I have a situation where I'm trying to utilize a global variable in my application event system, but it's not working as I hoped.
I created a variable called PDYConfigName, set type to Global, marked it as persistent and in my form script I set the variable like this:
Application.Variables("PDYConfigName").Value = "1"
Once the record is saved, it triggers the AES event handler where I want to use that variable. I try to access the variable using this event handler action:
SETVARVALUES(ConfigName = V(PDYConfigName))
When I check the event handler status, I see the variable but the value is always empty. ConfigName Does the V() command only access local variables from the AES? Is there another way to access a global variable from the AES?