Skip to main content
July 3, 2013
Question

Business Process workflow in CF

  • July 3, 2013
  • 2 replies
  • 487 views

I want to develop a business workflow like below,Is it possible in CF .. .

Sequence Flow:

Request center --- > Request (2nd department)  ---> Request (3 rd department)


Parallel Flow:

Request center   ----> 2nd department
                                                                      ----> Final Depatment

                           ----> 3nd department 

This topic has been closed for replies.

2 replies

BKBK
Community Expert
Community Expert
July 15, 2013

<cfthread action="run" name="thr1">

Sequence Flow goes here

</cfthread>

<cfthread action="run" name="thr2">

Parallel Flow goes here

</cfthread>

<!--- Join the two threads. Use, for example, a 2 second time-out. --->

<cfthread action="join" name="thr1,thr2" timeout="2000" />

p_sim
Participating Frequently
July 11, 2013

Please describe more... What is "request center"? What are you trying to pass on?