(No message) in My Tasks dashboard above task

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?Regards,
Aleksandar
- Labels:
-
Archive

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2012 03:51 AM
Regards,
Aleksandar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2012 04:02 PM
How did you set the variable? I'm trying to use:
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?Regards.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2013 02:42 PM
Please post your solution to this issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2013 09:26 AM
The functionality seems a bit inconsistent, some times it will show the task name as title in the my tasks dashlet and some times not. So I would also be interested in knowing the correct solution for this.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2013 03:27 PM
I have the same problem on Alfresco 4.2d, did you manage to solve this ?
regards
Leszek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2015 09:58 AM
var task = workflow.getTask("activiti$36685");var props = task.getProperties();props["bpm:description"] = "SET MESSAGE";task.setProperties(props);
This code works fine in Javascript console, but if I try this code in taskListener - got error.
No info in logs. F*CK!!!
OK, go further.
When I try this code in taskListener (on create or on assignment - same result)
task.setVariable('bpm_description', 'SET MESSAGE');
I still see a "(No message)"
How can I set bpm:description variable in taskListener?
Please, help!
Thanx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2015 12:03 PM
task.description = "YOUR DESCRIPTION!";
Alfresco version: 5.0.a CE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2015 01:38 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2018 11:47 AM
What do you mean On create?
