Hi I'm new in BPC world and I try to understand this error message when I validate script
Validation status of executable file: Failed
- Enforced *DESTINATION cannot be empty
It's look like under the CLEAR_DESTINATION
This is a part of the code ( if I put the 2 first destination in comments I have no error message ) What I Need to add or change to remove the message
CLEAR_DESTINATION
//define the destination data region
*DESTINATION ACCDIM = %BS_ACCTS%
*DESTINATION TIMEDIM = %VERSION_TIME%
*DESTINATION DSDIM = JNL_OPEN
*DESTINATION FLOWDIM = F_OPE
*WHEN TIMEDIM
//each month and the month before the budget/forecast starts
*IS PRIOR,%VERSION_TIME%
*WHEN DATASRC
*IS #JNL_TOTAL
//roll forward F_TOT members to F_OPE and for all months except December
*WHEN TIME.MONTHNUM
*IS <> 12
*WHEN FLOWDIM
*IS #F_TOT
*REC(TIMEDIM=TIMEDIM.NEXT,DSDIM="JNL_OPEN",FLOWDIM="F_OPE")
*ENDWHEN
*ENDWHEN
//roll forward F_CLO for all months
*WHEN FLOWDIM
*IS F_CLO
*REC(TIMEDIM=TIMEDIM.NEXT,DSDIM="JNL_OPEN",)
*ENDWHEN
*ENDWHEN
*ENDWHEN
*COMMIT