
I need chage variable value while execute Run method for the user open again dialog have new value.
I tried using:
#define.CurrentVersion(1)
#localmacro.CurrentList
this.reAuthId
#endmacro
public void run()
{
this.reAuthId = New Value;
xSysLastValue::saveLast(this);
}
But this only work while dialog is active i need change value when batch execute in server
I use pending - complete pattern
I create filed type enum in my table that can contain two values pending or complete
That is to say, when task is complete, it change status column to "completed" when not exists pending rows. When user open dialog again and not exists pending rows then change ReAuthId by new value.