Discuss reporting and cube views.
Recently active
Hi,I have created a dashboard with a Reset Scenario button.The code behind the button updates the workflow time, wf start time and wf end time of the workflow scenario (there is actually a dialog dashboard in between, i.e. when I press Reset a dialog box opens asking what the new WF Time should be, and user can press OK to reset the scenario or Close the dialog. WF Start and End times are determined based on the WF Time).The issue I have is that the workflow POV does not change, unless we click on a different workflow step, which can be confusing. So if I change the WF Time of the scenario member, using the Reset button from 2024 to 2025, the workflow time POV (the one shown in the OpenPlace tab) does not change, but as soon as I click on the following step (eg. Seeding) the workflow time POV changes to 2025.How do I make so that the Reset button forces the workflow POV to refresh? Do you think is something that I can achieve at dashboard level (through refresh or redraws) or business
Spoiler (Highlight to read) Hi everyone,I am trying to replicate an example that i have created in OneStream 8.2, where I have a combo box inside a cubeview:But when I do the same in OneStream 8.4, the combo box doesnt work:I replicated the same parameterization in both version but I dont understand why in 8.4 doesnt work.Does anybody knows if there is a bug? Thank you
Hi,I need help implementing conditional visibility for a button in my dashboard. In the attached image, there's a Store button that I'd like to make visible only when the "Single Store" option is selected in the Store Hierarchy combo box. When any other option (e.g., "All Stores," "Takeovers2024FY," etc.) is selected, the button should either disappear or have a different style to appear disabled.Can anyone guide me on how to achieve this behavior?Thanks in advance!
Hi, Is it possible to create member filter in QV using Text1 that varies by Year and Scenario. Is it dynamic enough to read T# and S# of POV and use them to get Text1? For example, I have few members with "AAA" in 2024 and "BBB" in 2025. In other members, "BBB" is in2024, and "AAA" in 2025. I want to pull all UD2 members that have "BBB" in 2025. If this doesn't work, other way is BR "CustomMemberList" I guess. Anyone has sample code that can create list by reading Text1 in 2025? Thank you in advance, Mikki
Hi, All I have a column in a cube view for which I need to get the time description prefaced by "YTD". This was no problem for the current period as I could use a variable "wfTimeDesc" as follows: T#WF:Name(YTD |wfTimeDesc|) However, when trying it for a prior period, I couldn't find a variable to use that gave me a description. This is close, as it returns "YTD M9 2023" but what I really need is "YTD Sep 2023": T#PeriodPrior12(|WFTime|):Name(YTD |WFSubPeriod| |WFYearPrior|) I know I could add a header row and put it underneath, but this was the request, if I can do it. Thanks in advance!
Hi, I am creating a report for our auditors that takes the IC accounts and their elimination "Plug" account throughout the Origin dimension. I don't want to create a bunch of separate reports for AP/AR, Sales/COGS, IC Expense, etc. My thought is to define these in a Parameter and then build a book. Can anyone point me to a good starting point on how to define these 4 different drop down options? For example, the AP/AR one would include A#19999, A#29999, and A#IC_DIFF, and the report user would select AP_AR_DIFF or something like that. Any insight is appreciated - the forum has been very helpful! Thank you!
Hi All,is there any way to clear the added comments in V#VarianceExplanation/V#Footnote using rule or any other method. I tried using rule but it's not working as expected. we are storing our comments at parent entity and mostly Top members in UD dimension , please let me know if any other information required.our intersection where we are storing the comments:E#ParentEntity:P#?:C#USD:S#ActualComment:T#2023M9:V#Footnote:A#acc:F#EndBal:O#Top:I#Top:U1#TotOPU:U2#Top:U3#Top:U4#Top:U5#None:U6#None:U7#Top:U8#Top
Hi everyone,I would like to create a table with an overview of the answers given to the certification questions in the certify steps per entity.Does anybody have experience with this? I think this data is stored in one of the application tables. I was wondering if this is the 'CertifyQuestionInstances' table. Would there then be a way to translate the keys into readable data? Any help would be appreciated.Thanks a lot.Floris
Hi I have a problem with dril Down in BI Viewer. Part of our UD1 is as follows: BU1000 - EGMONT GROUP BU1500 - Other Business line BU6000 - HOLDING AND SERVICE BU6100 - HOLDING COMPANIES I have done the following: 1: Cubeview Cubeview exportet to excel gives this Please notice that top level BU1500 do not aggregate the data. And this is correct, totally 1.7. 2: Dataadapter: Pivot in BI Viewer looks like this: My drill down in Charts i BI viewer looks as follows: Start: Total 5.1 Drill first level: Total 5.1 Drill second level: Total 3.4 The red box should not be there Drill third l
hi all, I hope you are doing well. I've a cube view with 2 columns and need to add another dimension, is his a bug to have only 2 dimensions? Thanks in advance. Regards Mario Guerrero
Looking for some sample code to help me get started with adding in a new row through the SQL Table Editor, where a few of the columns are prepopulated on row addition through Dashboard Extender BR Code
Hey all, So i'm trying to solve the display name of a view member in a cubeview column. I manage to change the display name by using Delimited List by changeing display name in parameter dropdown to "TTD" in this case. However the membername in the cubeview column is still the original membername in the dimension (Trailing4Months). I tried Member List as shown on prontscreen below. I did also try the condition rules in the cubeview but did not find any returning input of display name. I think I could solve this with XFBR but wanted to check here first to see if there are any "Built in" solution to handle this? Thanks in advance
Anyway to display text value in Cubeview without creating UD8 member.I was able to filter using text in row but I want to display what does it mean to make it more presentable.
Hello, I currently have a dynamic formula that pulls the max value, but was asked to use that formula to get the absolute value that is also a negative the highest amount to pull that value as well instead of being 0. Here is the current formula I'm using Dim dAmount_1 As Decimal = api.Data.GetDataCell("T#Pov:U8#None").CellAmount Dim dAmount_2 As Decimal = api.Data.GetDataCell("T#PovPrior1:U8#None").CellAmount Dim dAmount_3 As Decimal = api.Data.GetDataCell("T#PovPrior2:U8#None").CellAmount Dim dAmount_4 As Decimal = api.Data.GetDataCell("T#PovPrior3:U8#None").CellAmount Dim dAmount_5 As Decimal = api.Data.GetDataCell("T#PovPrior4:U8#None").CellAmount Dim dAmount_6 As Decimal = api.Data.GetDataCell("T#PovPrior5:U8#None").CellAmount Dim dAmount_7 As Decimal = api.Data.GetDataCell("T#PovPrior6:U8#None").CellAmount Dim dAmount_8 As Decimal = api.Data.GetDataCell("T#PovPrior7:U8#None").CellAmount Dim dAmount_9 As Decimal = api.Data.GetDataCell("T#PovPrior8:U8#None").CellAmount Dim dA
Hi, I have been working on creating reports for some time and after trying different options I have some questions: Mainly: how are the reports created by default? How did you solve (usually) the problem of the comments? I had originally planned to work with Books but they have (IMHO) limitations in the format or the comments are not displayed well, so I have ended up in Excel where the CVs are retrieved and commented. However, I have many reports that often only change in the query (MTD, YTD, segments) and I would have to create a CV for each report (I have also done this but it is getting confusing, therefore I would need to save some of them). How should I most efficiently create reports where I explain deviations in the products, deviations in the P&L at monthly and annual level (and this for several UNITS) and deviations in the balance sheet? BTW What is the best way to upload the comments in Onestream from Excel? Is there a good PDF manual with all of this informa
Is there a non-admin role in onestream for health/performance monitoring, without any admin rights? Else is there a REST API to auto-export the "tasks" and "errors" logs on a recurring basis? FYI, Since our recent v8 upgrade, my REST api calls to the onestream service are failing with intermittent and unexplainable issues. The api never returns anything helpful in the way of an error message. I only get 5xx codes with no content bodies. I'm assuming that any information that may be relevant is found only by digging into the nullreferenceexception's (in the adminstrative tools found in the front-end U/I below) ... while software developers should not be able to administer a production environment, we should be able to at least investigate these random and unpredictable errors (internal server errors). I'm hoping there is some sort of read-only role for that, or at least an API to export the information that would otherwise be f
Hi Team, Please help us if any possible way for below requirement. I have multiple rows and columns. here, If my three columns "Time 3(D2), Time 4(E2) & Time 5(F2) are have zero data, then Row "Entity 1(A2)" should get hide. i have tried CV suppression setting but it is suppressing the row when the entire row have zero or No data. Kindly let me know if any other setting needs to apply.
delete button/icon is greyed out to delete assemblies. how can an assembly be deleted?
I am building a UD8 dynamic calc to bypass the limit of 4 cube view overrides. The calculation will read the referenced member (e.g. A#Net_Income:S#Actual) and return a different member intersection (A#Net_Income:S#Plan2024) In order to return the correct plan scenario, The UD8 member must read the time parameter used in the cube view. This functionality exists, but is throwing an unexpected error. My parameter exists in the default workspace. To pull my literal parameter value, I have the following code: TimeParameter = "Param_Time_LitValue" Dim TimeMbr As String = BRApi.Dashboards.Parameters.GetLiteralParameterValue(Si, False, Guid.Empty, TimeParameter) TimeMbr returns the value "Unknown". From my research, this error occurs when you reference a parameter that is defined in a different workspace, which is not the case here. I would appreciate advice on what I am doing wrong. The sample code I am following is found within BRAPI>Dashboards>Parameters. The sample says that the Tim
When I do a keep only on this quickview below, it causes all rows to disappear. only way to get around it is to choose the entity I want in the parameter/member filter builder. Why would keep only cause all rows to disappear?
Has anyone figured out a way to use an XFBR to determine the Bound Parameter on a Combo Box? It seems like a no-brainer that this should be possible but I've not been able to figure out how. Hoping someone has figured out what the syntax on the XFBR has to be to make this work or can confirm that this isn't possible. Thanks
I am trying to create a small POC for using a SQL Table Editor tool. However, I am unable to edit a table row on the SQL Table Editor even after it is in a Dashboard with all of the settings to do so. What is the typical reason for this? I have Default For Allow Column Updates = True and my OneStream Database Server Maintenance Group for Ancillary Tables is set to Administrators (I am an Admin). I tried setting that to Everyone and that didn't work either. I am confused on way the basic functionality of this to to edit SQL data is not working. Any help appreciated! Thank you!
Hi All, Can you help me please? Within the Hierarchy for the business, there is a section called GroupEntity. No one is claiming use of this and so I would like to delete it, if possible, to avoid the extra maintenance needed to keep the structure in line with the others each time a change is needed. Is there a way to see where this has been used or gets referenced? I guess I could just delete this and wait for people to shout but if there is a better way to approach this - Please let me know? Thanks in advance for any pointers given here. Cheers,John
Is there a function to lookup the name of a member from description. I've been looking at the functions for a couple hours and cant find anything
Since upgrading to 8.4, the client is unable to see results in report view. They were able to under 8.2. Is this a known issue? Here's all we see...
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.