cancel
Showing results for 
Search instead for 
Did you mean: 

User task where is my task?

esseti
Champ in-the-making
Champ in-the-making
Hello all.
i've a problem:
i copied the example from here http://activiti.org/userguide/index.html#10minutetutorial then i deployed via the explorer:


<process id="financialReport" name="Monthly financial report reminder process" isExecutable="true">
    <startEvent id="theStart"></startEvent>
    <sequenceFlow id="flow1" sourceRef="theStart" targetRef="writeReportTask"></sequenceFlow>
    <userTask id="writeReportTask" name="Write monthly financial report" activiti:candidateUsers="kermit">
      <documentation>Write monthly financial report for publication to shareholders.</documentation>
    </userTask>
    <sequenceFlow id="flow2" sourceRef="writeReportTask" targetRef="verifyReportTask"></sequenceFlow>
    <userTask id="verifyReportTask" name="Verify monthly financial report" activiti:candidateGroups="management">
      <documentation>Verify monthly financial report composed by the accountancy department.
              This financial report is going to be sent to all the company shareholders.</documentation>
    </userTask>
    <sequenceFlow id="flow3" sourceRef="verifyReportTask" targetRef="theEnd"></sequenceFlow>
    <endEvent id="theEnd"></endEvent>
  </process>
- as kermit
- go to process
- model workspace
- import
- deploy

now i would expect to have a task in my task list, instead i've nothing.
if i check "my instances" i see this
https://dl.dropboxusercontent.com/u/4628172/Screen%20Shot%202014-10-31%20at%2016.38.38.png

but if i go to Task, there's nothing.
https://dl.dropboxusercontent.com/u/4628172/Screen%20Shot%202014-10-31%20at%2016.38.46.png

where's the problem then?
1 REPLY 1

smirzai
Champ on-the-rise
Champ on-the-rise
You have only deployed the process. Deploying does not create instance.
You have to instantiate at least one instance of your deployed process.