Hi Antoine,
I have implemented one process where the user submits one document and the process informs him for the success or failure of the submission. (BP1)
I want to call that process in a second process (BP2) in order to reuse that functionality. As a first step I just try to make the BP2 to call-initiate the BP1. For example the business logic of BP2 looks like:
- (User Pool): Send document submission initiation request
- (Executable Pool): Receive document submission initiation request
- (Executable Pool) Call the BP1: here i want to display the document submission BP1 form and to submit the document
- (Executable Pool) Receive the BP1 completion notification
- (Executable Pool) Simple end event
If the above scenario is impossible, can you suggest me an alternative way to implement it.
The general idea of my work is to create a set of reusable business process patterns and then to use them in order to build more complex business logic.
Thanks for your interest!