02-23-2012 10:35 AM
<userTask id="preparationOfProjectCharter" activiti:assignee="${bpm_assignee.properties.userName}">
<documentation>
My message
</documentation>
and that works fine. When user gets this task in his task list "My message" is there above task link. In mean time i upgraded from alfresco enterprise 4.0b to 4.0 and above code doesn't work any more. User gets his task, but above task says (No message). I tried in my process definition on task create listener to set bpm:description property but this also didn't fix my problem. Any idea on this?02-29-2012 03:51 AM
05-07-2012 04:02 PM
task.setVariable('bpm_workflowDescription', "BlaBlaBla");
But it only changes the message of the next task, not the current one, do you know how to do it?06-21-2013 02:42 PM
08-28-2013 09:26 AM
09-19-2013 03:27 PM
06-26-2015 09:58 AM
var task = workflow.getTask("activiti$36685");
var props = task.getProperties();
props["bpm:description"] = "SET MESSAGE";
task.setProperties(props);
task.setVariable('bpm_description', 'SET MESSAGE');
06-26-2015 12:03 PM
task.description = "YOUR DESCRIPTION!";
11-09-2015 01:38 PM
06-15-2018 11:47 AM
What do you mean On create?
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.