The deprecated feature of Transformations have been removed on ALBPM version 6.0.
Transformation methods existing on ALBPM 5.x projects are automatically converted
to regular PBL code when the project is imported in ALBPM Studio 6.0.3+. Backwards
compatibility is preserved, so no change is needed on your existing code base.
Each Transformation method is converted into three new methods:
- <transformation>Method() - Main method replacing transformation
- <transformation>MethodBegin() - helper method
- <transformation>MethodEnd() - helper method
For example, a Transformation method named
toMyObject() on your
5.x project is converted into these three methods:
- toMyObject() - Main method replacing transformation
- toMyObjectBegin() - helper method invoked from toMyObject()
- toMyObjectEnd() - helper method invoked from toMyObject()