iccube

How to Overcome MDX Query Error When It Can't Find Specific Entity

≯℡__Kan透↙ 提交于 2021-01-27 18:52:54
问题 When i run MDX query like: select {[Measures].[all_accounts]} ON COLUMNS, {{[Country].[Country].[Country].&[italy]}* {[TD].[TD].[date].&[2016-09-02T03:00:00.000]:[TD].[TD].[date].&[2016-09-02T03:08:00.000]}, {[Country].[Country].[Country].&[Germany]}* {[TD].[TD].[date].&[2016-08-16T04:00:00.000]:[TD].[TD].[date].&[2016-08-16T04:03:00.000]}} ON ROWS FROM [cube] i get an error because 'italy' is not an entity found in Country dimension. and no result is coming back. i want to be able to run the

icCube - How to do Authentication for icCube using an Apache web server

一世执手 提交于 2019-12-20 04:32:55
问题 I am currently in the process of writing a WebApp to access reports from our ICCube-System. The Application page is hosted on a server different to the IcCube-server. The server is currently a local Apache server (xampp) using Basic Auth to authenticate users before they can access my htdocs. I would like my Apache to do the authentication while icCube's internal authorization manages report access, with only a single login being required. My application is based on the live demo for web

IcCube - accessing Report Code with Javascript

喜夏-厌秋 提交于 2019-12-13 06:14:35
问题 When I am editing a report, I can click on "Report Code" to see information about the report structure. It loks like this: { "classID": "ic3.ReportGuts", "guts_": { "ic3Version": 12, "schemaName": "test_schema", "cubeName": "Cube", "layout": { "classID": "ic3.FixedLayout", "guts_": { "ic3Version": 12, "grid": 10, "boxes": [ { "classID": "ic3.FixedLayoutBox", "guts_": { "ic3Version":... How can I access this Information with Javascript? context.$report apparently doesn't give this information.

icCube join table with ETL

好久不见. 提交于 2019-12-13 01:12:46
问题 I have a Customers table which contains the salesRepEmployeeNumber which is in the Employees table. How do I do something like SELECT * FROM Customers JOIN Employees ON Customers.salesRepEmployeeNumber = Employees.employeeNumber with icCube ETL ? 回答1: As pointed in another answer, you can add a table based in an SQL statement that would do the job. In case your original datasource is not able to do a join : We've not yet an join transformation, added this in our todo list. On the meantime,

Assigning a value to an icCube Event in Reporting

左心房为你撑大大i 提交于 2019-12-12 16:42:59
问题 I am using icCube 5.0 Reporting I want to assign the value of an Event to that returned by the icCube MDX function UserName()--sort of like @{eventname} = UserName(). Eventually, @{eventname:reportParm} will be sent to a launched report for use in a filter. Does anyone have any hints for me? 回答1: There is no clean way (already in todo list) For the time being there is no clean way. You've to create a Constant - not an event - in Configuration/Constants that you call for example ic3c-userName

Is it possible to re-use schema specific reports on different schemas in iccube?

荒凉一梦 提交于 2019-12-12 15:16:38
问题 I have created standard dashboards connected to a single schema. Now I would like to re-use the same dashboards definition on different schemas. These schemas are all equivalent (same dimensions, measures, but different client data). Is this possible? I think of the process sequence: user logs on, dashboards connects to schema defined in the dashboard if the user has no access to this schema, connect to the schema the user has access to allow a user to select from the schemas to which he/she

icCube - ETL - how to execute a file dump

烈酒焚心 提交于 2019-12-11 10:32:52
问题 In the icCube ETL, there is a data manipulation (data view) called "File dump". I have set-up a couple of them in the ETL process, but none are executed when the data is loaded into icCube. This is a simple version of what I do: data source 1 > data view: a > used in FACTS data source 1 > data view: a > data view: file dump The file dump is not executed, as I do not see a file on the server. How to achieve that during load, there is alway a file dump available? 回答1: You should ensure the view

How to install a new JAR into icCube

一个人想着一个人 提交于 2019-12-11 08:59:22
问题 Is there any way to add a JAR to icCube install to make it available to MDX JAVA integration, JDBC data source, etc...? 回答1: You'll have to add the JAR into the icCube lib directory and possibly t update accordingly the CLASSPATH: Windows (.exe) - copy the JAR into C:\Program Files\icCube\5.1\lib - restart icCube Windows (.bat) - copy the JAR into C:\Program Files\icCube\5.1\lib - edit the C:\Program Files\icCube\5.1\bin\icCube.bat file to add the JAR to the CLASSPATH (e.g., SET CLASSPATH=

How to use a static range and display members according a TOP(x) style query

邮差的信 提交于 2019-12-11 06:11:46
问题 We are trying to add a slider jquery widget, and would like to define a static range, say percentage from 0% to 100%. Then we would like to use the value from the slider in that range as the parameter for the TOP(x), as shown on the picture. Is this possible? Any hints ? 回答1: I've created an example report for you, import it using the default [Sales] schema https://drive.google.com/file/d/0B3kSph_LgXizdk9OdnlTWkxHa1U/view?usp=sharing You could achieve this functionality by using the next

MDX - icCube - How to get a DYNAMIC topcount/toppercent with other aggregated?

会有一股神秘感。 提交于 2019-12-10 19:14:17
问题 Using the following mdx, I'm able to retrieve correct data dynamically. create CATEGORY MEMBER [Stats].[Top].[All Etabs].[Top 5 Etablissements] as topcount( [Etablissement].[Etablissement].[Etablissement].allMEMBERS, 5, [Measures].[Nbsejours]),ADD_CHILDREN=true create CATEGORY MEMBER [Stats].[Top].[All Etabs].[Autres Etablissements (>5)] as Except([Etablissement].[Etablissement].[Etablissement].members, TopCount( [Etablissement].[Etablissement].[Etablissement].MEMBERS, 5, [Measures].