The JADE 2022 release meets tomorrow’s business demands.
It would be nice if Jade could work out if an object needs updating if it has changed. An example of this is attached. Why has the Object increased the edition the attribute is the same. To get around this we have to put in "if oldValue <> newValue then - do the update". It would streamline our code base if we didn't have to do this check first and we could be confident an object won't be changed/locked unless its attribute is changing.
Nice idea. In the interim, you can simplify the repeated boiler plate code by creating your own "setValue" method on the Object class:
Repeated boiler plate version of code:
Simplified code:
Of course, feel free to use a method name which is suitable for your development standards if you don't like setValue as the method name.
Hope that helps,
BeeJay.