Calculated Data lost after I run consolidation
Hello OneStream Experts:
I created an account called MyAcct to store calculation. I run the business rule in Data Management step and put Net Income to MyAcct.
api.Data.Calculate("A#MyAcct = A#NETINC")
After I run the business rule, the Calc Status in View dimension show CA for both NETINC and MyAcct. However, after I run right click the data cell to run consolidation or Calculation, the value in MyAcct got lost, the calc Status for NETINC became OK. I wonder why my calculated account lost the data value after I run consolidation.
Thank you advance for any answers.
Hi
You need to set the isdurabledata boolean on the api e.g api.Data.Calculate("A#MyAcct = A#NETINC", True)
Otherwise your data is not durable and will get cleared each time you consolidate
Hope this helps