Friday, July 8, 2011

OBIEE Developing a Parent-Child hierarchy

Just some strange behaviour I noticed OBIEE doesn’t like me developing a Parent-Child hierarchy in online modus in 11.1.1.5. It seems to miss some settings during a consistency check. When I did it in off-line modus the consistency check showed the errors.

Till Next Time

Tuesday, July 5, 2011

OBIEE Localization and NULL values

Just a tip: When setting up multi-language localisation, be sure that ALL your translated value have at least an space in them. The init block will fail if OBIEE encounters an NULL or an empty string.

Use NVL to catch it in the init block:

image

Till Next Time

OBIEE11 How to use the log

If you come from a 10g background you might be missing the NQquery.log. Don’t worry it’s still there. In 11.1.1.5 you will find it in <<OBIEE_HOME>>\instances\instance1\diagnostics\logs\OracleBIServerComponent\coreapplication_obis1

image

Along with the NQserver log.

Now how do I set the loglevel? Two options:

- Set it for everbody. (!A No No on production machine’s!)

In the Administration tool goto TOOLS > Options

image

- Set it for a individual user:

image

You can’t do it in the Administration tool, since the users are no longer there.

You have to do it in the report under investigation, go to the advanced tab of your report:

image

Scroll down to the prefix part:

image

and enter:

SET VARIABLE LOGLEVEL=2;

Don’t forget the semicolon!

Open the NQquery.log in a text editor (fi Notepad++)

image

Run your report and reload the log in the text editor:

image

Scroll down to the bottom to check your sql:

image

Till Next Time

Friday, July 1, 2011

OBIEE Adding an application role (GROUP)

Adding a group or a role online in OBIEE 11g has moved to the WEBLOGIC server.

Open the enterprise manager and open the business intelligence core application:

image

goto the security tab:

image

Press lock and Edit configuration:

image

Click on Configure and manage Application Roles

image

Click Create:

image

Fill in the details:

image

Add Members:

image

Press OK

image

Press Activate Changes:

image

Restart the BISERVER:

image

image

Check the OBIEE Identity manager:

image

Till Next Time

Thursday, June 30, 2011

OBIEE on IE9

First of all OBIEE11.5 is not certified for IE9. This means you might get strange behaviour when running a dashboard. Most problems can be solved by putting IE 9 in the compability mode:

image

Tools > Compality view

Till Next Time

Wednesday, June 22, 2011

OBIEE ODI Lineage setup

Copied from my ODI blog:
http://odiee101.blogspot.com/2011/06/obiee-odi-lineage-setup.html
When setting up a OBIEE ODI Lineage RPD you might get the following error:
ODI-50036: Error creating V_LINEAGE_HIERARCHY Table. Check the logs.
image
The error might fool you. It means that your (work) repository schema doesn’t have the right to create a view.
Ask your DBA to run the following script:
grant create view to snpm1;
grant create view to snpw1;
Till Next Time