PARA-1.
.......
,.........
............
IF CONDITION
MOVE SPACES TO ...........
IF
ELSE
END-IF
IF
ELSE
END-IF
Move Statements.......
IF
.........
END-IF
IF
ELSE
END-IF
IF
ELSE
END-IF
END-IF
CONTINUE.
In the above code pattern, I need to put the IF condition (before moving spaces), so that it should skip rest of the lines and control shld move next to line after CONTINUE.
So how to code IF statement here.....
I tried with IF condition in the first line and End-if before CONTINUE....
But I'm getting error message as SCOPE TERMINATOR DISCARDED.
Plesae suggest me how to code these IF and END-IF so that it will skip all the lines in between.
IF CONTIION (If condition is statisfied, then it should skip all the lines mentioned above and control should move to next line after CONTINUE Verb).
Thanks in advance.