I'm creating a Business Process that:
- Transforms one object into another using DTL
- Sends this object to an operation
- Transform the object obtained in first point into another one using DTL
- Sends the second object to an operation
The Business Process is created with BPL, and objects are stored in BP context. When I execute this Process, in the 3rd point the object obtained in first transformation doesn't exist. It's empty.
I have tried to make transformation before making CALL's, I mean:
- Transforms one object into another using DTL
- Transform the object obtained in first point into another one using DTL
- Sends first object to an operation
- Sends the second object to an operation
And after sending the first object, the second doesn't exist.
I thought it was a bug from new version 2025.1, but I have tested it on 2024.3 and it happens the same.
I have created a Business Process with code and it works perfectly fine, so I think the problem is with the context.
Is this a bug? Or is an expected functionallity?