1
0
-1

I have stated process via beam shell load bind using ,

 

WorkflowManager workflowManager = (WorkflowManager) AppUtil.getApplicationContext().getBean("workflowManager");
String processDefId = "app_yyyy_portal#126#emp_data";
Map variables = new HashMap();
variables.put("account_managers", "xxxx");
//Start a process with existing record
WorkflowProcessResult result = workflowManager.processStart(processDefId, variables, "xxxx");

 

Process is created but how to pass form field values in it?

 

    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      Hi, for storing form data you could try the example in Store Form Field Data to Multiple Tables

        CommentAdd your comment...