Pentaho 6: CDE and OLAP Selector wizard - pentaho

I'am trying to create a Dashboard in Pentaho 6 with CDE. I'm follwing this tutorial (https://www.youtube.com/watch?v=Nq86J5t5c18).
I already have a Cube and I've been using it on other tools like "Saiku", "New Openl Analysis report" and "Pivot4j". The problem occurs on CDE with the OLAP Selector wizard. When I select my cube on this Wizard the dimensions and measures do not shows up.
I already checked the log file while doing this and no message was written there.
Screen shot of the wizard wizard screen

Solved
The problem was that my mondrian schema had these chars "/", ":", "(" and ")". I only discovered this by inspecting the javascript code while the datasource have been selected.

Related

Cannot access Odoo Studio after "messed up" in properties / widget

In Odoo studio, I "played" around in the widget where there is a selection of data type such as "float".
I mistakenly changed the type from "float" to something else.
Which now I cannot access into Odoo Studio to changed back the setting
I would like to know how to resolve this error
Thanks a lot!
Odoo 14.0+e (Enterprise Edition)
Error as follows
Traceback:
TypeError: Cannot read properties of undefined (reading 'digits')
at Class._render (https://mycompany.odoo.com/stock/static/src/js/forecast_widget.js:34:124)
at https://mycompany.odoo.com/web/static/src/js/fields/abstract_field.js:209:25
To change it back you can open the view which you modified in studio for example if you modified sale order form, open any sale order in form view and enable developer mode and then from debug icon select Edit view: Form, the form view will be shown go to inherited views tab and you will find many views but you will find view with name start with Odoo Studio click on it and then the the inherited view will be opened and from Architecture tab you will see the xml code so you will look into it and comment the widget change using <!-- --> or delete it.
You can check this YouTube Video

How to open Advanced Editor for Flat File import in SSMS?

Importing a CSV - I get a truncation error
Error 0xc020902a: Data Flow Task 1: The "Source - Train_csv.Outputs[Flat File Source Output].Columns["Title"]" failed because truncation occurred, and the truncation row disposition on "Source - Train_csv.Outputs[Flat File Source Output].Columns["Title"]" specifies failure on truncation. A truncation error occurred on the specified object of the specified component.
I used a method from this answer and sadly got another error. So I have tried using this answer.
Problem that I encounter
I am unable to open the advanced editor. I cannot see this button anywhere.
What I've tried to solve it
googling
youtube
stackoverflow
help in SSMS,
opening the import tool from start menu and going to advanced tab.
I'm running out of ideas here. Specifically, I don't know what to click in order to find the menu from no 2 on the picture below:
**Edit:
This error is copy pasted from the ANSWER 1, as it's basically the same what I get, just different columns there.
Also, answering Brad's question:
A view from my SSMS after right click
**
Edit2: Possibly solved
AlwaysLearning said in the comments that this menu is not present in SSMS but in SSIS. I have been trying to google where to get it but I seem to be to tired to deal with it for now, therefore I will wait for others to confirm it or go back to it tomorrow. After I've found it in SSIS, I will make an edit here. T
**Solved **
Just as AlwaysLearning said in the comments (sorry, I cannot click 'useful' yet as I'm new here), this menu is in SSIS, not SSMS. I struggled a lot to find it, so here's how to do that:
In This YT video it is explained how to install SSIS through Visual Studio.
In This YT video it's explained how to find this menu box in SSIS
Thanks for help guys

Powerbi - view the query used to pull in data

I've downloaded the pbix of a report from a colleague. I'd like to view the SQL query that was used to pull the data into this report. When clicking on 'edit queries' I can see the output of the query, but not the query itself. How do I view the query itself? Note I would like to see the query before any steps Power BI takes. I found something in 'advanced editor' that looks code-like but it doesn't seem to be the raw original code.
Click on the table/query on the left pane. On the right side you see the steps he applied in the query designer and under Home > Advanced Editor you see the whole code what happended.

How to adding the OpenERP datasource to Pentaho Report Designer 3.9.1?

I am using Pentaho Report Designer 3.9.1
OpenERP Datasource Menu does not appear in the advanced tab
like add OpenERP DataSource
Data->Add Data Source->Advanced->OpenERP Data Access
I found some references from a different website with this menu:
I haven't found it in Report Designer, though.
Aanybody could help me figure out how I can enable the OpenERP Data Access Menu?
According to this article it says,
End users of OpenERP can design reports using Pentaho report designer
v5.0 through v5.4
Therefore those versions show up the said menu in PRD.
But still there's a way to install it for 3.9 version. Follow this.

Can't see or add Website Data Sources in RDLC report in ASP.NET MVC

In the RDLC report, in Design view in Visual Studio 2008, we don't see anything in the Website Data Sources tab and the button to Add New Data Source is grayed out. Only the Refresh button is enabled, and clicking it doesn't do anything. Our business logic layer returns Lists of business objects and the business logic and business object projects are both referenced by the MVC project. This is an MVC app, so there is no App_Code folder.
How do we get our business objects to appear in the Website Data Sources list so we can drag and drop fields from the object onto our RDLC report?
I think I suffered the same problem as this.
I solved this by closing all open VS windows, cleaning, rebuilding the solution then adding a new WebForms page (yes I know its MVC) but it then seemed to trigger a refresh in something and the data sources showed up when we reopened and editted the rdlc file.
I have also been frustrated by this, using VB.NET, but this should fix it:
In addition to the reference to:
Microsoft.ReportViewer.Winforms or
Microsoft.ReportViewer.WebForms
You need to also add a reference to:
Microsoft.ReportViewer.Common
The Data Sources panel is still blank, but when you select Add Dataset, you'll see the correct options.
Try this...
https://msdn.microsoft.com/en-us/library/yft2c9ad.aspx
On the menu bar, choose View, Other Windows, Data Sources (or choose the Shift+Alt+D
I had the same problem in Visual Studio 2008. The solution I accidently found was to do the following:
1 - Launch VS 2008
2 - Open Solution
3 - Open report file (rdlc) and make sure "Website Data Sources" pane is showing
4 - Close VS 2008 (with the rdlc "having focus"
5 - Launch VS 2008
6 - Open Solution
You should now see the data in the Website Data Sources pane
One of the problems I had was that my DataSource class didn't have a parameterless constructor...after the parameterless constructor was added "the class" showed up in the DataSource list.
Small detail, but lost some time to figure it out. :)