I have two programs, A and B.
A is the Driver Module.
B is the Called Module.
Program A has a call statement inside it. I already set up the breakpoints.
PROCEDURE DIVISION.
B CALL B USING ....
.
.
STOP RUN.
B CALL B USING ....
.
.
STOP RUN.
I already put some breakpoint on B so when it is called by A during Xped, I expect that it will jump inside the Program B.
But when I press F9, It doesn't go to program B. Instead, it stops.