SlideShare a Scribd company logo
Hands-on Webinar
Camunda BPM 7.2
Tasklist and Javascript Forms SDK
 10+ years experience with workflow and Java EE
 Co-Founder of Camunda
 Evangelist
 Head of Consulting
@berndruecker
bernd.ruecker@camunda.com
Bernd Rücker
 What is Human Task Management?
 Introduction to Camunda Tasklist
 Demo & Hands-On
 More details on Camunda Tasklist
 Summary
Agenda
Process example: Vacation Request
The process to get there…
Task Management
Boss Human
Ressources
Task Management
Group
Task List
Personal
Task List
Task
candidate-groups
candidate-users
assignee
create complete
claim
 Complete rewrite
 Improved Usability & Layout
 Exposes more existing features of the core engine
 Added new features
 Goal: Production-Ready / Usable out-of-the-box
Camunda BPM 7.2 ships a new tasklist
Tasklist in camunda BPM
1 2 3
Groups & Personal Task List (via Filters)
Filters and Authorization
Task Forms
Task Forms
Different types of task forms
Embedded
Task Form
Generated
Task Form
Generic
Task Form
External Task Form
HTML-Form
provided by
Process
Application
(HTML File)
Rendered in
Tasklist
Form Data
Metadata
provided by
Process
Application
(BPMN 2.0
XML)
Rendered in
Tasklist
Completely
generic,
shows all
process
variables
Rendered in
Tasklist
Forwards to
external URL
handing over
parameters
(e.g. taskId)
E.g. HTML5,
JSF, PHP, …
Shown embedded
in tasklist
Demo
Tasks from different sources
Processes
(BPMN 2.0)
Cases
(CMMN 1.0)
AdHoc / API
 Greatly simplifies the implementation of task forms.
 You can directly bind HTML form controls to process variables.
 The Forms SDK handles the fetching of the variable values from the
process engine, type conversions and so on.
 The Forms SDK optionally integrates with AngularJS to take
advantage of AngularJS form validation and other AngularJS goodies.
 Examples for e.g. DatePicker exist in the docs
Camunda JavaScript Forms SDK
<form>
<input type="text"
cam-variable-name="CUSTOMER_ID"
cam-variable-type="String">
<input type="text"
cam-variable-name="CUSTOMER_REVENUE"
cam-variable-type="Float">
</form>
By the way – easy to build: Form Builder
see e.g. https://github.com/minikomi/Bootstrap-Form-Builder
 Client API for JavaScript available:
https://github.com/camunda/camunda-bpm-sdk-js
 Uses REST-API internally
 Can be used o build HTML5 applications easier/faster
 Could be used for server side Javascript (e.g. node.js), see
https://github.com/camunda/camunda-bpm-
examples/tree/master/sdk-js/nodejs
Javascript SDK
var CamSDK = require('camunda-bpm-sdk-js');
var camClient = new CamSDK.Client({apiUri: 'http://localhost:8080/engine-rest', mock: false});
var processDefinitionService = new camClient.resource('process-definition');
// query process definitions
processDefinitionService.list({ latest: true, active: true}, function (err, results) {
definitions.forEach(function(definition) {
console.log('start process instance ' + definition.name);
processDefinitionService.submit({id: definition.id}, function (err) {
console.log(err);
});
});
});
And still: Out-of-the-box support for JSF 2.0/CDI
Reference process variables
directly in Taskforms
Camunda Engine
HTML5
 REST-Backend
−JAX-RS
 Frontend
−AngularJS
−Bootstrap
−JQuery
−RequireJS
−Camunda BPM SDK JS
 Development: Grunt, Protractor,
Karma, browserify, npm, …
Technology used in Tasklist
JAX-RS
REST-API
HTML + AngularJS
JSON
This is
AWESOME!
 You can search for tasks (Server side! With correct pagination.)
 You can navigate through tasks using the keyboard
 You can maximize task forms
 You can add comments
 Logo and Color Schema can be easily changed
 Using bpmn.io for visualization of current task
 If you get assigned to a task in the same process immediately after
