Comments
-
The one you found is OBIA, nothing to do with OBISE. If you look for OBISE you find it on https://edelivery.oracle.com/
-
Hi, You link between Dim Agent and Fact Digital Order is AGNT_USER_ID = AGNT_USER_ID, so filtering the AGNT_USER_ID on both tables gives you the exact same result as filtering only the dimension table and then let the inner join make the implicit filter on the fact table. By filtering both tables OBIEE tries to generate a…
-
Anything else you are looking for? Because there isn't ... If you got the answer to your question you can maybe close the thread? It will help others with same/similar questions, right now it's still This question is Not Answered.
-
For example you have columns A, B and C in your subject area and your reports works fine. If tomorrow you add column D nothing change for your analysis, there is no impact at all adding a new column to the subject area.
-
Not really sure what you are talking about (https://www.youtube.com/watch?v=5CgBmj7Jz6Y&feature=youtu.be&t=18s ) Of course it will break existing analysis if you remove from the subject area elements used by the analysis. If you add new things on the other side the existing objects will not care at all. If you decide to…
-
Hi, It doesn't ask a password because there isn't one. So you can't set (and the tool isn't asking) something that doesn't exist. OBIEE 12c changed few things, the RPD password is one of the things. If you have the right privileges you can open it online, so it's not based on a RPD password anymore but on privileges the…
-
Hi, you probably missed this, have a look: https://youtu.be/5CgBmj7Jz6Y?t=18s
-
Hi, You seem a bit confused on what you are asking ... user10424929 wrote:I need to replicate the same structure of subject areacan I copy the dashboard or report in the country A to save into the other country You need to replicate the subject area and to do so you are going to copy dashboard and reports? This will not…
-
CSV/Tab delimited ignore the results views. It exports directly the dataset returned by the criteria you entered. So if you have 10 columns in your criteria and add 5 as excluded in a table view, if you export it in CSV you get the 10 columns. That's why you still get the header, even if empty.
-
For pro/dev laptop yes (forget for consumer laptops, they still stop mainly at 8Gb). This remind me I was lurking just yesterday at the Lenovo P50 with a Xeon CPU, 64Gb RAM and 2Tb raid0 SSD (never enough!)
-
Well, till some years ago USB2 wasn't a problem, nowadays you can feel it a bit more and USB3 helps on that. But most of us still hit RAM limits, so the disk doesn't matter a lot (as soon as you swap you are lost, even on SSD )
-
Of course if you can have a SSD is nicer, but VMs doesn't require a SSD, your issues will more be RAM/CPU than the disk (as long as you are not using a USB2 drive). So not mandatory, as Thomas said he is perfectly living without for his VMs
-
Good you found it, so just in case somebody else look for it it's in the properties of the chart view when customizing the axis labels.
-
Minimum 16Gb of RAM if you don't want to die ... Disk space I guess the image needs a bit more of 60Gb (more when extracting as there is the OVA etc.) Of course, being a server app, the more the better (for RAM, CPU etc.)
-
Just add/remove 180 to the orientation, if it is 90 set -90 or if it's -90 set 90. So you read bottom-up instead of top-down...
-
which version of Firefox? which other browser (and version) you tested? Because it seems to be something related to the browser as the chart is there, goes away and come back when you refresh...
-
Would be helpful if you provide basic information like which version of OBIEE, browser you used and which other you tested.
-
Robert already said it, also maybe a screenshot will help to clearly see what you see when and where
-
Use CURRENT_DATE and all the existing OBIEE functions on dates to generate the required filter based on your data (depends how you need the filter to look like, if "Feb 2017" or "201702" or 2017-02-28 as a date etc.). A filter in an analysis is not just a static value, you can add functions etc.
-
Welcome to the world of IT .... Integer division, that's what you are seeing, so 0 is the right result. You must force the division to use a double type doing a cast of at least one of the element of the division. (OBIEE - Integer Datatype [Gerardnico] ) You can also use a pivot view and duplicating the column in the view…