cancel
Showing results for 
Search instead for 
Did you mean: 

How to pass update value back to Main Process

sudarshan
Champ in-the-making
Champ in-the-making
Hi

I have a main process e.g NB (Process)

1. NB has 2 activities (CallActA, CallActB) - both are Call Activities
2. I change some value of an property 'Decision' in CallActA
3. I want to pass the changed value of 'Decision' property in CallActB

Issue: I cant see the changed value of 'Decision' in NB (main process)

Note: Decision is common property created in ProcessA (CallActA)  , ProcessB (CallActB)



1 REPLY 1

frederikherema1
Star Contributor
Star Contributor
Have you read the user guide (section about callActivity):

<callActivity id="callSubProcess" calledElement="checkCreditProcess" >
  <extensionElements>
          <activiti:in source="someVariableInMainProcess" target="nameOfVariableInSubProcess" />
          <activitiSmiley Surprisedut source="someVariableInSubProcss" target="nameOfVariableInMainProcess" />
  </extensionElements>
</callActivity>