This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: java activity inside subprocessapurv888 Feb 11, 2010 4:39 AM (in response to apurv888)I am able to get this in variable but I am not able to set this var as an arg/field to java activity.Any pointers how can the existing task var be set as arg/field for java activity. <start> 
 <transition to="getXXX"/>
 </start><task name="getXXX 
 assignee="YYY"
 var = "statetask">//this var is available from main process<transition to="getZZZ"/> 
 </task><java name="getZZZ" 
 class="xx.xxx.Test"
 method="getUserXXX"
 var="return"
 >
 
 <field name="state"><string value="somevalue"/></field>// need to set the stateTask var value to state field here
 <arg><string value="Test"/></arg>// need to do the similar thing here
 
 <transition to="end" />
 </java><end name="end" /> 
- 
        2. Re: java activity inside subprocesskukeltje Feb 11, 2010 2:01 PM (in response to apurv888)Use EL... (Expression Language)
 
    