I am trying to figure out how to use Indices. I have a FST GROUP THAT REPEATS 7 TIMES AND I NEED 4 FIELDS SENT TO A TEMPARY SPOT TO MOVE OVER TO THE OUTPUT SIDE. THIS IS WHAT I HAVE SO FAR IN THE EXTENDED RULE.
IF #0681 = "W" THEN
BEGIN
$TEMP_FST[X][Y][Z].#TEMP_FST01 = #0380 / 1000;
$TEMP_FST[X][Y][Z].#TEMP_FST02 = #0680;
$TEMP_FST[X][Y][Z].#TEMP_FST03 = #0681;
$TEMP_FST[X][Y][Z].#TEMP_FST04 = #0373;
Z=Z+1;
END
Tech support keeps telling me that I need to "initialize the variables on the on begining extended rule"
I have this:
Integer X;
Integer Y;
INTEGER Z;
X=X+1;
Y=Y+1;
Z=Z+1;
and it is only giving me the last segment out of 7. help.
IF #0681 = "W" THEN
BEGIN
$TEMP_FST[X][Y][Z].#TEMP_FST01 = #0380 / 1000;
$TEMP_FST[X][Y][Z].#TEMP_FST02 = #0680;
$TEMP_FST[X][Y][Z].#TEMP_FST03 = #0681;
$TEMP_FST[X][Y][Z].#TEMP_FST04 = #0373;
Z=Z+1;
END
Tech support keeps telling me that I need to "initialize the variables on the on begining extended rule"
I have this:
Integer X;
Integer Y;
INTEGER Z;
X=X+1;
Y=Y+1;
Z=Z+1;
and it is only giving me the last segment out of 7. help.