HOW TO CLEAR DIRTY BLOCKS IN HYPERION PLANNING USING BUSINESS RULE
Hi gurus,
I want to clear blocks that were created with accident. First of all, we combinations with a number "1":
FIX(@relative("Alquileres",0),@relative("UOR",0),"Formulado")
"IN001"=1;
ENDFIX;
After that we empty this blocks using this command:
FIX(@relative("Alquileres",0),@relative("UOR",0),"Formulado")
"IN001"=#Missing;
ENDFIX;
We noticed that database increase as doble size. Finally we decide to use this command:
FIX("Formulado")
CLEARBLOCK EMPTY;
ENDFIX;
But the database size did not reduce.