Narrative Reporting Issue
Hello! Has someone tried Narrative reporting in 9.1 version? I am currently experiencing issues: 1.- Inserting charts/Advanced Charts / Reports if someone could insert an exaple on how they have done it. 2.- I cannot vie the artifacts and acces them, this message keeps popping up (and the names are fine) Thank you so much for the help!!39Views0likes1CommentUpdate make dashboard table formatting dynamic from BR
Hi everyone, I currently have a dashboard that shows the following table: the format of each field has been set in the SQL Table Editor settings, to allow the users to understand what fields can be updated. Nevertheless, I would need to make sure that the format of certain columns changes depending on how the users populate the table. For example, if the user inputs "MANUAL" under the col TAG, I would like the field "New Target Account" to become yellow automatically upon saving. So far, I only managed to make the content of the other cells dynamic using this construct in the Dashboard Extender BR linked to the SQL Table Editor: xfrow.ModifiedDataRow.Item("T_ACCOUNT_NEW")= "-----------------" Is there something similar that allows to also change the formatting of the cells? Thank you!9Views0likes1Commentget partner currency in a cube view or FX formula?
hi all, good day; we are using plug accounts and IC matching accounts property, we see the IC matching report but I would like to know if it's possible to get the partner currency in a cube view or though a fx formula in Excel? I konw that this is a derivated data, but would like to know if its available on any dimension or fx formula Thanks in advance and kind Regards. Mario GuerreroSolved27Views0likes6CommentsBi Viewer - Totals in Pivot table - Cube View MD
Hi All, I have a Bi Viewer dashboard where the total for the "NET ASP" column (grey row) is the sum of the submembers. However, this is not correct for the totals [Net Sales / Net Units]. But I'm not really sure how to do it with the current data adapter, Cube View MD. Just some FYI - The first level of the rows is the products, and the second is the market. Did anyone ever face something like this? Thanks, Davide6Views0likes0CommentsBi Viewer - Hierarchy display
Hi All, I'm struggling with the Bi Viewer pivot table. I'm trying to get a hierarchical view on the rows for our UD2 - Market dimension. I have to use the Data Adapter Cube View since I have some calculated fields that cannot be replicated using the Cube View MD. Has anyone had the same issue? Thanks, Davide1View0likes0CommentsGenesis Parameters (Filters) Issue
I am having an issue with cube view parameters within the Genesis content block "Cube View Comments"? I receive one of two errors - (1) Index was out of range (parameter 'index') or (2) Parameter is not supported. However, if I put the exact same cube view in the "Cube View Advanced" content block, the parameters work exactly as expected. Is this a bug or is there something I'm doing wrong? Any help would be greatly appreciated.138Views0likes7CommentsViewing export of dashboard in screenshot or Extensible Document
I have a dashboard (not bi-viewer, standard OneStream dashboard) frame that needs to be shared with users outside the application on a regular basis. How can I use a screenshot of this dashboard as a picture or book file to be shared with users outside the app? Users currently screenshot the picture and save the file locally before sharing. I'm hoping to use a OneStream tool to accomplish this. I've investigated extensible documents and books, but they appear to require build a "report" dashboard component. Not looking to rebuild the dashboard from scratch. Ideal situation would be similar to how cube views can embed to picture in Extensible PowerPoints, but I'm open to other options. Thanks in advance15Views0likes1CommentLosing Dynamic Parameters on Dashboard Refresh
Hello, I would be very grateful if someone could offer some direction on fixing the issue of dynamically generated parameters disappearing on a refresh action. When the dashboard initially loads, all of the dynamic parameters render as expect. I have an extender service setting the count of parameters to 2 for each param type (Debits,Credits). These work off two stored member list parameters, par_DebitList and par_CreditList. When the dashboard is refreshed, I lose the _dynamic_2 even though the parameter count is still 2. Public Function GetDynamicParametersForDynamicComponent( _ ByVal si As SessionInfo, ByVal api As IWsasDynamicDashboardsApiV800, ByVal workspace As DashboardWorkspace, ByVal maintUnit As DashboardMaintUnit, ByVal dynamicComponentEx As WsDynamicComponentEx, ByVal customSubstVarsAlreadyResolved As Dictionary(Of String, String)) _ As WsDynamicParameterCollection Implements IWsasDynamicDashboardsV800.GetDynamicParametersForDynamicComponent Try If api Is Nothing Then Return Nothing Dim CompName As String = dynamicComponentEx.DynamicComponent.Component.Name If CompName.Contains("CBX_Credits") Or CompName.Contains("CBX_Debits") Then Dim params As WsDynamicParameterCollection = api.GetDynamicParametersForDynamicComponent( _ si,workspace,dynamicComponentEx,String.empty,Nothing,tristatebool.TrueValue,WsDynamicItemStateType.MinimalWithTemplateParameters) Dim paramname As String = Nothing If CompName.Contains("CBX_Credits") Then paramname = "par_CreditList" Else paramname = "par_DebitList" End If Dim ParamComp As WsDynamicCompParamMemberEx = params.GetParameterUsingBasedOnName(paramname) Return params Else Return api.GetDynamicParametersForDynamicComponent(si, workspace, dynamicComponentEx, String.Empty, Nothing, TriStateBool.TrueValue, WsDynamicItemStateType.MinimalWithTemplateParameters) End If Catch ex As Exception Throw ErrorHandler.LogWrite(si, New XFException(si, ex)) End Try End Function This is my setting on the combo box: When refreshing the dashboard, all the components render, but just the parameters are lost. When loading the dashboard, GetDynamicParametersForDynamicComponent executes 8 times, while on a refresh it is only executing 6 times. Would appreciate any guidance on this. Thanks!40Views0likes1CommentGetting the parent dashboard name of an embedded dashboard ?
Hello, I am currently working on the solution which consist of a dashboard page that can be embedded in other dashboards. For this solution, I would like to reference the name of the parent dashboard where the embedded dashboard is currently embedded. Are there any standard functionalitity / functions that would catch the main or parent dashboard of an embedded dashboard ? Many thanks for your insights. Regards,22Views0likes2CommentsDashboard MAP - Grouping Pinpoints
Hi, wondering if there's any way to group all the coordinates pin point on a map. Similar to this: I'm running a Dashboard Dataset Rule and using a Map Component within workspaces. The issue is that the location text gets jumbled when zoomed out: This is the excerpt of the code, but mainly lets it pinpoint the location on the map Dim pin As New XFMapPinPoint(LCLat, LCLong, MemberInfo.Member.Description, XFIMageFileSourceType.ClientImage, "StatusBlueBall", 0, 0, MemberInfo.Member.Name, XFImageFileSourceType.ClientImage, "StatusGreenCheckMark") 'MemberInfo.Member.Name 'MemberInfo.Member.Description collection.AddPinPoint(pin) End If Next Return Collection.CreateDataSet(si) End If Thank you! Carbon13Views0likes0Comments