Module Chart Checks : (C5015) Elements containing For Loops with erroneous range indices

(C5015) Elements containing For Loops with erroneous range indices

Error In:
Correctness
Description:
Elements contain action expressions in which there are for loops statements with invalid ranges.
Example:
There is an action that contains the following for loop statements:
for $I in 10 to 1 loop
...
for $I in 1 down to 10 loop
...
 
 
Erroneous Elements:
Actions