SlideShare a Scribd company logo
All Rights Reserved © Joget Inc
Joget Workflow v5
Designing your first Process
http://facebook.com/jogetworkflow
http://twitter.com/jogetworkflow
Last Revised on May 2016Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Prerequisites
• Installed Joget Workflow
• Understand various components of Joget Workflow
• General understanding of Joget Workflow as an end user
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Content
1. Business Process Design (BPE)
2. Designing your First Workflow with Process Builder
3. Running your First Automated Process
4. Process Monitoring
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Chapter 1
Business Process Design
(BPE)
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Business Process Management
• BPM is a management approach focused on aligning all
aspects of an organization with the wants and needs of
clients.
• Wants and needs = business goals
• BPM attempts to improve processes continuously.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Business Process Engineering
1. Identify a process
2. Identify start and end of the process
3. Identify process participants
4. Identify as-is process activities
5. Identify business rules
6. Identify areas for optimization: process activities and
business rules that can be:
– Improved
– Eliminated
7. Draw the improved / to-be process as flowchart
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Identify a Process
• E.g. Leave Application Process
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Start and End of The Process
• Start:
– Applicant submits leave application form
• End:
– Applicant informed with the leave application result
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Process Participants
• Leave applicant
• Leave approver
• HR department
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
• Applicant submits leave application form to HOD
• HOD checks applicant’s leave balance
• HOD approves / rejects leave application
• HOD informs applicant on the application status
• HOD submits approved leave application to HR
Department
As-Is Process Activities
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Business Rules
1. If leave balance is sufficient:
– Approver processes leave approval
Else if leave balance is insufficient:
– Reject leave application
2. If leave application is approved:
– Submits the approved leave application to HR Department
– Inform applicant on the approved leave
Else if leave application is rejected:
– Inform applicant on the rejected leave
Joget Inc Internal Use Only
To-Be Process Activities
As-Is
1. Applicant submits leave
application form to HOD
2. HOD checks applicant’s leave
balance
3. HOD informs applicant on
insufficient leave balance
4. HOD approves / rejects leave
application
5. HOD informs applicant on the
application status
6. HOD submits approved leave
application to HR Department
To-Be
1. Applicant submits leave
application form to HOD
2. System checks applicant’s
leave balance
3. System notifies applicant on
insufficient leave balance
4. HOD approves / rejects leave
application
5. System notifies applicant and
HR Department on the
application status via email
improved
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
To-Be Leave Application Process
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Now, Identify a Process, and Engineer It!
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Sample Process Statement
• Jane needs to get some stationeries.
The application that she submits will must be first
approved by her immediate superior before being sent to
the stationery disbursement department.
The department will then notify Jane accordingly.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Hands-On: Business Process Engineering
1. Process Name
2. Start and End
3. Participants
4. As-Is Activities 5. Business Rules
6. Optimize
7. To-Be Process
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Chapter 1 Review
• General understanding on how to best design a Process.
• With the finished process design, one can now implement
it in Joget Workflow.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Chapter 2
Designing your first Process
with Process Builder
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Business Process Automation
Business Process Design
Workflow Design
Workflow
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Create Your First App
• Design Apps -> Design New App
Naming convention:
Use Camel Case for better
legibility for App ID, Process
ID, Activity ID
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Create Your First App
• Leave Application
– Leave Approval Process
• Applicant submits
• Approver approves
• Applicant is notified of the application result
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Design your first Workflow Process
Joget Inc Internal Use Only
• Launch Process Builder – Processes > Design Processes
All Rights Reserved © Joget Inc
Defining your Workflow Process
Joget Inc Internal Use Only
• Rename Process ID and Name
All Rights Reserved © Joget Inc
Defining your Participant
• Rename the existing participant to Applicant
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Smart Guide*
Joget Inc Internal Use Only
• The Process Builder will highlights logical errors as you
design.
All Rights Reserved © Joget Inc
The * about Smart Guide
• Advises only on possible design errors.
• Will NOT advise on flawed business logic, design
inefficiency.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Insert Activities and Transitions
Joget Inc Internal Use Only
• Drag and drop, select the appropriate nodes to build the
Workflow Process.
All Rights Reserved © Joget Inc
Rename Activity ID and Name
Joget Inc Internal Use Only
• Rename the activity node to make it meaningful.
• Use camel case naming convention for ID (submitLeave).
Naming convention:
Use Camel Case for better
legibility for App ID, Process
ID, Activity ID
All Rights Reserved © Joget Inc
Completing the Design
• Insert the rest of the activities
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Implementing the Business Rule
• Route: Diamond-shaped node – Used to implement
business rules
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Defining the Transition Condition
• When the status variable is met with certain condition,
route accordingly.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Anything else…
• Handling the “otherwise”
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
If and otherwise…
• Does this resemble the typical programming if-else
condition block?
• Is this the best design?
• Why not if-else if?
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Declaring the Workflow Variable
• Variable used in the Workflow Process must be declared
in the Process’s properties.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Good to know
• Expressions in “Condition” are evaluated in Javascript.
• Workflow variable are stored as string.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Also Good to know
• Native Javascript functions are accepted.
– E.g. status == "Approved" && parseInt(balance) > 0
• Make sure of debugger tool such as Firebug to test the
expression before deploying.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Deploying your Process Design
• On the bottom left of the designer, click on “Deploy” to
push your finished design back into your Joget Workflow
App.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Chapter 2 Review
• Create a new App.
• Design and deploy Process design into the App.
• Understand the naming convention.
• Define various kind of process design elements.
• Define workflow variable and condition.
• Deploying process design back to Joget.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Chapter 3
Running Your First
Automated Process
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Verify the Workflow Process
• Run through the Workflow Process to verify.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Verify the Workflow Process
• Complete the Assignment to proceed.
Activity name configured
in Process Builder
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Accessing the Assignments
• App Center -> Inbox
Joget Inc Internal Use Only
Set the status variable as
“Approved”
All Rights Reserved © Joget Inc
Determining the flow using route
• Manipulating the Workflow using Workflow Variable
Joget Inc Internal Use Only
Set the status variable
as “Approved”
All Rights Reserved © Joget Inc
Completing the subsequent assignments
• Verify the flow and complete the flow.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Exercise
• Run the process again to test out the “Rejected” case
scenario.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Good to know
• At this point of time, the App is NOT published yet
therefore end user would not be able to run it.
• “Run Process” available at the App Designer’s Processes
tab is a convenient way to verify its flow.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Discussion
• Who is Applicant? Who is Approver? Have we actually
defined who they really are?
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Chapter 3 Review
• Evaluate and verify the workflow process.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Chapter 4
Process Monitoring
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Monitoring Processes
• Allows you to monitor the status of processes, both
running and completed.
• Allows you to view an audit trail of workflow actions
• Captures process data to allow for the generation of
reports.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Monitor Running Processes
• Click on Monitor from the Admin Bar to access.
Process Instance ID Format:
#_AppId_ProcessId
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Monitor Completed Processes
• Click on “Completed Processes” to see completed process
instances.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
View the Details of a Running Process
Instance
• From the list of running processes, click into any instance.
• Details on the current state of the selected process
instance will be shown.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
View the Details of a Running Process
Instance
Which activities are
completed?
Which activity is active now?
Activity Instance ID format:
#_ProcessInstanceId_ActivityId
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
View the Details of a Running Process
Instance
• There are buttons to allow actions to be taken on the process
instance.
– View Graph
• Displays the workflow diagram, where the current activities are highlighted in
yellow.
– Abort Instance
• Terminates the process instance, leaving the process data intact
– Remove Instance
• Permanently delete the process instance, process data will be removed as well
– Re-evaluate
• In cases where participant mappings are changed before the process is
completed, this action will allow pending assignments to be reassigned to the
newly mapped participants.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
View the Details of an Activity
Workflow variable value
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
View the Details of a Running Activity
Instance
• There are buttons to allow actions to be taken on the activity
instance.
– Re-evaluate
• Re-evaluate the participant mapping for the current activity instance.
– Re-evaluate assignment(s) for user
• Re-evaluate all assignments of a particular user.
– Reassign user
• Reassign one of the assignee(s) of this activity instance to another user.
– Complete
• Complete the activity instance as the current logged in user.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Discussion
• What if a person who is assigned to an assignment has
left the organization? What can we do?
• In production, when one has thousands of instances
running, how to quickly identify the troubled one?
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Chapter 4 Review
We have learnt to:
1. Monitor running and completed processes.
2. Drill down into activity details of each process that is
running or completed.
3. Debug workflow processes by examining workflow
variable value.
4. Appreciate the “Re-evaluate” feature in process
monitoring.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Module Review
1. Business Process Design (BPE)
2. Designing your First Workflow with Process Builder
3. Running your First Automated Process
4. Process Monitoring
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Recommended Further Learning
• Designing Forms for the activities created in your Process
Flow.
• Configure Process Tool plugin for the tool created in your
Process Flow.
Joget Inc Internal Use Only
All Rights Reserved © Joget Inc
Stay Connected with Joget Workflow
• http://www.joget.org
• http://community.joget.org
• http://twitter.com/jogetworkflow
• http://facebook.com/jogetworkflow
• http://youtube.com/jogetworkflow
• http://slideshare.net/joget
Joget Inc Internal Use Only

