Hi @Nikunj Patel ,
Yes, the statement in the document is: If multiple activites do not have an incoming link, the runbook starts by running them in parallel. It follows the links to run other activities as each completes. I would interpret it as, in this scenario where there are multiple activities at the start of the runbook, it helps to just start those multiple activities in parallel but it might not always complete in parallel. If the requirement is also to complete those first 2 activities in parallel and continue to next step then I would recommend to use Junction at that point as well because Junction helps to wait until all incoming branches complete which allows runbook to run multiple activities in parallel and ensures that all have completed before moving on to next step. So, you may try approach mentioned in the below screenshot and see if it helps.