Attribute 'noflow' / 'flow'
The pragmas identify an area that is excluded from the representation of the flow control. See Command Flow Control.
Syntax:
{noflow}
{flow}
Insertion location: Rows above and below the area that should not be represented by the flow control.
Sample:
IF Test THEN
IF Test1 THEN
{noflow}
IF Test2 THEN
;
END_IF
{flow}
END_IF
END_IF