try this...

  | ProcessInstance instance = jbpmContext.newProcessInstance("ProcessName");
  | ProcessInstance instanceEntrega = 
jbpmContext.newProcessInstance("SubProcessName");
  | 
  | ProcessDefinition processDefinitionSubProcess = 
instanceEntrega.getProcessDefinition();
  | ProcessState processState = (ProcessState) 
instance.getProcessDefinition().getNode("NameNode");     
  | processState.setSubProcessDefinition(processDefinitionSubProcess);
  | 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4218417#4218417

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4218417
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to