More Related Content

What's hot

Introduction to APIs
Introduction to APIsIntroduction to APIs
Introduction to APIs
Camille Baldock
 
Front end development
Front end developmentFront end development
Front end development
Maitrikpaida
 
Cucumber BDD
Cucumber BDDCucumber BDD
Cucumber BDD
Pravin Dsilva
 
API Test Automation
API Test Automation API Test Automation
API Test Automation
SQALab
 
Peraturan Pemerintah Nomor 13 Tahun 2019
Peraturan Pemerintah Nomor 13 Tahun  2019Peraturan Pemerintah Nomor 13 Tahun  2019
Peraturan Pemerintah Nomor 13 Tahun 2019
santoni toni
 
Cucumber & gherkin language
Cucumber & gherkin languageCucumber & gherkin language
Cucumber & gherkin language
selvanathankapilan
 
Tanya jawab-permasalahan-perjalanan-dinas-dalam-negeri
Tanya jawab-permasalahan-perjalanan-dinas-dalam-negeriTanya jawab-permasalahan-perjalanan-dinas-dalam-negeri
Tanya jawab-permasalahan-perjalanan-dinas-dalam-negeri
ampuhman
 
Selenium introduction
Selenium introductionSelenium introduction
Selenium introduction
Deepak Kumar Digar
 
Le Wagon - React 101
Le Wagon - React 101Le Wagon - React 101
Le Wagon - React 101
Sébastien Saunier
 
Asynchronous javascript
 Asynchronous javascript Asynchronous javascript
Asynchronous javascript
Eman Mohamed
 
Angular IO
Angular IOAngular IO
Angular IO
Jennifer Estrada
 
React.js 세미나
React.js 세미나React.js 세미나
React.js 세미나
Briantina
 
웨일브라우저 성능 및 메모리 최적화
웨일브라우저 성능 및 메모리 최적화웨일브라우저 성능 및 메모리 최적화
웨일브라우저 성능 및 메모리 최적화
NAVER D2
 
Copy Peraturan Gubernur NTB nomor 63 tahun 2017 tentang Tata Cara Penetapan N...
Copy Peraturan Gubernur NTB nomor 63 tahun 2017 tentang Tata Cara Penetapan N...Copy Peraturan Gubernur NTB nomor 63 tahun 2017 tentang Tata Cara Penetapan N...
Copy Peraturan Gubernur NTB nomor 63 tahun 2017 tentang Tata Cara Penetapan N...
R. Ferro Aviyanto
 

What's hot (14)

Introduction to APIs
Introduction to APIsIntroduction to APIs
Introduction to APIs
 
Front end development
Front end developmentFront end development
Front end development
 
Cucumber BDD
Cucumber BDDCucumber BDD
Cucumber BDD
 
API Test Automation
API Test Automation API Test Automation
API Test Automation
 
Peraturan Pemerintah Nomor 13 Tahun 2019
Peraturan Pemerintah Nomor 13 Tahun  2019Peraturan Pemerintah Nomor 13 Tahun  2019
Peraturan Pemerintah Nomor 13 Tahun 2019
 
Cucumber & gherkin language
Cucumber & gherkin languageCucumber & gherkin language
Cucumber & gherkin language
 
Tanya jawab-permasalahan-perjalanan-dinas-dalam-negeri
Tanya jawab-permasalahan-perjalanan-dinas-dalam-negeriTanya jawab-permasalahan-perjalanan-dinas-dalam-negeri
Tanya jawab-permasalahan-perjalanan-dinas-dalam-negeri
 
Selenium introduction
Selenium introductionSelenium introduction
Selenium introduction
 
Le Wagon - React 101
Le Wagon - React 101Le Wagon - React 101
Le Wagon - React 101
 
Asynchronous javascript
 Asynchronous javascript Asynchronous javascript
Asynchronous javascript
 
Angular IO
Angular IOAngular IO
Angular IO
 
React.js 세미나
React.js 세미나React.js 세미나
React.js 세미나
 
웨일브라우저 성능 및 메모리 최적화
웨일브라우저 성능 및 메모리 최적화웨일브라우저 성능 및 메모리 최적화
웨일브라우저 성능 및 메모리 최적화
 
Copy Peraturan Gubernur NTB nomor 63 tahun 2017 tentang Tata Cara Penetapan N...
Copy Peraturan Gubernur NTB nomor 63 tahun 2017 tentang Tata Cara Penetapan N...Copy Peraturan Gubernur NTB nomor 63 tahun 2017 tentang Tata Cara Penetapan N...
Copy Peraturan Gubernur NTB nomor 63 tahun 2017 tentang Tata Cara Penetapan N...
 

Viewers also liked

Joget Workflow v5 Training Slides - Module 4 - Localizing your Joget Workflow
Joget Workflow v5 Training Slides - Module 4 - Localizing your Joget WorkflowJoget Workflow v5 Training Slides - Module 4 - Localizing your Joget Workflow
Joget Workflow v5 Training Slides - Module 4 - Localizing your Joget Workflow
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 2 - Setting up Joget Workflow
Joget Workflow v5 Training Slides - Module 2 - Setting up Joget WorkflowJoget Workflow v5 Training Slides - Module 2 - Setting up Joget Workflow
Joget Workflow v5 Training Slides - Module 2 - Setting up Joget Workflow
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 21 - Userview Key
Joget Workflow v5 Training Slides - Module 21 - Userview KeyJoget Workflow v5 Training Slides - Module 21 - Userview Key
Joget Workflow v5 Training Slides - Module 21 - Userview Key
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 6 - Using your first Process Tool
Joget Workflow v5 Training Slides - Module 6 - Using your first Process ToolJoget Workflow v5 Training Slides - Module 6 - Using your first Process Tool
Joget Workflow v5 Training Slides - Module 6 - Using your first Process Tool
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 20 - Basic System Administration
Joget Workflow v5 Training Slides - Module 20 - Basic System AdministrationJoget Workflow v5 Training Slides - Module 20 - Basic System Administration
Joget Workflow v5 Training Slides - Module 20 - Basic System Administration
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 5 - Designing your First Form
Joget Workflow v5 Training Slides - Module 5 - Designing your First FormJoget Workflow v5 Training Slides - Module 5 - Designing your First Form
Joget Workflow v5 Training Slides - Module 5 - Designing your First Form
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 11 - SLA and Deadlines
Joget Workflow v5 Training Slides - Module 11 - SLA and DeadlinesJoget Workflow v5 Training Slides - Module 11 - SLA and Deadlines
Joget Workflow v5 Training Slides - Module 11 - SLA and Deadlines
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 12 - Version Control
Joget Workflow v5 Training Slides - Module 12 - Version ControlJoget Workflow v5 Training Slides - Module 12 - Version Control
Joget Workflow v5 Training Slides - Module 12 - Version Control
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 14 - Introduction to reporting
Joget Workflow v5 Training Slides -  Module 14 - Introduction to reportingJoget Workflow v5 Training Slides -  Module 14 - Introduction to reporting
Joget Workflow v5 Training Slides - Module 14 - Introduction to reporting
Joget Workflow
 
