05-31-2018 06:27 AM
My user task is associated with 4 form properties. I would like to print these 4 properties in my script task so I can see in on my tomcat console. Could someone please help me on this? Basically, I would need those form properties to be set in a process variable (global by default), so I can access it in parent process.
05-31-2018 09:31 AM
Forgot to mention: Activiti version 6.0.0
06-18-2018 03:25 AM
You can use the following statement to print on the console
java.lang.System.out.println("Hello world");
In the activiti-app.properties instead of false make true
# Beans whitelisting
beans.whitelisting.enabled=false
06-18-2018 12:46 PM
Thank you!!Let me try.
06-19-2018 12:03 AM
To print form properties
var name= execution.getVariable("name");
java.lang.System.out.println("name="+name);
Explore our Alfresco products with the links below. Use labels to filter content by product module.