Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
Comments
-
Hi @User_F9A54 , I would compare the logical/physical queries that OBIEE executes when 1) the conditional analysis is placed directly in the dashboard, and 2) the conditional analysis is used in a condition. If the queries are exactly the same in both cases, then I suggest to open a SR. If they are different, the…
-
Hi @Stacey D , I didn't try the approach you are suggesting, but I'm pretty sure that it will not work as expected. The styles specified in the custom.css file are applied on the top of the base style (which should be either Alta or Redwood), which is expected to be different from Skyros' base style.
-
Hi @User_QAK58 , You can find the information you are looking for in the documentation:
-
Hi @MadhuVitta , In order to use the AI Assistant, your OAC instance must have 10+ OCPUs and your users must have the Use Assistant in Workbook permission.
-
Hi @Karthick_ , As I wrote above, the settings are in Properties pane > Filter Controls tab.
-
Hi @Karthick_ , With List Box and Top Bottom N filter types, you can actually configure parameter bindings in the Properties pane > Filter Controls tab.
-
Hi @Karthick_ , You could change the Filter Type from List to List Box or Top Bottom N in the Properties panel for the dashboard filter. Exclude and Null checkboxes are displayed only when the List type is selected.
-
Hi @Benjamin Arnulf-Oracle @Jacques V.-Oracle , Could you please provide more technical details about the AI Assistant? I'm interested in understanding which LLM is used behind the scenes, where the model and indexes are stored, whether it will be possible to change the model in a future release, and if there are any…
-
Hi @User_KURX7 , When connecting to http://hostname:9502 you would like to be redirected to https://hostname:9503, is that correct? I don't think you can do it directly in OBIEE. You have to go through a HTTP server.
-
Hi @User_94SNU , Please make sure that: PODNAME in the above expression in exactly the name of an existing parameter in the workbook The same parameter is bound to filter, or used in an expression filter in the workbook ABCD is a valid value, or a reference to an existing column if you are in the data action editor
-
Hi @User_94SNU , I would use "URL Navigation" actions rather than "Analytics Link" actions and pass parameter values directly in the the URL as shown in this post (Enhanced Parameters Experience section) that I wrote a while ago. You can pass parameter values in the URL as follows: &p1n=PODNAME&p1v=${valuesForColumn:<data…
-
Hi @user8945294 , Is the server cache enabled? If you are on OAC/OAS, you can check it from the Console page > System Settings. The variables in the Advanced tab of the analysis editor are typically used to disable the cache for a given analysis, and are not required. If the cache is enable, then you have to check that…
-
Hi @user8945294 , I would use an Agent and define a proper schedule to do the job. In this way, the analysis will be executed only once, and the results delivered in the selected format to one or more recipients.
-
I'm pretty sure that the same is valid also for Publisher in OAS. The following pages provide information about supported data sources in OAS, but are less detailed regarding Publisher:
-
Hi @User_GKKQ6 , This page contains a list of supported databases in OAC: You can click on any list entry to see whether Publisher supports it or not.
-
Dashboard Filters visualisation is available in OAC and OAS when creating Data Visualization workbooks.
-
Hi @User_Q1Z83 , Are you talking about the filter bar at the top of a workbook? If so, you can't add spacing between filters. As an alternative you can use dashboard filters visualisations instead, and add spacing with spacer visualisations. Otherwise, it would be great if you can share a screenshot of your page,…
-
Hi @Rajakumar Burra , I would create a parameter and initialize it with the date of the upcoming milestone using a logical SQL query: select MIN(Date) from <Dataset/Subject area> where Date >= CURRENT_DATE and Milestones IS NOT NULL Then you can add an expression filter to your table (or to your canvas): Date =…
-
Hi @Vismay Barot , You don't have admin privileges on the datasets. That's why all options are greyed out in the Blend Data dialog, and the Access tab is not displayed in the Inspect dialog for the dataset.
-
Hi @User_OEVVZ , When you cast as char (without specify a length) the tool automatically adds a few blank spaces at the right of the string to fill all the available size. Values in choice list are probably trimmed automatically. You could use the TRIM function to get rid of those spaces: TRIM(BOTH ' ' FROM cast("Subject…