Joget v5 Getting Started Guide
Joget v5 Getting Started GuideJoget v5 Getting Started Guide
Joget v5 Getting Started Guide
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 16 - Preparing Development Environ...
Joget Workflow v5 Training Slides - Module 16 - Preparing Development Environ...Joget Workflow v5 Training Slides - Module 16 - Preparing Development Environ...
Joget Workflow v5 Training Slides - Module 16 - Preparing Development Environ...
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 9 - Hash variable
Joget Workflow v5 Training Slides - Module 9 - Hash variableJoget Workflow v5 Training Slides - Module 9 - Hash variable
Joget Workflow v5 Training Slides - Module 9 - Hash variable
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 7 - Designing your first Datalist
Joget Workflow v5 Training Slides - Module 7 - Designing your first DatalistJoget Workflow v5 Training Slides - Module 7 - Designing your first Datalist
Joget Workflow v5 Training Slides - Module 7 - Designing your first Datalist
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 15 - Introduction to Plugin Archit...
Joget Workflow v5 Training Slides - Module 15 - Introduction to Plugin Archit...Joget Workflow v5 Training Slides - Module 15 - Introduction to Plugin Archit...
Joget Workflow v5 Training Slides - Module 15 - Introduction to Plugin Archit...
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 8 - Designing your first Userview
Joget Workflow v5 Training Slides - Module 8 - Designing your first UserviewJoget Workflow v5 Training Slides - Module 8 - Designing your first Userview
Joget Workflow v5 Training Slides - Module 8 - Designing your first Userview
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 17 - Building Plugins
Joget Workflow v5 Training Slides - Module 17 - Building PluginsJoget Workflow v5 Training Slides - Module 17 - Building Plugins
Joget Workflow v5 Training Slides - Module 17 - Building Plugins
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 18 - Integrating with External System
Joget Workflow v5 Training Slides - Module 18 - Integrating with External SystemJoget Workflow v5 Training Slides - Module 18 - Integrating with External System
Joget Workflow v5 Training Slides - Module 18 - Integrating with External System
Joget Workflow
 
Joget Workflow v4 Getting Started
Joget Workflow v4 Getting StartedJoget Workflow v4 Getting Started
Joget Workflow v4 Getting Started
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 13 - Improving your form design an...
Joget Workflow v5 Training Slides - Module 13 - Improving your form design an...Joget Workflow v5 Training Slides - Module 13 - Improving your form design an...
Joget Workflow v5 Training Slides - Module 13 - Improving your form design an...
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 10 - Participant Mapping and Permi...
Joget Workflow v5 Training Slides - Module 10 - Participant Mapping and Permi...Joget Workflow v5 Training Slides - Module 10 - Participant Mapping and Permi...
Joget Workflow v5 Training Slides - Module 10 - Participant Mapping and Permi...
Joget Workflow
 

Viewers also liked (20)

Joget Workflow v5 Training Slides - Module 4 - Localizing your Joget Workflow
Joget Workflow v5 Training Slides - Module 4 - Localizing your Joget WorkflowJoget Workflow v5 Training Slides - Module 4 - Localizing your Joget Workflow
Joget Workflow v5 Training Slides - Module 4 - Localizing your Joget Workflow
 
Joget Workflow v5 Training Slides - Module 2 - Setting up Joget Workflow
Joget Workflow v5 Training Slides - Module 2 - Setting up Joget WorkflowJoget Workflow v5 Training Slides - Module 2 - Setting up Joget Workflow
Joget Workflow v5 Training Slides - Module 2 - Setting up Joget Workflow
 
Joget Workflow v5 Training Slides - Module 21 - Userview Key
Joget Workflow v5 Training Slides - Module 21 - Userview KeyJoget Workflow v5 Training Slides - Module 21 - Userview Key
Joget Workflow v5 Training Slides - Module 21 - Userview Key
 
Joget Workflow v5 Training Slides - Module 6 - Using your first Process Tool
Joget Workflow v5 Training Slides - Module 6 - Using your first Process ToolJoget Workflow v5 Training Slides - Module 6 - Using your first Process Tool
Joget Workflow v5 Training Slides - Module 6 - Using your first Process Tool
 
Joget Workflow v5 Training Slides - Module 20 - Basic System Administration
Joget Workflow v5 Training Slides - Module 20 - Basic System AdministrationJoget Workflow v5 Training Slides - Module 20 - Basic System Administration
Joget Workflow v5 Training Slides - Module 20 - Basic System Administration
 
Joget Workflow v5 Training Slides - Module 5 - Designing your First Form
Joget Workflow v5 Training Slides - Module 5 - Designing your First FormJoget Workflow v5 Training Slides - Module 5 - Designing your First Form
Joget Workflow v5 Training Slides - Module 5 - Designing your First Form
 
Joget Workflow v5 Training Slides - Module 11 - SLA and Deadlines
Joget Workflow v5 Training Slides - Module 11 - SLA and DeadlinesJoget Workflow v5 Training Slides - Module 11 - SLA and Deadlines
Joget Workflow v5 Training Slides - Module 11 - SLA and Deadlines
 
Joget Workflow v5 Training Slides - Module 12 - Version Control
Joget Workflow v5 Training Slides - Module 12 - Version ControlJoget Workflow v5 Training Slides - Module 12 - Version Control
Joget Workflow v5 Training Slides - Module 12 - Version Control
 
Joget Workflow v5 Training Slides - Module 14 - Introduction to reporting
Joget Workflow v5 Training Slides -  Module 14 - Introduction to reportingJoget Workflow v5 Training Slides -  Module 14 - Introduction to reporting
Joget Workflow v5 Training Slides - Module 14 - Introduction to reporting
 
Joget v5 Getting Started Guide
Joget v5 Getting Started GuideJoget v5 Getting Started Guide
Joget v5 Getting Started Guide
 
Joget Workflow v5 Training Slides - Module 16 - Preparing Development Environ...
Joget Workflow v5 Training Slides - Module 16 - Preparing Development Environ...Joget Workflow v5 Training Slides - Module 16 - Preparing Development Environ...
Joget Workflow v5 Training Slides - Module 16 - Preparing Development Environ...
 
Joget Workflow v5 Training Slides - Module 9 - Hash variable
Joget Workflow v5 Training Slides - Module 9 - Hash variableJoget Workflow v5 Training Slides - Module 9 - Hash variable
Joget Workflow v5 Training Slides - Module 9 - Hash variable
 
Joget Workflow v5 Training Slides - Module 7 - Designing your first Datalist
Joget Workflow v5 Training Slides - Module 7 - Designing your first DatalistJoget Workflow v5 Training Slides - Module 7 - Designing your first Datalist
Joget Workflow v5 Training Slides - Module 7 - Designing your first Datalist
 
Joget Workflow v5 Training Slides - Module 15 - Introduction to Plugin Archit...
Joget Workflow v5 Training Slides - Module 15 - Introduction to Plugin Archit...Joget Workflow v5 Training Slides - Module 15 - Introduction to Plugin Archit...
Joget Workflow v5 Training Slides - Module 15 - Introduction to Plugin Archit...
 
Joget Workflow v5 Training Slides - Module 8 - Designing your first Userview
Joget Workflow v5 Training Slides - Module 8 - Designing your first UserviewJoget Workflow v5 Training Slides - Module 8 - Designing your first Userview
Joget Workflow v5 Training Slides - Module 8 - Designing your first Userview
 
Joget Workflow v5 Training Slides - Module 17 - Building Plugins
Joget Workflow v5 Training Slides - Module 17 - Building PluginsJoget Workflow v5 Training Slides - Module 17 - Building Plugins
Joget Workflow v5 Training Slides - Module 17 - Building Plugins
 
Joget Workflow v5 Training Slides - Module 18 - Integrating with External System
Joget Workflow v5 Training Slides - Module 18 - Integrating with External SystemJoget Workflow v5 Training Slides - Module 18 - Integrating with External System
Joget Workflow v5 Training Slides - Module 18 - Integrating with External System
 
Joget Workflow v4 Getting Started
Joget Workflow v4 Getting StartedJoget Workflow v4 Getting Started
Joget Workflow v4 Getting Started
 
Joget Workflow v5 Training Slides - Module 13 - Improving your form design an...
Joget Workflow v5 Training Slides - Module 13 - Improving your form design an...Joget Workflow v5 Training Slides - Module 13 - Improving your form design an...
Joget Workflow v5 Training Slides - Module 13 - Improving your form design an...
 
Joget Workflow v5 Training Slides - Module 10 - Participant Mapping and Permi...
Joget Workflow v5 Training Slides - Module 10 - Participant Mapping and Permi...Joget Workflow v5 Training Slides - Module 10 - Participant Mapping and Permi...
Joget Workflow v5 Training Slides - Module 10 - Participant Mapping and Permi...
 

Similar to Joget Workflow v5 Training Slides - Module 3 - Designing your first Process

Joget Workflow v4 Training - Module 3 - Designing your First Process
Joget Workflow v4 Training - Module 3 - Designing your First ProcessJoget Workflow v4 Training - Module 3 - Designing your First Process
Joget Workflow v4 Training - Module 3 - Designing your First Process
Joget Workflow
 
