Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
Comments
-
SampleApp has examples for that (you can also just refresh analysis in a page and things like that). The above JS will not always work as the URL isn't always valid: OBIEE does a lot based on it's own session, so if you want to be sure to reload the right page you better first get the URL to use from "Create bookmark link"…
-
For your second point I still have that in 12c (12.2.1.2.0) : I do not remember a setting for that honestly. Wasn't it because you were sending dashboards / dashboards pages instead of an analysis?
-
As far as I know Weblogic doesn't provide that. It's an application server, a good one, but not really a proxy or a load balancer. So it's something you definitely need to manage outside.
-
Hi Chris, To be allowed to send the entire dashboard (or a dashboard page) via email with an agent you must first be allowed to export the entire dashboard / dashboard page. Check in the Administration > Manage Privileges page to see if you have the permission for that (or actually it's more the user the agent use who…
-
That's what a load balancer is used for. It isn't OBIEE business to do that job, you wanted 2 nodes so it's you that must provide requests to the 2 nodes and that's done by a load balancer. As alternative a proxy can also (often at least) manage that case, for example nginx can easily proxy queries to both nodes.
-
I guess it's a standard thing with EBS sources that you need to set a context first. Can't remember the details, something about the security and/or profile of the user requesting the data. That thing must be managed in OBIEE as well. Read this: Calling Oracle Stored Procedure from OBIEE 11g PS: if you post all the details…
-
1578785 wrote:No, Same issue at SQL Developer... Well, if the view doesn't return you any data in SQL Developer you can't expect OBIEE to show you something (the tool can do a lot, but create data which doesn't exist ... not really luckily). So you maybe want to go back in your load process to see if the sources the view…
-
Hi, Congrats in migrating your content, hopefully the login is just a "detail" Can you check in EM if your weblogic user is still member of any OBIEE application roles? The migration also import that part of the security (when run with default settings), so you maybe just got your weblogic account out of the required…
-
If I'm not wrong we can say "Standard" is like Essbase + Data visualization (similar to Data Visualization Desktop in term of functionalities), while "Enterprise" is a full OBIEE. You will have full access to the "server" via SSH to configure or change what ever you want. So OAC is a real cloud hosted OBIEE with all the…
-
As long as you open the right ports of course it does ... It's a database in the end ... But you maybe want to first look at OAC? OBIEE on the cloud in the end ...
-
I maybe missed a bit reading ... Of course if in the prompt you define to set a variable it works just like a dashboard prompt as Christian said. If you don't define a variable there isn't a syntax to reference the values ( that's what my 1st answer was about).
-
So you already have your answer ...
-
Going back to the original question of "where does the boolean come from" : I would say the boolean is the result of your EVALUATE. EVALUATE doesn't have a type and OBIEE has no way to know it's a date. There is some flexibility with types and that's why your = or IN works I guess, but to use > or < you need to cast the…
-
Hi Robert, Don't think it's possible (without setting a variable). The embedded prompt works directly on the same columns (replacing the hardcoded filter or the "is prompt"), but isn't defined as variable itself (automatically). You have the "filter view" which will do that (but probably also show other things you would…
-
I knew there was something special So first of all what Christian just posted: why to make it complicated when you can have an easy solution Second option is to use OBIEE to build your dates, TO_DATE has an equivalent in OBIEE: TO_DATETIME OBIEE in IL: OBIEE - TO_DATETIME the secret function
-
Hi, The issue is that you expect the formula to be smart enough to understand at which level it is all the time and so identify the parent level accordingly. That's asking too much ... You can manage to "% of region in country", "% of country in continent" and "% of continent in total" but it will be separate things, not a…
-
Different question instead of an answer: why do you use EVALUATE to do a TO_DATE ? OBIEE can manage that kind of thing without having to use an EVALUATE and disturb the DB for that kind of job ...
-
https://en.wikipedia.org/wiki/KISS_principle It has been said few times: use a host-only connection (as main or 2nd network adapter). No need of any port mapping, no NAT, no nothing, no issues. Your VM will have a new IP (probably 192.168.56.101) and that's the IP you will use to connect.
-
Sorry but ... do you look for somebody to read through your 250K rows of log file and fix your problems for you? For that ask your colleagues by opening an SR and have fun with the full process. The idea is that you look at the log to identify why it doesn't start (which means that you try to start it and look for the…
-
3257772 wrote:Is there any native view in OBIEE like the one in the following links No, nothing native like that. You only option is to use an external library (like Google or any other kind of JS library).