08-28-2019 10:26 PM
I have a user review task (which is parallel and Multi-instance type), which has custom form in Activiti with custom outcomes (Approve and Reject)... once the task gets completed, I want to know the form variable into which the task outcome is stored... I believe it is one of the task variables.... I want to access it in a Java Task Listener on task complete... please guide...
08-29-2019 05:27 AM
In Alfresco 5.2 I use the following:
public void notify(DelegateTask task)
{
String outcome = (String)task.getVariableLocal("outcome_property_name");
. . .
}
Explore our Alfresco products with the links below. Use labels to filter content by product module.