Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
Comments
-
deniska wrote:None of these two added to the end of master.css work As said: there is no black magic, CSS follows some rules, therefore you can analyse what happen and based on that implement the proper solution. Caching is a quite annoying thing with CSS: make sure your CSS isn't in cache server side and client side. Open…
-
Use your browser developer extension to analyse the styles applied to the text and where it comes from. For example in Chrome: For example this piece has some CSS rules which are strikeout, because they aren't applied as somewhere else they are overridden. In this case if I scroll up a bit I see which rule did the override…
-
This comes from OAC 105.3.0 : If those 2 classes are there in OAC and were there in 12.2.1.0 and .2.0 and .3.0 they are there as well in .4.0. Therefore they can be used. The idea is to not touch master.css which is quite big but simply use custom.css to override things from master.css, because you generally only need to…
-
So you will have to debug things step by step ... You already have the logo coming, so that part seem to be fine, now move on to the CSS part and start looking if it makes it till into your page and if the cascading isn't making your code ignored at some point etc. As a side aspect: any particular reason to pick the EAR…
-
I'm not following ... So you want a custom style to hide the logo and product name on the top of the page?
-
Did you check if you aren't having any cache or similar issues? It definitely worked for me and keeps working even in 12.2.1.4 Make sure the CSS is properly read and check with your browser developer extension if the styles are there and disabled (because overridden by something else). What exact version of OBIEE are you…
-
The tool doesn't do it out of the box. 11g is a very generic way to qualify the version, if you look online (both google and here in the forum) you will find pieces of code (JS / CSS) turning the vertical listing of sections into an horizontal one. You want a 3x2, so you will have to add that logic in the code. It's anyway…
-
OBIEE 12c is by default an enterprise install. It isn't like in 11g when you had "simple installation" and "enterprise installation". Even not using SSO you are supposed to use an enterprise LDAP or AD, the embedded LDAP in weblogic is suggested only up to a limited number of users and mainly in a sandbox / dev setup.…
-
Why did you end up doing 2 different weblogic accounts in the first place? I have the impression you took the most complicated to install OBIEE instead of doing the "normal" one which is mainly few settings and some next, next, next clicks (or silent install directly). Mainly if you are new, stick with the normal way of…
-
Sure, CASE WHEN <condition> THEN your-column-A WHEN <condition> THEN your-column-B END. Just use a presentation variable you set in your dashboard prompt for the condition.
-
3698127 wrote:... Can you please let me which parameters can set performance. It isn't as simple as that: there isn't a single thing which make performance better or it would be turned ON by default. You can look at https://docs.oracle.com/middleware/1213/wls/SECMG/ldap_atn.htm#SECMG185 and also in the Tuning guide I…
-
Like always you would need to try to identify which part is taking time. There are some caching settings in the AD config you did in weblogic, you can look into that to try to have some info cached. You can also try to define if you are working on a too high level of your AD and therefore queries take time and you maybe…
-
http://adminobiee-vip.saude.gov:7001/console : the local LDAP embedded in Weblogic http://adminobiee-vip.saude.gov:7001/em : Enterprise Manager where you have mappings between local users/groups and application roles
-
Marcelo-Tarquinio-Oracle wrote:There is a possibility to login tools without SSO, correct? Of course, by default there is no SSO in OBIEE. Or, to be precise, there is an internal lightweight SSO which is there only to have a shared session between /analytics and /va. If you can't login start from the beginning: are all the…
-
Data Visualization projects can't be exported in Excel, at least not the visualization as CSV is the format. So just that make your "wish" impossible. You need to keep in mind the 2 tools are quite different and if DV can use Answer as source for data, Answer doesn't do much with DV projects. Even showing a DV project into…
-
Boček Petr wrote:my account is set up in EM the same way and I can't run the commands How? Where the account come from? (EM isn't a LDAP) What privileges / policies does your account have?
-
How can the new measure you created be a row? How can that be a measure if few post ago you said "5.111", "5.112", "WAC" are the measures? That's impossible! The measure it's either your rows or your columns, it can't be both at the same time, you better figure out exactly what is what.
-
You can't use the automated totals/subtotals options of the pivot, because they would be on everything or nothing. Depending on what your "5.111", "5.112" and "WAC" are (measures, values of a dimension attribute etc.) you will need to add an element there with your calculation. If it's measures add a new one with the…
-
You covered data level security, but don't forget the whole front-end: privileges + catalog permissions. It's worth to setup everything as "clean" and restricted as possible from the beginning so that whatever happen later (like now a new part added in OBIEE or anything else) is covered by default with security already in…
-
You also have the privileges in the front-end. As security is in multiple places and require to be configures everywhere to be effective you maybe want to define a proper security model and strategy (which was supposed to already be implemented even for a single "project" ).…