Joget Workflow v6 Training Slides - 3 - Designing your First Process
Joget Workflow v6 Training Slides - 3 - Designing your First ProcessJoget Workflow v6 Training Slides - 3 - Designing your First Process
Joget Workflow v6 Training Slides - 3 - Designing your First Process
Joget Workflow
 
Joget Workflow Training – Basic & Advance for v3.1 – Module 5 – Creating your...
Joget Workflow Training – Basic & Advance for v3.1 – Module 5 – Creating your...Joget Workflow Training – Basic & Advance for v3.1 – Module 5 – Creating your...
Joget Workflow Training – Basic & Advance for v3.1 – Module 5 – Creating your...
Joget Workflow
 
Joget Workflow Training – Basic & Advance for v3.1 – Module 7 – Creating Data...
Joget Workflow Training – Basic & Advance for v3.1 – Module 7 – Creating Data...Joget Workflow Training – Basic & Advance for v3.1 – Module 7 – Creating Data...
Joget Workflow Training – Basic & Advance for v3.1 – Module 7 – Creating Data...
Joget Workflow
 
Joget Workflow v4 Training - Module 5 - Designing your First Form
Joget Workflow v4 Training - Module 5 - Designing your First FormJoget Workflow v4 Training - Module 5 - Designing your First Form
Joget Workflow v4 Training - Module 5 - Designing your First Form
Joget Workflow
 
Joget Workflow v4 Training - Module 1 - Introduction to Joget
Joget Workflow v4 Training - Module 1 - Introduction to JogetJoget Workflow v4 Training - Module 1 - Introduction to Joget
Joget Workflow v4 Training - Module 1 - Introduction to Joget
Joget Workflow
 
Joget Workflow Training – Basic & Advance for v3.1 – Module 8 – Participant M...
Joget Workflow Training – Basic & Advance for v3.1 – Module 8 – Participant M...Joget Workflow Training – Basic & Advance for v3.1 – Module 8 – Participant M...
Joget Workflow Training – Basic & Advance for v3.1 – Module 8 – Participant M...
Joget Workflow
 
Joget Workflow v5 Training - Module 1 - Introduction to Joget Workflow
Joget Workflow v5 Training - Module 1 - Introduction to Joget WorkflowJoget Workflow v5 Training - Module 1 - Introduction to Joget Workflow
Joget Workflow v5 Training - Module 1 - Introduction to Joget Workflow
Joget Workflow
 
Joget Workflow Training – Basic & Advance for v3.1 – Module 9 – SLA and Deadl...
Joget Workflow Training – Basic & Advance for v3.1 – Module 9 – SLA and Deadl...Joget Workflow Training – Basic & Advance for v3.1 – Module 9 – SLA and Deadl...
Joget Workflow Training – Basic & Advance for v3.1 – Module 9 – SLA and Deadl...
Joget Workflow
 
Joget Workflow Training – Basic & Advance for v3.1 – Module 1 – Introduction
Joget Workflow Training – Basic & Advance for v3.1 – Module 1 – IntroductionJoget Workflow Training – Basic & Advance for v3.1 – Module 1 – Introduction
Joget Workflow Training – Basic & Advance for v3.1 – Module 1 – Introduction
Joget Workflow
 
Joget Workflow v6 Training Slides - 8 - Designing your First Userview
Joget Workflow v6 Training Slides - 8 - Designing your First UserviewJoget Workflow v6 Training Slides - 8 - Designing your First Userview
Joget Workflow v6 Training Slides - 8 - Designing your First Userview
Joget Workflow
 
Joget Workflow v4 Training - Module 11 - SLA and Deadlines
Joget Workflow v4 Training - Module 11 - SLA and DeadlinesJoget Workflow v4 Training - Module 11 - SLA and Deadlines
Joget Workflow v4 Training - Module 11 - SLA and Deadlines
Joget Workflow
 
Joget Workflow v6 Training Slides - 5 - Designing your First Form
Joget Workflow v6 Training Slides - 5 - Designing your First FormJoget Workflow v6 Training Slides - 5 - Designing your First Form
Joget Workflow v6 Training Slides - 5 - Designing your First Form
Joget Workflow
 
Joget Workflow v4 Training - Module 8 - Designing your first Userview
Joget Workflow v4 Training - Module 8 - Designing your first UserviewJoget Workflow v4 Training - Module 8 - Designing your first Userview
Joget Workflow v4 Training - Module 8 - Designing your first Userview
Joget Workflow
 
Joget Workflow v4 Training - Module 10 - Participant Mapping and Permission C...
Joget Workflow v4 Training - Module 10 - Participant Mapping and Permission C...Joget Workflow v4 Training - Module 10 - Participant Mapping and Permission C...
Joget Workflow v4 Training - Module 10 - Participant Mapping and Permission C...
Joget Workflow
 
Joget Workflow v4 Training - Module 2 - Setting up Joget Workflow
Joget Workflow v4 Training - Module 2 - Setting up Joget WorkflowJoget Workflow v4 Training - Module 2 - Setting up Joget Workflow
Joget Workflow v4 Training - Module 2 - Setting up Joget Workflow
Joget Workflow
 
Joget Workflow v6 Training Slides - 2 - Setting Up Joget Workflow
Joget Workflow v6 Training Slides - 2 - Setting Up Joget WorkflowJoget Workflow v6 Training Slides - 2 - Setting Up Joget Workflow
Joget Workflow v6 Training Slides - 2 - Setting Up Joget Workflow
Joget Workflow
 
Joget Workflow Training – Basic & Advance for v3.1 – Module 10 – Hash Variables
Joget Workflow Training – Basic & Advance for v3.1 – Module 10 – Hash VariablesJoget Workflow Training – Basic & Advance for v3.1 – Module 10 – Hash Variables
Joget Workflow Training – Basic & Advance for v3.1 – Module 10 – Hash Variables
Joget Workflow
 
Joget Workflow v4 Training - Module 12 - Version Control
Joget Workflow v4 Training - Module 12 - Version ControlJoget Workflow v4 Training - Module 12 - Version Control
Joget Workflow v4 Training - Module 12 - Version Control
Joget Workflow
 
Joget Workflow v6 Training Slides - 1 - Introduction to Joget Workflow
Joget Workflow v6 Training Slides - 1 - Introduction to Joget WorkflowJoget Workflow v6 Training Slides - 1 - Introduction to Joget Workflow
Joget Workflow v6 Training Slides - 1 - Introduction to Joget Workflow
Joget Workflow
 

Similar to Joget Workflow v5 Training Slides - Module 3 - Designing your first Process (20)

Joget Workflow v4 Training - Module 3 - Designing your First Process
Joget Workflow v4 Training - Module 3 - Designing your First ProcessJoget Workflow v4 Training - Module 3 - Designing your First Process
Joget Workflow v4 Training - Module 3 - Designing your First Process
 
Joget Workflow v6 Training Slides - 3 - Designing your First Process
Joget Workflow v6 Training Slides - 3 - Designing your First ProcessJoget Workflow v6 Training Slides - 3 - Designing your First Process
Joget Workflow v6 Training Slides - 3 - Designing your First Process
 
Joget Workflow Training – Basic & Advance for v3.1 – Module 5 – Creating your...
Joget Workflow Training – Basic & Advance for v3.1 – Module 5 – Creating your...Joget Workflow Training – Basic & Advance for v3.1 – Module 5 – Creating your...
Joget Workflow Training – Basic & Advance for v3.1 – Module 5 – Creating your...
 
Joget Workflow Training – Basic & Advance for v3.1 – Module 7 – Creating Data...
Joget Workflow Training – Basic & Advance for v3.1 – Module 7 – Creating Data...Joget Workflow Training – Basic & Advance for v3.1 – Module 7 – Creating Data...
Joget Workflow Training – Basic & Advance for v3.1 – Module 7 – Creating Data...
 
Joget Workflow v4 Training - Module 5 - Designing your First Form
Joget Workflow v4 Training - Module 5 - Designing your First FormJoget Workflow v4 Training - Module 5 - Designing your First Form
Joget Workflow v4 Training - Module 5 - Designing your First Form
 
Joget Workflow v4 Training - Module 1 - Introduction to Joget
Joget Workflow v4 Training - Module 1 - Introduction to JogetJoget Workflow v4 Training - Module 1 - Introduction to Joget
Joget Workflow v4 Training - Module 1 - Introduction to Joget
 
Joget Workflow Training – Basic & Advance for v3.1 – Module 8 – Participant M...
Joget Workflow Training – Basic & Advance for v3.1 – Module 8 – Participant M...Joget Workflow Training – Basic & Advance for v3.1 – Module 8 – Participant M...
Joget Workflow Training – Basic & Advance for v3.1 – Module 8 – Participant M...
 
