MartinBoglione
4 days agoNew Contributor
FdxExecuteCubeView cannot export dynamic calculations in V#Annotation
Hi All,
I'm working with FdxExecuteCubeView and cannot export the dynamic calculations in V#Annotation even though I have includeCellTextCols as True.
The OS documentation also says that it's possible to extract Dynamic Calc results.
In my CubeView I have a dynamic UD8 which returns the value kilogram in this case:
Here's the code I have right now:
Dim nameValuePairs As New NameValueFormatBuilder(String.Empty,customParams,False)
Dim filter As New System.Text.StringBuilder
Dim parallelQueryCount As Integer = 8
Dim logStatistics As Boolean = False
Dim includeCellTextCols As Boolean = True
Dim useStandarFactTableFields As Boolean = False
Dim dt As New DataTable
dt = BRApi.Import.Data.FdxExecuteCubeView(si, cubeViewFilter, "","","","","", nameValuePairs, includeCellTextCols, useStandarFactTableFields, filter.ToString, parallelQueryCount, logStatistics)
Return dt
And the resulting data table shows 0.0 instead of kilogram:
Am I missing something here?
Thanks for the help!