Difference between revisions of "Workflow Course: Exercise 8"

From OpenKM Documentation
Jump to: navigation, search
(Created page with '== Step 1 - Create real life example == The idea of this exercise is create a real life approve workflow. For doing it you should: * Start node with slimlane initiator. * Crea…')
 
Line 26: Line 26:
  
 
In this case we have created nodes to make the actions. We made it with the idea to be more clear, but in real case we suggest using transactions for doing this kind of logic ( updating metadata ), because workflow will have less boxes.
 
In this case we have created nodes to make the actions. We made it with the idea to be more clear, but in real case we suggest using transactions for doing this kind of logic ( updating metadata ), because workflow will have less boxes.
 +
 +
At [[Workflow_Course:_Resources]] can be found the complete solution.
  
 
[[Category: Workflow Course]]
 
[[Category: Workflow Course]]

Revision as of 12:34, 29 April 2013

Step 1 - Create real life example

The idea of this exercise is create a real life approve workflow.

For doing it you should:

  • Start node with slimlane initiator.
  • Create metadata with status select ( take a look here )
  • Create a form to creator, reviewer and approver task.
  • Assign slimlane initiator to task creator.
  • Assign actor reviewer to reviewer task.
  • Assign actor approver to approver task.
  • In node metadata_created change document metadata status to created.
  • In node metadata_reviewed change document metadata status to reviewed.
  • In node metadata_approved change document metadata status to approved.
  • In node cancellation change document metadata status to canceled and send mail to approver and reviewer users.

Wf10.png

Notes: For changing metadata property group use the class

String sysToken = JcrSessionManager.getInstance().getSystemToken();
OKMPropertyGroup.getInstance().setProperties(sysToken, path, grpName, properties);

In this case we have created nodes to make the actions. We made it with the idea to be more clear, but in real case we suggest using transactions for doing this kind of logic ( updating metadata ), because workflow will have less boxes.

At Workflow_Course:_Resources can be found the complete solution.