Joget Workflow v5 Training - Module 1 - Introduction to Joget Workflow
Joget Workflow v5 Training - Module 1 - Introduction to Joget WorkflowJoget Workflow v5 Training - Module 1 - Introduction to Joget Workflow
Joget Workflow v5 Training - Module 1 - Introduction to Joget Workflow
 
Joget Workflow Training – Basic & Advance for v3.1 – Module 9 – SLA and Deadl...
Joget Workflow Training – Basic & Advance for v3.1 – Module 9 – SLA and Deadl...Joget Workflow Training – Basic & Advance for v3.1 – Module 9 – SLA and Deadl...
Joget Workflow Training – Basic & Advance for v3.1 – Module 9 – SLA and Deadl...
 
Joget Workflow Training – Basic & Advance for v3.1 – Module 1 – Introduction
Joget Workflow Training – Basic & Advance for v3.1 – Module 1 – IntroductionJoget Workflow Training – Basic & Advance for v3.1 – Module 1 – Introduction
Joget Workflow Training – Basic & Advance for v3.1 – Module 1 – Introduction
 
Joget Workflow v6 Training Slides - 8 - Designing your First Userview
Joget Workflow v6 Training Slides - 8 - Designing your First UserviewJoget Workflow v6 Training Slides - 8 - Designing your First Userview
Joget Workflow v6 Training Slides - 8 - Designing your First Userview
 
Joget Workflow v4 Training - Module 11 - SLA and Deadlines
Joget Workflow v4 Training - Module 11 - SLA and DeadlinesJoget Workflow v4 Training - Module 11 - SLA and Deadlines
Joget Workflow v4 Training - Module 11 - SLA and Deadlines
 
Joget Workflow v6 Training Slides - 5 - Designing your First Form
Joget Workflow v6 Training Slides - 5 - Designing your First FormJoget Workflow v6 Training Slides - 5 - Designing your First Form
Joget Workflow v6 Training Slides - 5 - Designing your First Form
 
Joget Workflow v4 Training - Module 8 - Designing your first Userview
Joget Workflow v4 Training - Module 8 - Designing your first UserviewJoget Workflow v4 Training - Module 8 - Designing your first Userview
Joget Workflow v4 Training - Module 8 - Designing your first Userview
 
Joget Workflow v4 Training - Module 10 - Participant Mapping and Permission C...
Joget Workflow v4 Training - Module 10 - Participant Mapping and Permission C...Joget Workflow v4 Training - Module 10 - Participant Mapping and Permission C...
Joget Workflow v4 Training - Module 10 - Participant Mapping and Permission C...
 
Joget Workflow v4 Training - Module 2 - Setting up Joget Workflow
Joget Workflow v4 Training - Module 2 - Setting up Joget WorkflowJoget Workflow v4 Training - Module 2 - Setting up Joget Workflow
Joget Workflow v4 Training - Module 2 - Setting up Joget Workflow
 
Joget Workflow v6 Training Slides - 2 - Setting Up Joget Workflow
Joget Workflow v6 Training Slides - 2 - Setting Up Joget WorkflowJoget Workflow v6 Training Slides - 2 - Setting Up Joget Workflow
Joget Workflow v6 Training Slides - 2 - Setting Up Joget Workflow
 
Joget Workflow Training – Basic & Advance for v3.1 – Module 10 – Hash Variables
Joget Workflow Training – Basic & Advance for v3.1 – Module 10 – Hash VariablesJoget Workflow Training – Basic & Advance for v3.1 – Module 10 – Hash Variables
Joget Workflow Training – Basic & Advance for v3.1 – Module 10 – Hash Variables
 
Joget Workflow v4 Training - Module 12 - Version Control
Joget Workflow v4 Training - Module 12 - Version ControlJoget Workflow v4 Training - Module 12 - Version Control
Joget Workflow v4 Training - Module 12 - Version Control
 
Joget Workflow v6 Training Slides - 1 - Introduction to Joget Workflow
Joget Workflow v6 Training Slides - 1 - Introduction to Joget WorkflowJoget Workflow v6 Training Slides - 1 - Introduction to Joget Workflow
Joget Workflow v6 Training Slides - 1 - Introduction to Joget Workflow
 

More from Joget Workflow

Joget Workflow v6 Training Slides - 22 - Best Practices on Application Building
Joget Workflow v6 Training Slides - 22 - Best Practices on Application BuildingJoget Workflow v6 Training Slides - 22 - Best Practices on Application Building
Joget Workflow v6 Training Slides - 22 - Best Practices on Application Building
Joget Workflow
 
Joget Workflow v6 Training Slides - 20 - Basic System Administration
Joget Workflow v6 Training Slides - 20 - Basic System AdministrationJoget Workflow v6 Training Slides - 20 - Basic System Administration
Joget Workflow v6 Training Slides - 20 - Basic System Administration
Joget Workflow
 
Joget Workflow v6 Training Slides - 17 - Building Plugins
Joget Workflow v6 Training Slides - 17 - Building PluginsJoget Workflow v6 Training Slides - 17 - Building Plugins
Joget Workflow v6 Training Slides - 17 - Building Plugins
Joget Workflow
 
Joget Workflow v6 Training Slides - 16 - Preparing Development Environment
Joget Workflow v6 Training Slides - 16 - Preparing Development EnvironmentJoget Workflow v6 Training Slides - 16 - Preparing Development Environment
Joget Workflow v6 Training Slides - 16 - Preparing Development Environment
Joget Workflow
 
Joget Workflow v6 Training Slides - 15 - Introduction to Plugin Architecture
Joget Workflow v6 Training Slides - 15 - Introduction to Plugin ArchitectureJoget Workflow v6 Training Slides - 15 - Introduction to Plugin Architecture
Joget Workflow v6 Training Slides - 15 - Introduction to Plugin Architecture
Joget Workflow
 
Joget Workflow v6 Training Slides - 14 - Introduction to Reporting
Joget Workflow v6 Training Slides - 14 - Introduction to ReportingJoget Workflow v6 Training Slides - 14 - Introduction to Reporting
Joget Workflow v6 Training Slides - 14 - Introduction to Reporting
Joget Workflow
 
Joget Workflow v6 Training Slides - 13 - Improving your Form Design and Prese...
Joget Workflow v6 Training Slides - 13 - Improving your Form Design and Prese...Joget Workflow v6 Training Slides - 13 - Improving your Form Design and Prese...
Joget Workflow v6 Training Slides - 13 - Improving your Form Design and Prese...
Joget Workflow
 
Joget Workflow v6 Training Slides - 12 - Version Control
Joget Workflow v6 Training Slides - 12 - Version ControlJoget Workflow v6 Training Slides - 12 - Version Control
Joget Workflow v6 Training Slides - 12 - Version Control
Joget Workflow
 
Joget Workflow v6 Training Slides - 11 - SLA and Deadlines
Joget Workflow v6 Training Slides - 11 - SLA and DeadlinesJoget Workflow v6 Training Slides - 11 - SLA and Deadlines
Joget Workflow v6 Training Slides - 11 - SLA and Deadlines
Joget Workflow
 
Joget Workflow v6 Training Slides - 10 - Participant Mapping and Permission C...
Joget Workflow v6 Training Slides - 10 - Participant Mapping and Permission C...Joget Workflow v6 Training Slides - 10 - Participant Mapping and Permission C...
Joget Workflow v6 Training Slides - 10 - Participant Mapping and Permission C...
Joget Workflow
 
Joget Workflow v6 Training Slides - 7 - Designing your First Datalist
Joget Workflow v6 Training Slides - 7 - Designing your First DatalistJoget Workflow v6 Training Slides - 7 - Designing your First Datalist
Joget Workflow v6 Training Slides - 7 - Designing your First Datalist
Joget Workflow
 
Joget Workflow v6 Training Slides - 6 - Using your First Process Tool
Joget Workflow v6 Training Slides - 6 - Using your First Process ToolJoget Workflow v6 Training Slides - 6 - Using your First Process Tool
Joget Workflow v6 Training Slides - 6 - Using your First Process Tool
Joget Workflow
 
Joget Workflow v6 Training Slides - 4 - Localizing your Joget Workflow
Joget Workflow v6 Training Slides - 4 - Localizing your Joget WorkflowJoget Workflow v6 Training Slides - 4 - Localizing your Joget Workflow
Joget Workflow v6 Training Slides - 4 - Localizing your Joget Workflow
Joget Workflow
 
