LOOP and VAR functions on FCCS
Content
Hi,
we like to know if functions "Loop" and "Var" are available on FCCS.
we have an custom rule that uses this 2 functions but it's not working like it's suppose.
we're trying to declare a variable to define the number of times that a loop is performed.
The code is something like this:
VAR X = 0;
Fix(...)
LOOP (X)
code
"member count"
(
"member count"="member count"+1;
IF(...)
X==1; /* exit the loop*/
endif
)
endloop
end if
but when I consolidates it gives the following error:
"Declaration of temporary variable [X] is not supported inside FIXPARALLEL"
Thanks in advance
0