The dependence in the calculation
I have one question about the dependence on the business rule.
In the FIX statement, I fix 5 years FY26 vs FY27, FY28, FY29, FY30,.
—
FIX(fix statement 00)
DATACOPY to open the block;
ENDFIX
FIX( fix statement 01)
FIX(fy26)
PL_01 = OFS_Calculated→ @MEMBER(@PREVISIBLING(@CURRMBR(Years)))→aCTUAL→Final;
ENDFIX
FIX(FY27,FY28, FY29, FY30)
FIX(fix statement 02)
FIX(fix statement 03)
PL_01(
IF(IF statement 01)
PL_01= OFS_Calculated→ @MEMBER(@PREVISIBLING(@CURRMBR(Years)));
ENDIF
)
ENDFIX
ENDFIX
ENDFIX
ENDFIX
—
My problem is that when I run this rule, only FY26, FY27, FY28, and FY29 have data.
However, FY30 does not have data.
I dont know when the system scan FIX statement, it will scan and run by each year sequentially or it run for each year parallelly.