Joget Workflow v6 Training Slides - 19 - Doing More with your Process Design
Joget Workflow v6 Training Slides - 19 - Doing More with your Process DesignJoget Workflow v6 Training Slides - 19 - Doing More with your Process Design
Joget Workflow v6 Training Slides - 19 - Doing More with your Process Design
Joget Workflow
 
Joget Workflow v5 Training Slides - Module 19 - Doing More With Your Process ...
Joget Workflow v5 Training Slides - Module 19 - Doing More With Your Process ...Joget Workflow v5 Training Slides - Module 19 - Doing More With Your Process ...
Joget Workflow v5 Training Slides - Module 19 - Doing More With Your Process ...
Joget Workflow
 

More from Joget Workflow (15)

Joget Workflow v6 Training Slides - 22 - Best Practices on Application Building
Joget Workflow v6 Training Slides - 22 - Best Practices on Application BuildingJoget Workflow v6 Training Slides - 22 - Best Practices on Application Building
Joget Workflow v6 Training Slides - 22 - Best Practices on Application Building
 
Joget Workflow v6 Training Slides - 20 - Basic System Administration
Joget Workflow v6 Training Slides - 20 - Basic System AdministrationJoget Workflow v6 Training Slides - 20 - Basic System Administration
Joget Workflow v6 Training Slides - 20 - Basic System Administration
 
Joget Workflow v6 Training Slides - 17 - Building Plugins
Joget Workflow v6 Training Slides - 17 - Building PluginsJoget Workflow v6 Training Slides - 17 - Building Plugins
Joget Workflow v6 Training Slides - 17 - Building Plugins
 
Joget Workflow v6 Training Slides - 16 - Preparing Development Environment
Joget Workflow v6 Training Slides - 16 - Preparing Development EnvironmentJoget Workflow v6 Training Slides - 16 - Preparing Development Environment
Joget Workflow v6 Training Slides - 16 - Preparing Development Environment
 
Joget Workflow v6 Training Slides - 15 - Introduction to Plugin Architecture
Joget Workflow v6 Training Slides - 15 - Introduction to Plugin ArchitectureJoget Workflow v6 Training Slides - 15 - Introduction to Plugin Architecture
Joget Workflow v6 Training Slides - 15 - Introduction to Plugin Architecture
 
Joget Workflow v6 Training Slides - 14 - Introduction to Reporting
Joget Workflow v6 Training Slides - 14 - Introduction to ReportingJoget Workflow v6 Training Slides - 14 - Introduction to Reporting
Joget Workflow v6 Training Slides - 14 - Introduction to Reporting
 
Joget Workflow v6 Training Slides - 13 - Improving your Form Design and Prese...
Joget Workflow v6 Training Slides - 13 - Improving your Form Design and Prese...Joget Workflow v6 Training Slides - 13 - Improving your Form Design and Prese...
Joget Workflow v6 Training Slides - 13 - Improving your Form Design and Prese...
 
Joget Workflow v6 Training Slides - 12 - Version Control
Joget Workflow v6 Training Slides - 12 - Version ControlJoget Workflow v6 Training Slides - 12 - Version Control
Joget Workflow v6 Training Slides - 12 - Version Control
 
Joget Workflow v6 Training Slides - 11 - SLA and Deadlines
Joget Workflow v6 Training Slides - 11 - SLA and DeadlinesJoget Workflow v6 Training Slides - 11 - SLA and Deadlines
Joget Workflow v6 Training Slides - 11 - SLA and Deadlines
 
Joget Workflow v6 Training Slides - 10 - Participant Mapping and Permission C...
Joget Workflow v6 Training Slides - 10 - Participant Mapping and Permission C...Joget Workflow v6 Training Slides - 10 - Participant Mapping and Permission C...
Joget Workflow v6 Training Slides - 10 - Participant Mapping and Permission C...
 
Joget Workflow v6 Training Slides - 7 - Designing your First Datalist
Joget Workflow v6 Training Slides - 7 - Designing your First DatalistJoget Workflow v6 Training Slides - 7 - Designing your First Datalist
Joget Workflow v6 Training Slides - 7 - Designing your First Datalist
 
Joget Workflow v6 Training Slides - 6 - Using your First Process Tool
Joget Workflow v6 Training Slides - 6 - Using your First Process ToolJoget Workflow v6 Training Slides - 6 - Using your First Process Tool
Joget Workflow v6 Training Slides - 6 - Using your First Process Tool
 
Joget Workflow v6 Training Slides - 4 - Localizing your Joget Workflow
Joget Workflow v6 Training Slides - 4 - Localizing your Joget WorkflowJoget Workflow v6 Training Slides - 4 - Localizing your Joget Workflow
Joget Workflow v6 Training Slides - 4 - Localizing your Joget Workflow
 
Joget Workflow v6 Training Slides - 19 - Doing More with your Process Design
Joget Workflow v6 Training Slides - 19 - Doing More with your Process DesignJoget Workflow v6 Training Slides - 19 - Doing More with your Process Design
Joget Workflow v6 Training Slides - 19 - Doing More with your Process Design
 
Joget Workflow v5 Training Slides - Module 19 - Doing More With Your Process ...
Joget Workflow v5 Training Slides - Module 19 - Doing More With Your Process ...Joget Workflow v5 Training Slides - Module 19 - Doing More With Your Process ...
Joget Workflow v5 Training Slides - Module 19 - Doing More With Your Process ...
 

Recently uploaded

SMS API Integration in Saudi Arabia| Best SMS API Service
SMS API Integration in Saudi Arabia| Best SMS API ServiceSMS API Integration in Saudi Arabia| Best SMS API Service
SMS API Integration in Saudi Arabia| Best SMS API Service
Yara Milbes
 
Artificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension FunctionsArtificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension Functions
Octavian Nadolu
 
Vitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke Java Microservices Resume.pdfVitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke
 
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Łukasz Chruściel
 
Graspan: A Big Data System for Big Code Analysis
Graspan: A Big Data System for Big Code AnalysisGraspan: A Big Data System for Big Code Analysis
Graspan: A Big Data System for Big Code Analysis
Aftab Hussain
 
What is Augmented Reality Image Tracking
What is Augmented Reality Image TrackingWhat is Augmented Reality Image Tracking
What is Augmented Reality Image Tracking
pavan998932
 
socradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdfsocradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdf
SOCRadar
 
OpenMetadata Community Meeting - 5th June 2024
OpenMetadata Community Meeting - 5th June 2024OpenMetadata Community Meeting - 5th June 2024
OpenMetadata Community Meeting - 5th June 2024
OpenMetadata
 
E-commerce Application Development Company.pdf
E-commerce Application Development Company.pdfE-commerce Application Development Company.pdf
E-commerce Application Development Company.pdf
Hornet Dynamics
 
2024 eCommerceDays Toulouse - Sylius 2.0.pdf
2024 eCommerceDays Toulouse - Sylius 2.0.pdf2024 eCommerceDays Toulouse - Sylius 2.0.pdf
2024 eCommerceDays Toulouse - Sylius 2.0.pdf
Łukasz Chruściel
 
Empowering Growth with Best Software Development Company in Noida - Deuglo
Empowering Growth with Best Software  Development Company in Noida - DeugloEmpowering Growth with Best Software  Development Company in Noida - Deuglo
Empowering Growth with Best Software Development Company in Noida - Deuglo
Deuglo Infosystem Pvt Ltd
 
Energy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina JonuziEnergy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina Jonuzi
Green Software Development
 
GraphSummit Paris - The art of the possible with Graph Technology
GraphSummit Paris - The art of the possible with Graph TechnologyGraphSummit Paris - The art of the possible with Graph Technology
GraphSummit Paris - The art of the possible with Graph Technology
Neo4j
 
Transform Your Communication with Cloud-Based IVR Solutions
Transform Your Communication with Cloud-Based IVR SolutionsTransform Your Communication with Cloud-Based IVR Solutions
Transform Your Communication with Cloud-Based IVR Solutions
TheSMSPoint
 
AI Fusion Buddy Review: Brand New, Groundbreaking Gemini-Powered AI App
AI Fusion Buddy Review: Brand New, Groundbreaking Gemini-Powered AI AppAI Fusion Buddy Review: Brand New, Groundbreaking Gemini-Powered AI App
AI Fusion Buddy Review: Brand New, Groundbreaking Gemini-Powered AI App
Google
 
