Update Global Variable
Can you update a global variable from a TaskScript. I have been testing the following code but it never updates the global variable. It will read the variable that is there but not overwrite it.
GBL_BATCHID = ‘CRM-‘ & DateTime.Now.ToString(‘MMM-yy’)
Messagebox.Show(GBL_BATCH)
return true
Thanks in advance
GBL_BATCHID = ‘CRM-‘ & DateTime.Now.ToString(‘MMM-yy’)
Messagebox.Show(GBL_BATCH)
return true
Thanks in advance