Forum Discussion
Henning
8 months agoValued Contributor II
Hi,
I do not believe this is possible. This is - in my view - not a function to be used to set a storage type in a data buffer, but to filter on one when needed. You can use this e.g. in drill down rules, to drill down to data based on storage type such as this:
Dim result As New DrillDownFormulaResult()
If args.DrillDownArgs.RequestedDataCell.CellStatus.StorageType = DataCellStorageType.Calculation Then
'drill down to calculated data
Else If args.DrillDownArgs.RequestedDataCell.CellStatus.StorageType = DataCellStorageType.Journals Then
'drill down to journal data
Else If args.DrillDownArgs.RequestedDataCell.CellStatus.StorageType = DataCellStorageType.Input Then
'drill down to input data
End If
Return Result
A result data buffer cell should always (automatically) be of storage type calculated. Only the source data buffer storage type should vary.
Happy to learn something new if there is a way to save data from a data buffer in the cube as a journal storage type cell.
Related Content
- 7 months ago
- 2 years ago