ALGIT - Assembly Line for Green IT - Numbers, Data, Facts
ALGIT - Assembly Line for Green IT - Numbers, Data, FactsALGIT - Assembly Line for Green IT - Numbers, Data, Facts
ALGIT - Assembly Line for Green IT - Numbers, Data, Facts
Green Software Development
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
LORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptx
LORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptxLORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptx
LORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptx
lorraineandreiamcidl
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
Grant Fritchey
 
How to write a program in any programming language
How to write a program in any programming languageHow to write a program in any programming language
How to write a program in any programming language
Rakesh Kumar R
 

Recently uploaded (20)

SMS API Integration in Saudi Arabia| Best SMS API Service
SMS API Integration in Saudi Arabia| Best SMS API ServiceSMS API Integration in Saudi Arabia| Best SMS API Service
SMS API Integration in Saudi Arabia| Best SMS API Service
 
Artificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension FunctionsArtificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension Functions
 
Vitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke Java Microservices Resume.pdfVitthal Shirke Java Microservices Resume.pdf
Vitthal Shirke Java Microservices Resume.pdf
 
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
 
Graspan: A Big Data System for Big Code Analysis
Graspan: A Big Data System for Big Code AnalysisGraspan: A Big Data System for Big Code Analysis
Graspan: A Big Data System for Big Code Analysis
 
What is Augmented Reality Image Tracking
What is Augmented Reality Image TrackingWhat is Augmented Reality Image Tracking
What is Augmented Reality Image Tracking
 
socradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdfsocradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdf
 
OpenMetadata Community Meeting - 5th June 2024
OpenMetadata Community Meeting - 5th June 2024OpenMetadata Community Meeting - 5th June 2024
OpenMetadata Community Meeting - 5th June 2024
 
E-commerce Application Development Company.pdf
E-commerce Application Development Company.pdfE-commerce Application Development Company.pdf
E-commerce Application Development Company.pdf
 
2024 eCommerceDays Toulouse - Sylius 2.0.pdf
2024 eCommerceDays Toulouse - Sylius 2.0.pdf2024 eCommerceDays Toulouse - Sylius 2.0.pdf
2024 eCommerceDays Toulouse - Sylius 2.0.pdf
 
Empowering Growth with Best Software Development Company in Noida - Deuglo
Empowering Growth with Best Software  Development Company in Noida - DeugloEmpowering Growth with Best Software  Development Company in Noida - Deuglo
Empowering Growth with Best Software Development Company in Noida - Deuglo
 
Energy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina JonuziEnergy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina Jonuzi
 
GraphSummit Paris - The art of the possible with Graph Technology
GraphSummit Paris - The art of the possible with Graph TechnologyGraphSummit Paris - The art of the possible with Graph Technology
GraphSummit Paris - The art of the possible with Graph Technology
 
Transform Your Communication with Cloud-Based IVR Solutions
Transform Your Communication with Cloud-Based IVR SolutionsTransform Your Communication with Cloud-Based IVR Solutions
Transform Your Communication with Cloud-Based IVR Solutions
 
AI Fusion Buddy Review: Brand New, Groundbreaking Gemini-Powered AI App
AI Fusion Buddy Review: Brand New, Groundbreaking Gemini-Powered AI AppAI Fusion Buddy Review: Brand New, Groundbreaking Gemini-Powered AI App
AI Fusion Buddy Review: Brand New, Groundbreaking Gemini-Powered AI App
 
ALGIT - Assembly Line for Green IT - Numbers, Data, Facts
ALGIT - Assembly Line for Green IT - Numbers, Data, FactsALGIT - Assembly Line for Green IT - Numbers, Data, Facts
ALGIT - Assembly Line for Green IT - Numbers, Data, Facts
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
LORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptx
LORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptxLORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptx
LORRAINE ANDREI_LEQUIGAN_HOW TO USE WHATSAPP.pptx
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
 
How to write a program in any programming language
How to write a program in any programming languageHow to write a program in any programming language
How to write a program in any programming language
 

