Concurrent Program Incompatibility
I have a concurrent program which triggers a PL SQL procedure. Which in turn submits 4 concurrent programs one after the other.
What we require is that each there 4 programs should run after the previous one is complete. We cannot use the standard function wait_for_request as the client's coding standards do not allow us to use this. We are also apprehensive about using a request set because lot of parameters are derived in the main program which submits the other 4 programs and so using request set would require major code changes.
What we did was we defined each of these 4 programs imcompatible with each other. So that they cannot run parallely. And the one that is submitted first should be executed first. But somehow that is not happening.