completing one – you get a notification (according to the UI-Mediator-
Pattern)
 Tasklist is internally prepared for Plugins
 …
Nice Usability features (I often forget in the demo)
 Work on API level (Server side!)
 Are stored in the database
 Available via REST
 Currently only for tasks – but not tied to it
 Can leverage expression language
Task Filters
 Tasklist can be built by single REST-Request and uses pagination:
−…/filter/0bd751ec…/list?firstResult=0&maxResults=15
−Result = Single JSON (next slide)
 Optional HAL Relations Cache (http://docs.camunda.org/7.2/api-
references/rest/#overview-hypertext-application-language-hal-
caching-of-hal-relations)
 Results in great performance for typical use cases
Tasklist and Performance
HAL-Response
{
"_embedded": {
"assignee": [
"id": "demo",
"firstName": "Demo", ...
}
],
"processDefinition": [
{
"_links": {
"deployment": {
"href": "/deployment/0bbfab20..."
}...
},
"id": "invoice:1:0bcca373...",
"key": "invoice",
"version": 1, ...
}
],
"task": [
{
"_links": {
"assignee": {
"href": "/user/demo"
},
"processDefinition": {
"href": "/process-definition/invoice:1:0bcca373..."
}, ...
},
"_embedded": {
"variable": [
{
"name": "amount",
"value": "30€",
"type": "String", ...
}, ...
"id": "5c4ca688-8f6a-11e4-83d5-1c4920524153",
"name": "Assign Approver",
"assignee": "demo",
"created": "2014-12-29T15:52:50", …
I18N
see
https://github.com/camunda/camunda
-tasklist-translations
Extensability &
Deveoper-Friendlynes
(some examples)
 See https://github.com/camunda/camunda-bpm-
examples/tree/master/usertask/task-assignment-email
Task Assignment Email
Listener to send
email to assignee /
members of group
 See https://github.com/camunda/camunda-
consulting/tree/master/snippets/task-assignment-absence
Handle absent assignees
Listener querying
absent information
 Four eyes principle
 Automatically added escalation
 Set default due date via configuration
 Change task names on the fly (e.g. I18N)
 …
More requirements can be easily built
Camunda Tasklist - build with reality in mind
“The tasklist is the central point of contact for
business users with the BPM platform and is
therefore an essential component. The
innovative implementation of the Camunda
tasklist matches the DAB bank's web
technology stack perfectly and saves extensive
in-house development. The functionality is
optimally aligned to the Camunda BPM
platform and due to its flexible adaptability also
fulfills the needs of a bank.
Karl Brandner, Chief Architect
 Enhance Authorizations
 Plug-ins in the Tasklist (compare to Cockpit)
 Allow creation of tasks not related to processes or cases
 Roadmap always depends on usage and feedback!
Next steps and further ideas
Thank you!
Questions?
Start now!
Open Source Edition
• Download:
www.camunda.org
• Docs, Tutorials etc.
• Forum
• Meetings
Enterprise Edition
• Trial:
www.camunda.com
• Additional Features
• Support, Patches etc.
• Consulting, Training
http://camunda.com/bpm/consultation/
info@camunda.com | US +1.415.800.3908 | DE +49 30 664040 900

More Related Content

PPTX
Agile methodology
PDF
Webinar: BPMN with camunda
PPT
Agile Scrum Methodology
PDF
AWS_Architecture_e-commerce
PPT
Agile Scrum Presentation-Detailed
PPTX
Agile vs. waterfall - The fundamentals differences
PDF
Java Performance Tuning
PPT
Agile Testing Process
Agile methodology
Webinar: BPMN with camunda
Agile Scrum Methodology
AWS_Architecture_e-commerce
Agile Scrum Presentation-Detailed
Agile vs. waterfall - The fundamentals differences
Java Performance Tuning
Agile Testing Process

What's hot (20)

PPTX
Feature driven development (FDD)
PDF
Jira Agile
PPTX
Camunda BPM 7.13 Webinar
PPTX
QA Best Practices in Agile World_new
PPT
Agile QA presentation
PPTX
Agile scrum fundamentals
PPTX
Agile Methodology
PPTX
The Extreme Programming (XP) Model
PDF
Agile software development
PPT
SOFTWARE QUALITY ASSURANCE.ppt
PPTX
Waterfall model ppt final
PDF
Agile sdlc
PPT
Agile Software Development Overview
PPTX
Introduction to Agile - Scrum, Kanban, and everything in between
PDF
Agile Software Development Overview
PPTX
Agile vs. waterfall
PDF
Agile Scrum Overview
PPT
Agile presentation
PDF
Introduction to Apache ActiveMQ Artemis
PPT
Présentation de JIRA Agile par Stéphane Génin au Kanban Day 2015
Feature driven development (FDD)
Jira Agile
Camunda BPM 7.13 Webinar
QA Best Practices in Agile World_new
Agile QA presentation
Agile scrum fundamentals
Agile Methodology
The Extreme Programming (XP) Model
Agile software development
SOFTWARE QUALITY ASSURANCE.ppt
Waterfall model ppt final
Agile sdlc
Agile Software Development Overview
Introduction to Agile - Scrum, Kanban, and everything in between
Agile Software Development Overview
Agile vs. waterfall
Agile Scrum Overview
Agile presentation
Introduction to Apache ActiveMQ Artemis
Présentation de JIRA Agile par Stéphane Génin au Kanban Day 2015
Ad

Viewers also liked (20)

PDF
Case study: Camunda BPM in PwC project
PDF
Camunda BPM at bpmNEXT 2016
PDF
Camunda BPM 7.2: Connectors, Data, Scripting (English)
PDF
Camunda BPM Platform and Angular.js
PDF
Sneak Preview: Camunda Optimize
PPTX
Camunda BPM in Distributed Applications - Allianz Indonesia
PDF
Camunda BPM 7.2 - English
PDF
Camunda BPM 7.4 - What can you expect from the next release?
PDF
Camunda Docker
PDF
Camunda and Apache Cassandra
PDF
camunda latest features and roadmap
PDF
SFScon16 - Edmund Schöpf: "Camunda BPM in Banking"
PDF
2011 10-26 bpm-tools
PPTX
Jug muenchen bpmn in der praxis
PDF
jBPM5 Community Training - Module 2.5: BPM For Developers
PDF
WJAX 2012: BPMN in der Praxis
PDF
Open Source Workflowmanagement mit BPMN und CMMN
PDF
Developer-Friendly BPM
PPTX
Integration of BPMN and CMMN
PPTX
WCF Fundamentals
Case study: Camunda BPM in PwC project
Camunda BPM at bpmNEXT 2016
Camunda BPM 7.2: Connectors, Data, Scripting (English)
Camunda BPM Platform and Angular.js
Sneak Preview: Camunda Optimize
Camunda BPM in Distributed Applications - Allianz Indonesia
Camunda BPM 7.2 - English
Camunda BPM 7.4 - What can you expect from the next release?
Camunda Docker
Camunda and Apache Cassandra
camunda latest features and roadmap
SFScon16 - Edmund Schöpf: "Camunda BPM in Banking"
2011 10-26 bpm-tools
Jug muenchen bpmn in der praxis
jBPM5 Community Training - Module 2.5: BPM For Developers
WJAX 2012: BPMN in der Praxis
Open Source Workflowmanagement mit BPMN und CMMN
Developer-Friendly BPM
Integration of BPMN and CMMN
WCF Fundamentals
Ad

Similar to Camunda BPM 7.2: Tasklist and Javascript Forms SDK (English) (20)

PPTX
Camunda for Modern Web Applications by Corinna Cohn and Sowmya Raghunathan
PDF
[Srijan Wednesday Webinar] Building BPMN Web Portals with Camunda and Drupal
PDF
CamundaCon 2022 Keynote: The Process Orchestration Journey
PDF
Camunda BPM 7.2: Performance and Scalability (English)
PPTX
Camunda BPM - Said Mengi
PDF
Camunda BPM 7.2: CMMN Case Management (English)
PDF
camunda for developer-friendly BPM
PDF
2016 JFall Camunda BPM
PDF
Camunda-BPM-Loan-Assessment-Process-Lab-v1.0.pdf
PDF
Cédric Vidal from Quicksign: Building a digital on-boarding microservices pla...
PDF
2014 Pre-MSc-IS-5 Process Layer
PDF
Camunda BPM 7.12 Release Webinar
PPTX
Final pre power_group_executing bpm processes with Camunda
PDF
community day 2013 - Consulting talks about camunda BPM Best Practices
PDF
community day 2013 - Daniel talks about camunda BPM technical vision
PPTX
BPMN and DMN for Processing Business Data with Camunda
PDF
Webinar: Camunda und Liferay
PDF
Camunda GraphQL Extension (09/2017 Berlin)
PDF
Camunda Community meetup 20 juni 2024.pdf
PDF
[Webinar] Camunda Optimize Release 3.0
Camunda for Modern Web Applications by Corinna Cohn and Sowmya Raghunathan
[Srijan Wednesday Webinar] Building BPMN Web Portals with Camunda and Drupal
CamundaCon 2022 Keynote: The Process Orchestration Journey
Camunda BPM 7.2: Performance and Scalability (English)
Camunda BPM - Said Mengi
Camunda BPM 7.2: CMMN Case Management (English)
camunda for developer-friendly BPM
2016 JFall Camunda BPM
Camunda-BPM-Loan-Assessment-Process-Lab-v1.0.pdf
Cédric Vidal from Quicksign: Building a digital on-boarding microservices pla...
2014 Pre-MSc-IS-5 Process Layer
Camunda BPM 7.12 Release Webinar
Final pre power_group_executing bpm processes with Camunda
community day 2013 - Consulting talks about camunda BPM Best Practices
community day 2013 - Daniel talks about camunda BPM technical vision
BPMN and DMN for Processing Business Data with Camunda
Webinar: Camunda und Liferay
Camunda GraphQL Extension (09/2017 Berlin)
Camunda Community meetup 20 juni 2024.pdf
[Webinar] Camunda Optimize Release 3.0

More from camunda services GmbH (20)

PPTX
Using Camunda on Kubernetes through Operators
PPTX
Predictive Process Monitoring in Camunda
PPTX
Camunda Product Update – The present and the future of Process Automation
PPTX
Tips on how to build Camunda Run for production
PPTX
Process Driven Customer Interaction
PPTX
Exploring Automation in Government
PDF
The Pulse of Process Automation
PDF
Blitzumfrage zur aktuellen Nutzung von Prozessautomatisierung in Unternehmen
PDF
Webinar - A Developer's Quick Start Guide to Open Source Process Automation U...
PPTX
Extending human workflow preparing people and processes for the digital era w...
PDF
Webinar: Monitoring & Orchestrating Your Microservices Landscape using Workfl...
PDF
Process Automation Forum, Processautomatisierung neu gedacht für das digitale...
PDF
Process Automation Forum Zurich, finnova AG Bankware
PDF
Process Automation Forum Munich, Swiss Life
PDF
Process Automation Forum Vienna, A1 & J-IT
PDF
Process Automation Forum Vienna, Raiffeisen
PDF
Process Automation Forum Düsseldorf, Provinzial Rheinland Versicherung AG
PDF
[Webinar] BPM Renaissance: 5 Tips to Thrive in a Cloud-Native World
PDF
[Webinar] Announcing the Camunda Cloud Public Beta - February 2020
PDF
Zeebe + Operate January 2020 Update
Using Camunda on Kubernetes through Operators
Predictive Process Monitoring in Camunda
Camunda Product Update – The present and the future of Process Automation
Tips on how to build Camunda Run for production
Process Driven Customer Interaction
Exploring Automation in Government
The Pulse of Process Automation
Blitzumfrage zur aktuellen Nutzung von Prozessautomatisierung in Unternehmen
Webinar - A Developer's Quick Start Guide to Open Source Process Automation U...
Extending human workflow preparing people and processes for the digital era w...
Webinar: Monitoring & Orchestrating Your Microservices Landscape using Workfl...
Process Automation Forum, Processautomatisierung neu gedacht für das digitale...
Process Automation Forum Zurich, finnova AG Bankware
Process Automation Forum Munich, Swiss Life
Process Automation Forum Vienna, A1 & J-IT
Process Automation Forum Vienna, Raiffeisen
Process Automation Forum Düsseldorf, Provinzial Rheinland Versicherung AG
[Webinar] BPM Renaissance: 5 Tips to Thrive in a Cloud-Native World
[Webinar] Announcing the Camunda Cloud Public Beta - February 2020
Zeebe + Operate January 2020 Update

Recently uploaded (20)

PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
System and Network Administraation Chapter 3
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Nekopoi APK 2025 free lastest update
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
System and Network Administration Chapter 2
PPTX
Odoo POS Development Services by CandidRoot Solutions
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Reimagine Home Health with the Power of Agentic AI​
System and Network Administraation Chapter 3
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Design an Analysis of Algorithms I-SECS-1021-03
2025 Textile ERP Trends: SAP, Odoo & Oracle
Understanding Forklifts - TECH EHS Solution
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
How to Migrate SBCGlobal Email to Yahoo Easily
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
VVF-Customer-Presentation2025-Ver1.9.pptx
Operating system designcfffgfgggggggvggggggggg
CHAPTER 2 - PM Management and IT Context
Nekopoi APK 2025 free lastest update
Adobe Illustrator 28.6 Crack My Vision of Vector Design
System and Network Administration Chapter 2
Odoo POS Development Services by CandidRoot Solutions
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Which alternative to Crystal Reports is best for small or large businesses.pdf

Camunda BPM 7.2: Tasklist and Javascript Forms SDK (English)

  • 1. Hands-on Webinar Camunda BPM 7.2 Tasklist and Javascript Forms SDK
  • 2.  10+ years experience with workflow and Java EE  Co-Founder of Camunda  Evangelist  Head of Consulting @berndruecker bernd.ruecker@camunda.com Bernd Rücker
  • 3.  What is Human Task Management?  Introduction to Camunda Tasklist  Demo & Hands-On  More details on Camunda Tasklist  Summary Agenda
  • 5. The process to get there…
  • 7. Task Management Group Task List Personal Task List Task candidate-groups candidate-users assignee create complete claim
  • 8.  Complete rewrite  Improved Usability & Layout  Exposes more existing features of the core engine  Added new features  Goal: Production-Ready / Usable out-of-the-box Camunda BPM 7.2 ships a new tasklist
  • 10. Groups & Personal Task List (via Filters)
  • 14. Different types of task forms Embedded Task Form Generated Task Form Generic Task Form External Task Form HTML-Form provided by Process Application (HTML File) Rendered in Tasklist Form Data Metadata provided by Process Application (BPMN 2.0 XML) Rendered in Tasklist Completely generic, shows all process variables Rendered in Tasklist Forwards to external URL handing over parameters (e.g. taskId) E.g. HTML5, JSF, PHP, … Shown embedded in tasklist
  • 15. Demo
  • 16. Tasks from different sources Processes (BPMN 2.0) Cases (CMMN 1.0) AdHoc / API
  • 17.  Greatly simplifies the implementation of task forms.  You can directly bind HTML form controls to process variables.  The Forms SDK handles the fetching of the variable values from the process engine, type conversions and so on.  The Forms SDK optionally integrates with AngularJS to take advantage of AngularJS form validation and other AngularJS goodies.  Examples for e.g. DatePicker exist in the docs Camunda JavaScript Forms SDK <form> <input type="text" cam-variable-name="CUSTOMER_ID" cam-variable-type="String"> <input type="text" cam-variable-name="CUSTOMER_REVENUE" cam-variable-type="Float"> </form>
  • 18. By the way – easy to build: Form Builder see e.g. https://github.com/minikomi/Bootstrap-Form-Builder
  • 19.  Client API for JavaScript available: https://github.com/camunda/camunda-bpm-sdk-js  Uses REST-API internally  Can be used o build HTML5 applications easier/faster  Could be used for server side Javascript (e.g. node.js), see https://github.com/camunda/camunda-bpm- examples/tree/master/sdk-js/nodejs Javascript SDK var CamSDK = require('camunda-bpm-sdk-js'); var camClient = new CamSDK.Client({apiUri: 'http://localhost:8080/engine-rest', mock: false}); var processDefinitionService = new camClient.resource('process-definition'); // query process definitions processDefinitionService.list({ latest: true, active: true}, function (err, results) { definitions.forEach(function(definition) { console.log('start process instance ' + definition.name); processDefinitionService.submit({id: definition.id}, function (err) { console.log(err); }); }); });
  • 20. And still: Out-of-the-box support for JSF 2.0/CDI Reference process variables directly in Taskforms
  • 21. Camunda Engine HTML5  REST-Backend −JAX-RS  Frontend −AngularJS −Bootstrap −JQuery −RequireJS −Camunda BPM SDK JS  Development: Grunt, Protractor, Karma, browserify, npm, … Technology used in Tasklist JAX-RS REST-API HTML + AngularJS JSON
  • 23.  You can search for tasks (Server side! With correct pagination.)  You can navigate through tasks using the keyboard  You can maximize task forms  You can add comments  Logo and Color Schema can be easily changed  Using bpmn.io for visualization of current task  If you get assigned to a task in the same process immediately after completing one – you get a notification (according to the UI-Mediator- Pattern)  Tasklist is internally prepared for Plugins  … Nice Usability features (I often forget in the demo)
  • 24.  Work on API level (Server side!)  Are stored in the database  Available via REST  Currently only for tasks – but not tied to it  Can leverage expression language Task Filters
  • 25.  Tasklist can be built by single REST-Request and uses pagination: −…/filter/0bd751ec…/list?firstResult=0&maxResults=15 −Result = Single JSON (next slide)  Optional HAL Relations Cache (http://docs.camunda.org/7.2/api- references/rest/#overview-hypertext-application-language-hal- caching-of-hal-relations)  Results in great performance for typical use cases Tasklist and Performance
  • 26. HAL-Response { "_embedded": { "assignee": [ "id": "demo", "firstName": "Demo", ... } ], "processDefinition": [ { "_links": { "deployment": { "href": "/deployment/0bbfab20..." }... }, "id": "invoice:1:0bcca373...", "key": "invoice", "version": 1, ... } ], "task": [ { "_links": { "assignee": { "href": "/user/demo" }, "processDefinition": { "href": "/process-definition/invoice:1:0bcca373..." }, ... }, "_embedded": { "variable": [ { "name": "amount", "value": "30€", "type": "String", ... }, ... "id": "5c4ca688-8f6a-11e4-83d5-1c4920524153", "name": "Assign Approver", "assignee": "demo", "created": "2014-12-29T15:52:50", …
  • 31.  Four eyes principle  Automatically added escalation  Set default due date via configuration  Change task names on the fly (e.g. I18N)  … More requirements can be easily built
  • 32. Camunda Tasklist - build with reality in mind “The tasklist is the central point of contact for business users with the BPM platform and is therefore an essential component. The innovative implementation of the Camunda tasklist matches the DAB bank's web technology stack perfectly and saves extensive in-house development. The functionality is optimally aligned to the Camunda BPM platform and due to its flexible adaptability also fulfills the needs of a bank. Karl Brandner, Chief Architect
  • 33.  Enhance Authorizations  Plug-ins in the Tasklist (compare to Cockpit)  Allow creation of tasks not related to processes or cases  Roadmap always depends on usage and feedback! Next steps and further ideas
  • 35. Start now! Open Source Edition • Download: www.camunda.org • Docs, Tutorials etc. • Forum • Meetings Enterprise Edition • Trial: www.camunda.com • Additional Features • Support, Patches etc. • Consulting, Training http://camunda.com/bpm/consultation/ info@camunda.com | US +1.415.800.3908 | DE +49 30 664040 900