Welcome to the Oracle Analytics Community

Avatar
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

Gianni Ceresa Mod

Comments

  • Is there something different between the 2 database objects (and connection pools) in the 2 versions? A different database type? A different connection pool? A different way to identify the database in the connection pool?
  • FTisiot wrote:if after executingjava - version you get a java version that is compatible with OBIEE installation you should be fine if not ... installing the right java on the Oracle DB Developer VM (must be a OEL6 or 7) is done in 5 minutes (1 to find the right file, 3.5 to download and 0.5 for the unique command…
  • Just a detail (not directly related to your current error but to the next ones you will probably have): what OS is yours? It smells like Windows 7. I guess you checked the certification matrix and choose a OS based on that, just to be sure to have all the chances to succeed and not have errors because of an unsupported OS,…
  • In the physical layer you can add an opaque view instead of a database object. But it's generally a last option thing, as you are just going to hide logic there, so model things correctly or try to push the code to the database directly if possible. For the "how" it's just a right-click to add a new object. If you provide…
  • 3371002 wrote:Sorry all, I should have mentioned that SELECT YEAR(CURRENT_DATE) FROM "your subject area" worked well for me. So you maybe have a button around to close the thread (or mark as correct or something like that)? For now it's still This question is Not Answered.
  • But you don't have item_id in the parent report, or if you have it it's excluded (which is a bad practice). Your model is a bit strange (not complete or wrong): as there is a link connecting these datasets, that link can be modelled in the RPD so you can really use the OBIEE functionality of navigation and drill to analyze…
  • Hi, 3018071 wrote:All i need is, i need to pass all the item numbers from parent report to child report. This is actually the wrong question and wrong approach... In your summarized table the item numbers doesn't exist, it's an aggregated view, so you do not pass the item numbers to the child report but you pass the…
  • Hi, Enjoy that dashboard, sounds like fun ... Because of the lack of question marks I assume you aren't asking people on here to make it for you, right? https://www.youtube.com/watch?v=5CgBmj7Jz6Y&t=19s
  • Did you check where the space come from? If you inspect the page with your browser's Developer tools extension (the name maybe is different but they all have it now), what do you find where you have the spaces? If you have elements there, even if empty (like a <div> or things like that) of course they "take some place" in…
  • Hi, is it me or your whole thread focus on the wrong bit of your situation? You posted lot of details about your columns etc. but still say your variable return 0 and so the column isn't "None"."None" but the value of the variable ... 0. So where does your variable come from? How did you setup the prompt defining the…
  • I'm not going to say it doesn't work as there is for sure a way to make it work using EVALUATE, but if going down that way why not create a Excel file containing a macro which generate the current fiscal year and then generate a CSV file which is read by a ODI (or any other ETL tool) and loaded in a database. Then the…
  • Can your client resolve "dev" correctly? And why don't you just use the first one? Entering the host and port? Are you trying to connect to a cluster with multiple hosts?
  • You have selected "Connect Directly To The Active Scheduler (Use 'localhost' for local machine)" but your hostname/IP and port are empty. It works better if you enter something there ... PS: you can write into those drop down lists, the lists will be useful to reconnect to other instances without rewriting
  • https://www.youtube.com/watch?v=5CgBmj7Jz6Y&t=19s (Tips for Getting Answers to Your Oracle Community Forum Questions)
  • For my tests I often need a "new OBIEE", so instead of installing on my host or on VM I do it in docker as it takes less resources than a VM. That's why I didn't have to uninstall and all I did was calling the RCU doing a "dropRepository" as I didn't want to use a new RCU prefix. But then it's like a VM, so I just deleted…
  • Hi, Not sure you are the same person or just 2 different having the same exact question and code Actually the answer is correct, it's HTML! You can keep it as a GET request, that's what the system expect, and if you do it in your browser what do you observe? You first see a spinning "login" image and then, depending on how…
  • Hi, I had something similar again once (still in my docker container), but as I was in a hurry I didn't spend time on it: killed the container, removed it, cleaned up the RCU schemas and started a new one You can check the logs of bi_server1 in user_projects/domains/bi/servers/bi_server1/logs/ There you must find a lot…
  • Just a detail: keep in mind a link is supposed to start by " http:// ", so if your values don't have it (all of them) add it to the format of the column. The default format "HyperText link (prepend http://)" does it for you, but in this case if you have some with and some without it will not work as http://http:// will not…
  • If you were using the exact same as you wrote here the brackets were the problem, the bracket must be closed before the THEN as it's part of the condition [ WHEN <condition> THEN <value> ]. But good you could do it. Of course keep in mind that nested case-when (or even just a case-when) will have an impact on the query…
  • What Thomas posted is the cleanest and right way to do it as it also cover the special fiscal calendars (often fiscal <> normal calendar). Apparently your dimension stop at the month level, so it's a bit more difficult. You can try something like: SELECT YEAR(CURRENT_DATE) FROM "your subject area"