Hi
I try to use OpenKM 5.0 (first configuration, learn to use, tested) first steps. I read documentation about workflow (http://wiki.openkm.com/index.php/Workflow_Guide) and base on video from (http://wiki.openkm.com/index.php/Overview -> http://docs.jboss.com/jbpm/v3/demos/mov ... erview.htm) i create a first workflow.
Unfortunately for me is not working
. It a simple workflow the scope is one person make a holliday request to Dorin, Dorin can request some extra information (and in this case need to return to user which start the workflow and this user have to add new information) and after can approve or disapprove the request.
On OpenKM I create workflow but from ordinar user (say Petre) it not request first fields and also Dorin can make action on workflow. I put here the code from workflow please can somebody to explain what I do wrong where i make mistakes.
Thanks, please help me to create a firs workflow
Petre
I attach the ".par" file - I need to tell that I don't know how to used
I show the code here:
I try to use OpenKM 5.0 (first configuration, learn to use, tested) first steps. I read documentation about workflow (http://wiki.openkm.com/index.php/Workflow_Guide) and base on video from (http://wiki.openkm.com/index.php/Overview -> http://docs.jboss.com/jbpm/v3/demos/mov ... erview.htm) i create a first workflow.
Unfortunately for me is not working

On OpenKM I create workflow but from ordinar user (say Petre) it not request first fields and also Dorin can make action on workflow. I put here the code from workflow please can somebody to explain what I do wrong where i make mistakes.
Thanks, please help me to create a firs workflow
Petre
I attach the ".par" file - I need to tell that I don't know how to used
I show the code here:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<process-definition xmlns="urn:jbpm.org:jpdl-3.2" name="holiday-request">
<start-state name="enter request">
<task swimlane="initiator" name="request entry">
<controller>
<variable access="read,write,required" name="start date" mapped-name=""></variable>
<variable access="read,write,required" name="duration"></variable>
</controller>
</task>
<transition to="evaluate request"></transition>
</start-state>
<task-node name="evaluate request">
<task name="request evaluation">
<assignment actor-id="dorin"></assignment>
<controller>
<variable access="read" name="start date"></variable>
<variable access="read" name="duration"></variable>
<variable access="read" name="info"></variable>
<variable access="read,write" name="decision"></variable>
</controller>
</task>
<transition to="give additional information" name="more info needed"></transition>
<transition to="end" name="approve/disapprove"></transition>
</task-node>
<task-node name="give additional information">
<task name="additional info entry" swimlane="initiator">
<controller>
<variable access="read" name="start date"></variable>
<variable access="read" name="duration"></variable>
<variable access="read,write" name="info"></variable>
</controller>
</task>
<transition to="evaluate request"></transition>
</task-node>
<end-state name="end"></end-state>
</process-definition>