Marc,
I completely understand your solution, But I can’t extract out the process completely into top level scopes (globals) because it is too complex and dependent on multiple forms, So I guess I will have to carefully handle the places where the UI is affected.
I was thinking about using “isBatchProcess” check by having batch Process arguments as true. You already cleared almost all of it just can you verify that “isBatchProcess” will be right approach? Or is there anything better than that in servoy?
Example:
if (isBatchProcess)
{
//save withour any UI changes
}
else
{
//UI changes then save
}