I need to know how to fetch the task id from within a BPMN process. I tried the followings without luck:

<serviceTask id="assignApplicationId" name="Assign Application Id" 
  activiti:expression="${sequenceUtil.getOutboundId(**task.id**)}" 
  activiti:resultVariable="OutboundWF_ApplicationNumber"/>

and

<serviceTask id="assignApplicationId" name="Assign Application Id" 
  activiti:expression="${sequenceUtil.getOutboundId(**bpm_taskid**)}" 
  activiti:resultVariable="OutboundWF_ApplicationNumber"/>
link|improve this question
feedback

1 Answer

According to the manual, access to the DelegateTask only works for expressions evaluated in task listeners, so it does not seem to be possible to fetch the task ID with other expressions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.