Is this true? Regarding CreateNonMissingBlk and CreateBlockOnEq
Summary
Is this true? Regarding CreateNonMissingBlk and CreateBlockOnEqContent
So I am at a client using Planning 11.1.2.4.079 with Exalytics and cleaning up some data. By cleaning up, I mean that there is a sparse dimension that has data in 2 different places and it belongs in only 1 place for each combination of legal entity and cost center.
I have code similar to this:
Set CreateNonMIssingBlk On;
Fix(Legal Entity, Cost Center)
Sparse_New = Sparse_New + Sparse_Old;
ENDFIX;
Fix(Legal Entity, Cost Center)
ClearData Sparse_Old
EndFix
The code works. It takes a while because it is all periods, all years, all versions, all accounts, all scenarios...... But performance isn't an issue as this is a one time clean up.