Create a fallback process

I am a new bie to BPMN world. I have the main BPMN process for the order processing which takes the order through different stages and the end event is Order Completed(Like any other process model). There is a non interrupting sub-process (message event) to consume the invoice but it can also happen that the invoice is received after the main process has reached ‘Order Completed’ state. I want to create a fall back process to consume the invoice even if the process has reached end state(Order Completed)

What is the best way to do that?

Can you upload the model you’ve built, it’ll be easier to understand how it could be changed

Here is the model
sales-process_with_call_activity.bpmn (30.8 KB)

Hi @Vinaya_Nayak

two things you don’t need to cascade the XOR at the beginning. I’m not sure why you did your invoice handling as a subprocess. Depending on your requirements you have different options:

  1. Just put your invoice handing as a own process which can be started whenever an invoice is created.
    grafik
  2. Under the assumption that every message-start-event gets an invoice, just use a paralell gateway to wait for the invoice.
    grafik

Hope this helps a litte.

1 Like

Thanks a lot for your response. Much appreciated. I will test which one of these fits the best for my requirement.