I am using Business Central (JBPM) and I am trying to use the Custom Task Transform that transforms a Java input Object to an output Object.
As you see, I have installed the work task and the corresponding handler is in place.
In the corresponding data assignments I have set the input and output objects, but when I start the process i get the following.
09:57:05,321 ERROR [org.jbpm.process.workitem.transform.TransformWorkItemHandler] (default task-44) Failed to find a transform
That means that I didn't include the related transformation methods annotated with @Transformer
. In the handler class I see that there is the method registerTransformer(Class<?> transformer)
that must be called in order to load the transformers.
I don't know how to invoke the previous mentioned method withing Business Central. Is there a specific menu that I should go in order to do the registration?
Thanks in advance!