How to change the task definition type in the properties panel of a particular task in Camunda 8 modular?
I had already defined a task type, but I need to change it and I don’t see a that option in properties panel
How to change the task definition type in the properties panel of a particular task in Camunda 8 modular?
I had already defined a task type, but I need to change it and I don’t see a that option in properties panel
Hey @Harsha_Johny! Welcome to the Camunda Forum
A few questions to start with:
Hopefully one of these options helps you to change the task type again.
Best,
Thomas
Hi, I am using a SaaS version.
I couldn’t change the task definition type of a user task.
I had another doubt too.
On trying to deploy my workflow, I am receiving the following error can you please help me resolve it.
Command ‘CREATE’ rejected with code ‘INVALID_ARGUMENT’: Expected to deploy new resources, but encountered the following errors:
‘Latest Version.bpmn’: - Element: Flow_0ds74sv > conditionExpression
That won’t work. A user task does not have any task definition type. These are only valid for service tasks, message send tasks and a couple of events.
That means that you have not specified any expression in your gateway.
Thank You.
Can you help me rectify this error:
This is happening when I try to add a condition expression to the highlighted path.
The condition I have added is :
interimrepconditionExpression=“interimreport_checked == ‘No’”
Hi @Harsha_Johny - the expression in that field needs to a FEEL expression, and your expression isn’t valid FEEL syntax, so that’s why you’re getting that error.
If you remove the var
keyword, that expression would be checking if the variable interimrepconditionExpression
is set to the string value "interimreport_checked == 'No'"
. For your gateway, the condition should be interimreport_checked = "No"
. This expression will return true if the variable interimreport_checked
is set to the string value “No”.
I found FEEL a little confusing at first, but our docs do a pretty good job introducing FEEL and I’d recommend giving those a quick read. There is also a fantastic FEEL playground you can use to test your expressions.