How to add comments while creating process?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2013 01:11 AM
Hi,
I am using activiti-cdi to start the process. I didn't find anyway to add comments to the newly created task.
Help Please….
Regards
Sherlock.
I am using activiti-cdi to start the process. I didn't find anyway to add comments to the newly created task.
Help Please….
Regards
Sherlock.
Labels:
- Labels:
-
Archive
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2013 04:12 AM
On the taskService:
void addComment(String taskId,
String processInstanceId,
String message)
But I assume you're looking for something CDI specific?
void addComment(String taskId,
String processInstanceId,
String message)
But I assume you're looking for something CDI specific?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2013 06:49 AM
hi jorambarrez,
Thanks for the reply. Yes I'm looking for adding comments while calling startProcessBykey method in BusinessProcess. My situation is while creating the new task i want to add comments to it , but not after the task created.
Thanks for the reply. Yes I'm looking for adding comments while calling startProcessBykey method in BusinessProcess. My situation is while creating the new task i want to add comments to it , but not after the task created.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2013 05:51 AM
I'm afraid that's not possible out of the box. You could probably do it, but it will require some custom coding (ie extra command, anotation, etc…)
