Questions tagged [flowable]

Flowable is a light-weight business process engine written in Java. Use this tag for questions related to Flowable usage and workflows.

The Flowable process engine allows you to deploy BPMN 2.0 process definitions (an industry XML standard for defining processes), creating process instances of those process definitions, running queries, accessing active or historical process instances and related data. It can run as independent engine or as a service and can be integrated with Spring and Spring boot. It even supports DMN decision tables and CMMN case management engines.

Flowable is a fork of Activiti (registered trademark of Alfresco).

Official User Guide
GitHub page

154 questions
0
votes
2 answers

Flowable Enterprise trial version

I am trying to start a Flowable Enterprise trial engine, but getting the below exception while starting the Tomcat server. I have changed the tomcat port to 8181 instead of 8080 since port 8080 is used by some other service. The server starts…
manish
  • 11
  • 1
0
votes
2 answers

spring and mongodb integration issue -correct the classpath of your application so that it contains a single, compatible version

I am working on spring, flowable and mongodb. here is my pow
user824624
  • 7,077
  • 27
  • 106
  • 183
0
votes
1 answer

Flowbale auditlog

I want to audit entire application built in flowable, I am spring boot develeoper, I getting difficult to implement audit log in Flowable. I am looking alike envers in Spring Boot, which audit specific entity annotated upon.
Rachit07
  • 44
  • 5
0
votes
1 answer

Is there any way to set skip expression of task using java code in flowable or any dynamic way to set skip expression of task

I have checked in flowable rest API but I have not found any rest call which can I use to set skip expression of the task. I have also checked in the API documentation of flowable but unable to find a way to set skip expression dynamically using…
Sagar
  • 35
  • 5
0
votes
1 answer

Creating ProcessDefinition dynamically with Java in Flowable

I am working to make BPMN using Flowable. I have created ProcessDefinition using FlowableModeler UI, but now my requirements have changed and I have to create these ProcessDefinitions dynamically using Java api. I have search on it and found that we…
M.Ahsen Taqi
  • 965
  • 11
  • 35
0
votes
1 answer

Flowable runtimeService.startProcessInstanceByKey('MY_SUBPROCESS_KEY') executes but superProcessId null

After starting from my MY_SUPER_PROCESS another subprocess using the following syntax: runtimeService.startProcessInstanceByKey('MY_SUBPROCESS_KEY') the subprocess is started and executed correctly, but in the admin panel flowable panel there is…
Łukasz Rzeszotarski
  • 5,791
  • 6
  • 37
  • 68
0
votes
1 answer

How to get results from a completed process instance in Flowable?

I have a simple Service task that sets a variable "foo" to "bar". When a process contains just that one task, and I initiate it using "runtime/process-instances", I can see variable "foo" in the response. When I add a user task before the service…
Alehar
  • 639
  • 5
  • 16
0
votes
1 answer

Unknown property used in expression when using Java Delegate with Delegate Expression in BPMN

Is anyone also having problem when using java delegate task in service task with delegate expression? It is ok when placing into class with "org.flowable.DelegateExpressionBean" Error Message Forwarding to error page from request…
Jeffrey Chu
  • 141
  • 2
  • 5
0
votes
1 answer

Flowable delegateExpression in service task is not working

The flowable version which I'm using is 6.4.1. @Component public class MyClass implements JavaDelegate { @Autowired private MySampleService mySampleService; @Override public void execute(DelegateExecution delegateExecution){ …
0
votes
0 answers

How to handle the compensation event in bpmn?

In the compensation event, can the compensation handler continue its course after the compensation is thrown, or should it wait for the two compensation processes to take place? In the figure below, after task 1, task 3 is executed and does not…
0
votes
1 answer

Flowable CMMN planitem reenter?

guys. I'm studying flowable CMMN. I have a quetions need to help. when I complete planitem's task, the planitem instance come to 'completed' state. if my data change to fit the entry condition of this planitem, how can I get a new instance of this…
0
votes
1 answer

Restart flowable process from jms message listener

I Have a flowable workflow which I need to suspend at a certain stage, Then restart the same workflow from a JMS Listener based on a jms message. Here I have written a delegate to suspend the process and save the processId along with another ID…
Shenali Silva
  • 127
  • 3
  • 9
0
votes
1 answer

Is there a way to connect jar to flowable admin

I am using flowable on docker. I have created a BPMN with a service task. so I need to connect a Java Delegate. But How could I execute that BPMN process using flowable-admin ( with java delegate or classpath ) which is running on docker?
0
votes
1 answer

How to change password of `admin` account in `flowable-design` for publishing app?

I've installed Flowable 3.6.1 in my localhost. But when I changed the Host configuration in Tomcat folder, I found flowable-design was unable to publish app to flowable-engage. After tens of times attempts, I found the configuration located at…
Horsing
  • 1,070
  • 7
  • 22
0
votes
1 answer

How to assign string identifiers selected in form to sub-processes in Flowable 3.6.1?

I've checked this topic : https://forum.flowable.org/t/how-to-assign-as-sub-process-initiators-users-groups-that-have-been-selected-in-a-form/1429 but its answer had not been verified (and I could not verify it neither). What I want to do is just…
Horsing
  • 1,070
  • 7
  • 22