following is my flow,
<view-state id="fileUpload" view="FileUpload" redirect="false" popup="false" model="scanDataHolder">
<on-render>
<evaluate expression="fileUpload.setupNewFileUploadHolder(holder, flowRequestContext,externalContext)" />
</on-render>
<transition on="process" to="uploadreport" validate="false">
<evaluate expression="fileUpload.process(holder, flowRequestContext,externalContext)" />
</transition>
<transition on="doneWithFileUpload" to="doneWithFileUpload" validate="false"/>
</view-state>
<view-state id="uploadreport" view="renderReport" redirect="false" popup="true" model="retailScan"/>
above flow works well and good. but, when my flow comes here
<transition on="process" to="uploadreport"
I need to go to <view-state id="uploadreport" view="renderReport"..../> and also to <view-state id="fileUpload" view="FileUpload".../>
one will open an excel report and other will clean the field used to browse the file and shows with brief results of the file...
any help is appreciated!