I have a code ie, perform para1 thru para-exit1. I want to know whether it is a blunder if i introduce another para which is an exit para ?
Are so many exits allowed in between these para1 and para-exit1?
There is no limitation on the number of exits you can have in your cobol program. But when used in the para, it should be the only statement.
However, as a good programming practice, you should not be puttting exit statements inside para1 thru para1-exit. It reduces the readlibiltiy of your program.
Please let me know if I have not described it properly.