Joget Workflow v5 Training Slides - Module 3 - Designing your first Process

  • 1. All Rights Reserved © Joget Inc Joget Workflow v5 Designing your first Process http://facebook.com/jogetworkflow http://twitter.com/jogetworkflow Last Revised on May 2016Joget Inc Internal Use Only
  • 2. All Rights Reserved © Joget Inc Prerequisites • Installed Joget Workflow • Understand various components of Joget Workflow • General understanding of Joget Workflow as an end user Joget Inc Internal Use Only
  • 3. All Rights Reserved © Joget Inc Content 1. Business Process Design (BPE) 2. Designing your First Workflow with Process Builder 3. Running your First Automated Process 4. Process Monitoring Joget Inc Internal Use Only
  • 4. All Rights Reserved © Joget Inc Chapter 1 Business Process Design (BPE) Joget Inc Internal Use Only
  • 5. All Rights Reserved © Joget Inc Business Process Management • BPM is a management approach focused on aligning all aspects of an organization with the wants and needs of clients. • Wants and needs = business goals • BPM attempts to improve processes continuously. Joget Inc Internal Use Only
  • 6. All Rights Reserved © Joget Inc Business Process Engineering 1. Identify a process 2. Identify start and end of the process 3. Identify process participants 4. Identify as-is process activities 5. Identify business rules 6. Identify areas for optimization: process activities and business rules that can be: – Improved – Eliminated 7. Draw the improved / to-be process as flowchart Joget Inc Internal Use Only
  • 7. All Rights Reserved © Joget Inc Identify a Process • E.g. Leave Application Process Joget Inc Internal Use Only
  • 8. All Rights Reserved © Joget Inc Start and End of The Process • Start: – Applicant submits leave application form • End: – Applicant informed with the leave application result Joget Inc Internal Use Only
  • 9. All Rights Reserved © Joget Inc Process Participants • Leave applicant • Leave approver • HR department Joget Inc Internal Use Only
  • 10. All Rights Reserved © Joget Inc • Applicant submits leave application form to HOD • HOD checks applicant’s leave balance • HOD approves / rejects leave application • HOD informs applicant on the application status • HOD submits approved leave application to HR Department As-Is Process Activities Joget Inc Internal Use Only
  • 11. All Rights Reserved © Joget Inc Business Rules 1. If leave balance is sufficient: – Approver processes leave approval Else if leave balance is insufficient: – Reject leave application 2. If leave application is approved: – Submits the approved leave application to HR Department – Inform applicant on the approved leave Else if leave application is rejected: – Inform applicant on the rejected leave Joget Inc Internal Use Only
  • 12. To-Be Process Activities As-Is 1. Applicant submits leave application form to HOD 2. HOD checks applicant’s leave balance 3. HOD informs applicant on insufficient leave balance 4. HOD approves / rejects leave application 5. HOD informs applicant on the application status 6. HOD submits approved leave application to HR Department To-Be 1. Applicant submits leave application form to HOD 2. System checks applicant’s leave balance 3. System notifies applicant on insufficient leave balance 4. HOD approves / rejects leave application 5. System notifies applicant and HR Department on the application status via email improved Joget Inc Internal Use Only
  • 13. All Rights Reserved © Joget Inc To-Be Leave Application Process Joget Inc Internal Use Only
  • 14. All Rights Reserved © Joget Inc Now, Identify a Process, and Engineer It! Joget Inc Internal Use Only
  • 15. All Rights Reserved © Joget Inc Sample Process Statement • Jane needs to get some stationeries. The application that she submits will must be first approved by her immediate superior before being sent to the stationery disbursement department. The department will then notify Jane accordingly. Joget Inc Internal Use Only
  • 16. All Rights Reserved © Joget Inc Hands-On: Business Process Engineering 1. Process Name 2. Start and End 3. Participants 4. As-Is Activities 5. Business Rules 6. Optimize 7. To-Be Process Joget Inc Internal Use Only
  • 17. All Rights Reserved © Joget Inc Chapter 1 Review • General understanding on how to best design a Process. • With the finished process design, one can now implement it in Joget Workflow. Joget Inc Internal Use Only
  • 18. All Rights Reserved © Joget Inc Chapter 2 Designing your first Process with Process Builder Joget Inc Internal Use Only
  • 19. All Rights Reserved © Joget Inc Business Process Automation Business Process Design Workflow Design Workflow Joget Inc Internal Use Only
  • 20. All Rights Reserved © Joget Inc Joget Inc Internal Use Only
  • 21. All Rights Reserved © Joget Inc Joget Inc Internal Use Only
  • 22. All Rights Reserved © Joget Inc Create Your First App • Design Apps -> Design New App Naming convention: Use Camel Case for better legibility for App ID, Process ID, Activity ID Joget Inc Internal Use Only
  • 23. All Rights Reserved © Joget Inc Create Your First App • Leave Application – Leave Approval Process • Applicant submits • Approver approves • Applicant is notified of the application result Joget Inc Internal Use Only
  • 24. All Rights Reserved © Joget Inc Design your first Workflow Process Joget Inc Internal Use Only • Launch Process Builder – Processes > Design Processes
  • 25. All Rights Reserved © Joget Inc Defining your Workflow Process Joget Inc Internal Use Only • Rename Process ID and Name
  • 26. All Rights Reserved © Joget Inc Defining your Participant • Rename the existing participant to Applicant Joget Inc Internal Use Only
  • 27. All Rights Reserved © Joget Inc Smart Guide* Joget Inc Internal Use Only • The Process Builder will highlights logical errors as you design.
  • 28. All Rights Reserved © Joget Inc The * about Smart Guide • Advises only on possible design errors. • Will NOT advise on flawed business logic, design inefficiency. Joget Inc Internal Use Only
  • 29. All Rights Reserved © Joget Inc Insert Activities and Transitions Joget Inc Internal Use Only • Drag and drop, select the appropriate nodes to build the Workflow Process.
  • 30. All Rights Reserved © Joget Inc Rename Activity ID and Name Joget Inc Internal Use Only • Rename the activity node to make it meaningful. • Use camel case naming convention for ID (submitLeave). Naming convention: Use Camel Case for better legibility for App ID, Process ID, Activity ID
  • 31. All Rights Reserved © Joget Inc Completing the Design • Insert the rest of the activities Joget Inc Internal Use Only
  • 32. All Rights Reserved © Joget Inc Implementing the Business Rule • Route: Diamond-shaped node – Used to implement business rules Joget Inc Internal Use Only
  • 33. All Rights Reserved © Joget Inc Defining the Transition Condition • When the status variable is met with certain condition, route accordingly. Joget Inc Internal Use Only
  • 34. All Rights Reserved © Joget Inc Anything else… • Handling the “otherwise” Joget Inc Internal Use Only
  • 35. All Rights Reserved © Joget Inc If and otherwise… • Does this resemble the typical programming if-else condition block? • Is this the best design? • Why not if-else if? Joget Inc Internal Use Only
  • 36. All Rights Reserved © Joget Inc Declaring the Workflow Variable • Variable used in the Workflow Process must be declared in the Process’s properties. Joget Inc Internal Use Only
  • 37. All Rights Reserved © Joget Inc Good to know • Expressions in “Condition” are evaluated in Javascript. • Workflow variable are stored as string. Joget Inc Internal Use Only
  • 38. All Rights Reserved © Joget Inc Also Good to know • Native Javascript functions are accepted. – E.g. status == "Approved" && parseInt(balance) > 0 • Make sure of debugger tool such as Firebug to test the expression before deploying. Joget Inc Internal Use Only
  • 39. All Rights Reserved © Joget Inc Deploying your Process Design • On the bottom left of the designer, click on “Deploy” to push your finished design back into your Joget Workflow App. Joget Inc Internal Use Only
  • 40. All Rights Reserved © Joget Inc Chapter 2 Review • Create a new App. • Design and deploy Process design into the App. • Understand the naming convention. • Define various kind of process design elements. • Define workflow variable and condition. • Deploying process design back to Joget. Joget Inc Internal Use Only
  • 41. All Rights Reserved © Joget Inc Chapter 3 Running Your First Automated Process Joget Inc Internal Use Only
  • 42. All Rights Reserved © Joget Inc Verify the Workflow Process • Run through the Workflow Process to verify. Joget Inc Internal Use Only
  • 43. All Rights Reserved © Joget Inc Verify the Workflow Process • Complete the Assignment to proceed. Activity name configured in Process Builder Joget Inc Internal Use Only
  • 44. All Rights Reserved © Joget Inc Accessing the Assignments • App Center -> Inbox Joget Inc Internal Use Only Set the status variable as “Approved”
  • 45. All Rights Reserved © Joget Inc Determining the flow using route • Manipulating the Workflow using Workflow Variable Joget Inc Internal Use Only Set the status variable as “Approved”
  • 46. All Rights Reserved © Joget Inc Completing the subsequent assignments • Verify the flow and complete the flow. Joget Inc Internal Use Only
  • 47. All Rights Reserved © Joget Inc Exercise • Run the process again to test out the “Rejected” case scenario. Joget Inc Internal Use Only
  • 48. All Rights Reserved © Joget Inc Good to know • At this point of time, the App is NOT published yet therefore end user would not be able to run it. • “Run Process” available at the App Designer’s Processes tab is a convenient way to verify its flow. Joget Inc Internal Use Only
  • 49. All Rights Reserved © Joget Inc Discussion • Who is Applicant? Who is Approver? Have we actually defined who they really are? Joget Inc Internal Use Only
  • 50. All Rights Reserved © Joget Inc Chapter 3 Review • Evaluate and verify the workflow process. Joget Inc Internal Use Only
  • 51. All Rights Reserved © Joget Inc Chapter 4 Process Monitoring Joget Inc Internal Use Only
  • 52. All Rights Reserved © Joget Inc Monitoring Processes • Allows you to monitor the status of processes, both running and completed. • Allows you to view an audit trail of workflow actions • Captures process data to allow for the generation of reports. Joget Inc Internal Use Only
  • 53. All Rights Reserved © Joget Inc Monitor Running Processes • Click on Monitor from the Admin Bar to access. Process Instance ID Format: #_AppId_ProcessId Joget Inc Internal Use Only
  • 54. All Rights Reserved © Joget Inc Monitor Completed Processes • Click on “Completed Processes” to see completed process instances. Joget Inc Internal Use Only
  • 55. All Rights Reserved © Joget Inc View the Details of a Running Process Instance • From the list of running processes, click into any instance. • Details on the current state of the selected process instance will be shown. Joget Inc Internal Use Only
  • 56. All Rights Reserved © Joget Inc View the Details of a Running Process Instance Which activities are completed? Which activity is active now? Activity Instance ID format: #_ProcessInstanceId_ActivityId Joget Inc Internal Use Only
  • 57. All Rights Reserved © Joget Inc View the Details of a Running Process Instance • There are buttons to allow actions to be taken on the process instance. – View Graph • Displays the workflow diagram, where the current activities are highlighted in yellow. – Abort Instance • Terminates the process instance, leaving the process data intact – Remove Instance • Permanently delete the process instance, process data will be removed as well – Re-evaluate • In cases where participant mappings are changed before the process is completed, this action will allow pending assignments to be reassigned to the newly mapped participants. Joget Inc Internal Use Only
  • 58. All Rights Reserved © Joget Inc View the Details of an Activity Workflow variable value Joget Inc Internal Use Only
  • 59. All Rights Reserved © Joget Inc View the Details of a Running Activity Instance • There are buttons to allow actions to be taken on the activity instance. – Re-evaluate • Re-evaluate the participant mapping for the current activity instance. – Re-evaluate assignment(s) for user • Re-evaluate all assignments of a particular user. – Reassign user • Reassign one of the assignee(s) of this activity instance to another user. – Complete • Complete the activity instance as the current logged in user. Joget Inc Internal Use Only
  • 60. All Rights Reserved © Joget Inc Discussion • What if a person who is assigned to an assignment has left the organization? What can we do? • In production, when one has thousands of instances running, how to quickly identify the troubled one? Joget Inc Internal Use Only
  • 61. All Rights Reserved © Joget Inc Chapter 4 Review We have learnt to: 1. Monitor running and completed processes. 2. Drill down into activity details of each process that is running or completed. 3. Debug workflow processes by examining workflow variable value. 4. Appreciate the “Re-evaluate” feature in process monitoring. Joget Inc Internal Use Only
  • 62. All Rights Reserved © Joget Inc Module Review 1. Business Process Design (BPE) 2. Designing your First Workflow with Process Builder 3. Running your First Automated Process 4. Process Monitoring Joget Inc Internal Use Only
  • 63. All Rights Reserved © Joget Inc Recommended Further Learning • Designing Forms for the activities created in your Process Flow. • Configure Process Tool plugin for the tool created in your Process Flow. Joget Inc Internal Use Only
  • 64. All Rights Reserved © Joget Inc Stay Connected with Joget Workflow • http://www.joget.org • http://community.joget.org • http://twitter.com/jogetworkflow • http://facebook.com/jogetworkflow • http://youtube.com/jogetworkflow • http://slideshare.net/joget Joget Inc Internal Use Only