Wednesday, February 27, 2008
More Groups Please
I have had lots of new members sign up to my OBIEE group on linked in, most of which have some relationship with the product.
I am rejecting anyone who is an agency recruiter or just a professional networker.
The next step will be to develop the OBI portal which will provide resources for OBIEE professionals. This is planned for mid March.
If you haven't joined us please go to http://www.linkedin.com/e/gis/43109/526A0219C124
The main reason for networking is so that we can share useful information. It is amazing how many projects I have worked on where I needed staff and they come via an agency and yet i could have employeed people directly, for more money!! Use your network. If you are looking for OBIEE work just get in touch. I wont spread your details around, but I may know of a project that you may be suitable for. Do not leave your current job to go contracting without giving me a call. I can help. You know who you are!!
On the subject of groups, I think I should join the following groups
IOUG (International Oracle User Group)
OAUG (Oracle Applications User Group)
Oracle BIWA SIG
Oracle BI Network
If you have the link please send it on.
I am rejecting anyone who is an agency recruiter or just a professional networker.
The next step will be to develop the OBI portal which will provide resources for OBIEE professionals. This is planned for mid March.
If you haven't joined us please go to http://www.linkedin.com/e/gis/43109/526A0219C124
The main reason for networking is so that we can share useful information. It is amazing how many projects I have worked on where I needed staff and they come via an agency and yet i could have employeed people directly, for more money!! Use your network. If you are looking for OBIEE work just get in touch. I wont spread your details around, but I may know of a project that you may be suitable for. Do not leave your current job to go contracting without giving me a call. I can help. You know who you are!!
On the subject of groups, I think I should join the following groups
IOUG (International Oracle User Group)
OAUG (Oracle Applications User Group)
Oracle BIWA SIG
Oracle BI Network
If you have the link please send it on.
Tuesday, February 19, 2008
Need a loopback Adapter
This took me ages to find
If you need to install Oracle database on a Vista Machine then this may help.
1) start device manager
2) right-click top node
3) add legacy hardware
4) select Netwrok Adaptor
5) select Microsoft6) select Loopback adapter
This was from an original post at
http://davedotnet.blogspot.com/2006/06/installing-loopback-adaptor-in-windows.html
Also useful was
http://blogs.msdn.com/astebner/archive/2004/07/06/174576.aspx
If you need to install Oracle database on a Vista Machine then this may help.
1) start device manager
2) right-click top node
3) add legacy hardware
4) select Netwrok Adaptor
5) select Microsoft6) select Loopback adapter
This was from an original post at
http://davedotnet.blogspot.com/2006/06/installing-loopback-adaptor-in-windows.html
Also useful was
http://blogs.msdn.com/astebner/archive/2004/07/06/174576.aspx
Friday, February 15, 2008
Execute
Probably already covered elsewhere, but I had this lying around from my book notes (Many Thanks to ed Higgins)
These are the executables you can find in the bin directory.
Nb. Siebel support recommends the following executables are not used without prior knowledge or consulting technical support first.
JobManager.exe
Previously known as Analytics Scheduler, nothing much has changed, the Job Manager is used to schedule iBots for Oracle delivers and provides an interface to check progress of batches and records details of failures, it can also be used to schedule scripted jobs including triggering workflows in integrated applications, writing data to the database and triggering statistics updates in the database.
Prior to using the Job Manager, the user needs to run SAJOBS.oracle.sql from C:\OracleBI\server\Schema, this creates the tables for the scheduler, alternative versions are provided for most major databases.
Next one must create an entry in TNSNAMES.ora for the Data Source Name, launch the Job Manager from the Programs menu or Administration and add the connection details in Scheduler Configuration, for non-Oracle databases use windows ODBC and create a DSN.
nQcmd.exe
This command line tool executes SQL script on the database and can be used for Cache Seeding operations, it is not recommended that it be used directly as these jobs can be run through Job Manager, it is also recommended by Oracle that remote access tools such as TELNET or remote desktop are disabled on the server running presentation services as direct access to nQcmd.exe constitutes a security risk.
nQLogviewer.exe
nQLogViewer.exe is a utility and part of the analytics installation and resides in the 'Analytics install dir'/Bin directory. It's essentially a parsing tool that allows you to extract info from the NQQuery.log.
The particulars of the utility are:------------
Command: nQLogViewer -u -f -o
These are the executables you can find in the bin directory.
Nb. Siebel support recommends the following executables are not used without prior knowledge or consulting technical support first.
JobManager.exe
Previously known as Analytics Scheduler, nothing much has changed, the Job Manager is used to schedule iBots for Oracle delivers and provides an interface to check progress of batches and records details of failures, it can also be used to schedule scripted jobs including triggering workflows in integrated applications, writing data to the database and triggering statistics updates in the database.
Prior to using the Job Manager, the user needs to run SAJOBS.oracle.sql from C:\OracleBI\server\Schema, this creates the tables for the scheduler, alternative versions are provided for most major databases.
Next one must create an entry in TNSNAMES.ora for the Data Source Name, launch the Job Manager from the Programs menu or Administration and add the connection details in Scheduler Configuration, for non-Oracle databases use windows ODBC and create a DSN.
nQcmd.exe
This command line tool executes SQL script on the database and can be used for Cache Seeding operations, it is not recommended that it be used directly as these jobs can be run through Job Manager, it is also recommended by Oracle that remote access tools such as TELNET or remote desktop are disabled on the server running presentation services as direct access to nQcmd.exe constitutes a security risk.
nQLogviewer.exe
nQLogViewer.exe is a utility and part of the analytics installation and resides in the 'Analytics install dir'/Bin directory. It's essentially a parsing tool that allows you to extract info from the NQQuery.log.
The particulars of the utility are:------------
Command: nQLogViewer -u
Wednesday, February 13, 2008
OC4J as a Service
Following the last post on stopping oc4j from automatic running, you may want to run oc4j as a service, so that is can be added to a batch file that starts all the analytics services.
So, to Run OC4J as a windows service
If you want to run oc4j as a windows service download the open source tool named JavaService.exe from http://javaservice.objectweb.org/ which can create Windows Services for Java Programs, adjust and execute the following command:
javaservice -install "Oracle BI: OC4J Service" "D:\jdk1.5.0_09\jre\bin\client\jvm.dll" -XX:MaxPermSize=128m -Xmx512m "-Djava.class.path=d:\OracleBI\oc4j_bi\j2ee\home\oc4j.jar" -start oracle.oc4j.loader.boot.BootStrap -description "Oracle BI Oc4J Service"
Now you can add to your 'net start' commands batch file.
Credit to Andreass in the Majendi team for this.
UPDATE: Venkat has also blogged on this subject, including some screen shots.
So, to Run OC4J as a windows service
If you want to run oc4j as a windows service download the open source tool named JavaService.exe from http://javaservice.objectweb.org/ which can create Windows Services for Java Programs, adjust and execute the following command:
javaservice -install "Oracle BI: OC4J Service" "D:\jdk1.5.0_09\jre\bin\client\jvm.dll" -XX:MaxPermSize=128m -Xmx512m "-Djava.class.path=d:\OracleBI\oc4j_bi\j2ee\home\oc4j.jar" -start oracle.oc4j.loader.boot.BootStrap -description "Oracle BI Oc4J Service"
Now you can add to your 'net start' commands batch file.
Credit to Andreass in the Majendi team for this.
UPDATE: Venkat has also blogged on this subject, including some screen shots.
Friday, February 08, 2008
Auto running OC4J
I kept meaning to do a brief note on the issue of OC4J automatcally running when you start windows. I'm sure you all know how to stop it, but just on case check out
http://knowledge.ciber.nl/weblog/?p=84
http://knowledge.ciber.nl/weblog/?p=84
Thursday, February 07, 2008
And another thing
You wait ages for a blog to come along, then three turn up at once.
I just had to mention the WHOPPING great rpd that I had to investigate the other day.
It was 50 MB.
Supplied by Oracle as part of the 7.9 Applications install.
It's not that it takes ages to load and edit in the Admin tool, it's just a nightmare to figure out which bits belong to which Licence option. I need to write some UDML scripts to deal with the different packs. Maybe one of you lot already have some to send me :)
I just had to mention the WHOPPING great rpd that I had to investigate the other day.
It was 50 MB.
Supplied by Oracle as part of the 7.9 Applications install.
It's not that it takes ages to load and edit in the Admin tool, it's just a nightmare to figure out which bits belong to which Licence option. I need to write some UDML scripts to deal with the different packs. Maybe one of you lot already have some to send me :)
Is the future here already?
Have a look at the Oracle whitepaper on OBIEE and SOA. It's the future you can read about while getting on with maintaining your 7.7 Siebel reporting (Actuate) system.
http://www.oracle.com/technology/pub/articles/rittman-biee-soa.html?rssid=rss_otn_articles
Don't let people tell you otherwise - Oracle Business Intelligence is the future - what? including OWB? are you mad. You wait, when Larry gets back from his next sailing trip someone will have written some SAS like functions - or maybe just bought SAS!!!
So are Informatica getting ready to be bought out. The rumours have started and speculation is rife. Just imagine what will happen if someone else buys Informatica and oracle have to re-write all those ETL applcations. Come to think about it, that's not a bad idea. Maybe this time they will do better.
http://www.oracle.com/technology/pub/articles/rittman-biee-soa.html?rssid=rss_otn_articles
Don't let people tell you otherwise - Oracle Business Intelligence is the future - what? including OWB? are you mad. You wait, when Larry gets back from his next sailing trip someone will have written some SAS like functions - or maybe just bought SAS!!!
So are Informatica getting ready to be bought out. The rumours have started and speculation is rife. Just imagine what will happen if someone else buys Informatica and oracle have to re-write all those ETL applcations. Come to think about it, that's not a bad idea. Maybe this time they will do better.
Aaaargh
Thanks Bill. Thanks for the new windows system. not.
I bought a new laptop last week, it's a Vostro 1700 from Dell. Very good spec, loads of memory, fast cpu etc, but also including Vista.
I went to install my copy of OBIEE and it refused, so it's not backwards compatable. So I tried the latest version 10.1.3.3.2 (download biee_windows_x86_101332_disk1) and it installed fine, except it didn't recognise my IIS, so i only got the oc4j.
Opening up the paint dashboard all looked fine so I prepared some data for a demo to my latest client. I created the demo data in Excell and Access, modified the paint rpd to include the new data. The demo was in an auditorium full of managers! (gulp)
Off to the site I went on a train from Copenhagen (at 5am!!). The journey was three hours so I thought I would walk through the steps I was going to give in the presentation. Opening the dashboard was fine, then clicking on the Answers link I was asked to log in again. Loggin in again I was then presented with a screen saying that I was not logged in!!
Clicking on the Admin link gave the same issue. In fact almost every link required you to log in again.
With 20 minutes to go before the presentation I had re-installed the software twice, searched google, IT Toolbox and the forums, and pulled out most of my hair.
Finally I gave up, thinking that if I ran for it I could just get back to the train before they realised I was gone :)
Luckily I still had the install disks for 10.1.3.2 and I borrowed someones laptop with XP on. I Installed the system and fired up OBI EE with 30 seconds to spare.
The presentatin went ahead without any problems.
Phew!
PS
Why Bother?
My next rant will be about Networking, Client Credit, Being in business, and Project Managment. Watch this space.
I bought a new laptop last week, it's a Vostro 1700 from Dell. Very good spec, loads of memory, fast cpu etc, but also including Vista.
I went to install my copy of OBIEE and it refused, so it's not backwards compatable. So I tried the latest version 10.1.3.3.2 (download biee_windows_x86_101332_disk1) and it installed fine, except it didn't recognise my IIS, so i only got the oc4j.
Opening up the paint dashboard all looked fine so I prepared some data for a demo to my latest client. I created the demo data in Excell and Access, modified the paint rpd to include the new data. The demo was in an auditorium full of managers! (gulp)
Off to the site I went on a train from Copenhagen (at 5am!!). The journey was three hours so I thought I would walk through the steps I was going to give in the presentation. Opening the dashboard was fine, then clicking on the Answers link I was asked to log in again. Loggin in again I was then presented with a screen saying that I was not logged in!!
Clicking on the Admin link gave the same issue. In fact almost every link required you to log in again.
With 20 minutes to go before the presentation I had re-installed the software twice, searched google, IT Toolbox and the forums, and pulled out most of my hair.
Finally I gave up, thinking that if I ran for it I could just get back to the train before they realised I was gone :)
Luckily I still had the install disks for 10.1.3.2 and I borrowed someones laptop with XP on. I Installed the system and fired up OBI EE with 30 seconds to spare.
The presentatin went ahead without any problems.
Phew!
PS
Why Bother?
My next rant will be about Networking, Client Credit, Being in business, and Project Managment. Watch this space.
Monday, January 14, 2008
Happy New Year? ummm, we'll see.
A few random thoughts for OBIEE and life at the keyboard...
A few years ago we used to write javascript to refresh the screen, based upon an input value. In APEX we can put some code into the header " meta http-equiv="refresh" content="60"", so I thought why not put it in an OBIEE report. The issue is where? Has anyone had a go at this?
I saw this the other day from Ahmad Alkhmous
Restricting the Number of Rows returned in a request:-
Click on the filter icon on any column in answers
Click on Advanced-> Convert filter to SQL
Write "Rcount(1)< N" ... N is the number of rows you want to see
Whats this then?
http://www.oracle.com/technology/oramag/oracle/05-mar/o25xmlex.html
Not OBIEE but could help
Top 10 keyboard Shortcuts in Windows
CTRL N.................New window
CTRL Z.................Undo
CTRL Y.................Redo
ALT F4.................Close current application (if all are closed, will present shut down options)
WINDOWS D..............Show desktop (also WINDOWS M = minimise all)
CTRL A.................Select all
CTRL F.................Find
CTRL C.................Copy
CTRL V.................Paste
ALT TAB................Switch between windows
and a bonus one..
SHIFT F3...............(Word only) Toggle selected text between caps and lower case
A bit of fun..
I love this paper plane throwing game. Enjoy! http://flightsimx.archive.amnesia.com.au/
Want to keep the kids amused?
Word Searches
http://puzzlemaker.school.discovery.com/WordSearchSetupForm.html
If a vegetarian eats vegetables, what does a humanitarian eat?
Adrian
A few years ago we used to write javascript to refresh the screen, based upon an input value. In APEX we can put some code into the header " meta http-equiv="refresh" content="60"", so I thought why not put it in an OBIEE report. The issue is where? Has anyone had a go at this?
I saw this the other day from Ahmad Alkhmous
Restricting the Number of Rows returned in a request:-
Click on the filter icon on any column in answers
Click on Advanced-> Convert filter to SQL
Write "Rcount(1)< N" ... N is the number of rows you want to see
Whats this then?
http://www.oracle.com/technology/oramag/oracle/05-mar/o25xmlex.html
Not OBIEE but could help
Top 10 keyboard Shortcuts in Windows
CTRL N.................New window
CTRL Z.................Undo
CTRL Y.................Redo
ALT F4.................Close current application (if all are closed, will present shut down options)
WINDOWS D..............Show desktop (also WINDOWS M = minimise all)
CTRL A.................Select all
CTRL F.................Find
CTRL C.................Copy
CTRL V.................Paste
ALT TAB................Switch between windows
and a bonus one..
SHIFT F3...............(Word only) Toggle selected text between caps and lower case
A bit of fun..
I love this paper plane throwing game. Enjoy! http://flightsimx.archive.amnesia.com.au/
Want to keep the kids amused?
Word Searches
http://puzzlemaker.school.discovery.com/WordSearchSetupForm.html
If a vegetarian eats vegetables, what does a humanitarian eat?
Adrian
Thursday, December 20, 2007
"Living in America"
If that's you, and you know your rpd from armpit, then please get in touch. I may be able to put you in touch with some projects that need OBIEE consultants.
I recently commented that Finance departments can start considering how OBIEE can replace/ compliment their MS Access systems. In response to a question on this I replied with the following:
"A little background - I have been implementing MS Access systems for 10 years, and I think they are great. The speed to deliver, the power of the analysis, the very useful VBA make a great product for Finance departments. I came across OBIEE (in previous forms) 5 years ago and found that it solved the big problem of Access databases being restricted to a local team. Using them across the world was very difficult. We needed to report in Australia and USA using European data.
OBIEE can be very quick to develop in (if your IT and project team will let you) you can create reports based upon a standard definitions (i.e. measures created in the rpd), and you do not have to extract massive volumes out of one database to be able to combine with another - we had to put CRM data next to HR data, next to Finance data.
Any good product can be badly implemented, and IT departments can hold you back from doing the quick data analysis you need to do for your job, so using Access gives you freedom to develop what you want when you want - YOU are in control. Treat OBIEE in the same way. Get the IT dept to set up the infrastructure, YOU control the rpd and the reporting.
Best of all - you can put OBIEE on top of Access - best of both worlds."
"A little background - I have been implementing MS Access systems for 10 years, and I think they are great. The speed to deliver, the power of the analysis, the very useful VBA make a great product for Finance departments. I came across OBIEE (in previous forms) 5 years ago and found that it solved the big problem of Access databases being restricted to a local team. Using them across the world was very difficult. We needed to report in Australia and USA using European data.
OBIEE can be very quick to develop in (if your IT and project team will let you) you can create reports based upon a standard definitions (i.e. measures created in the rpd), and you do not have to extract massive volumes out of one database to be able to combine with another - we had to put CRM data next to HR data, next to Finance data.
Any good product can be badly implemented, and IT departments can hold you back from doing the quick data analysis you need to do for your job, so using Access gives you freedom to develop what you want when you want - YOU are in control. Treat OBIEE in the same way. Get the IT dept to set up the infrastructure, YOU control the rpd and the reporting.
Best of all - you can put OBIEE on top of Access - best of both worlds."
Wednesday, December 12, 2007
Quiet Christmas
I had a few emails, texts and calls today from people who are available for work. Good Siebel Analytics / OBIEE consultants who may be having an extended xmas holiday!
If you have a need for someone for short or long term please get in touch and I'll forward their details on.
You may have noticed me being busy on LinkedIn recently. I have managed to build a good network of OBIEE consultants, and even started a group specifically for Oracle Business Intelligence consultants. This should benefit us all when it comes to project requirements.
Go to http://www.linkedin.com/e/gis/43109/526A0219C124 and I'll add you in (I only add in OBI consultants and related workers).
I have also been busy on the Oracle OBIEE forum, reading the issues that people have. It annoys me when someone clearly hasn't read the manual or even tried to find the answer to something before posting a request.
Each day I always check out Venkats postings on his blog. He has a great job - he just gets to play with OBIEE all day and write about the new stuff.
Talking of new stuff, the new functionality in 10.1.3.3.xyz, which allows you to call Oracle functions will be a greta boost for the product. Up until now I have seriously wondered by you need a BLOB in an Analytics but now we get to put pictures from a database in you reports.
I was sceptical about the time series functions, particularly as they were causing some people problems, but I have now converted over completely and so far so good. Let me know what you think.
Have you noticed that when you use the functions editor you now get something more useful when you add the function - it actually now tells you what arguments it requires instead of <>. I tended to copy the contents of the edit box into TextPad but may start using the editor more now.
I notice there are more and more companies that are offering OBIEE and Siebel Analytics consultancy. Those of us that were using the product over 4 years ago are seeing others trying to muscle in. All I can say is How much do you really know?? There are so many stories at conference from clients that say their implementation failed due to the integrator not having the right skills. We ALL need to make sure the product is not undermined by consultants who frankly do not have a clue. If you are in a pitch to a client sell your real experience and don't let beginners run your project.
I am still building the OBIEE information website, if you would like to have a listing just let me know.
That's all for now Folks!
If you have a need for someone for short or long term please get in touch and I'll forward their details on.
You may have noticed me being busy on LinkedIn recently. I have managed to build a good network of OBIEE consultants, and even started a group specifically for Oracle Business Intelligence consultants. This should benefit us all when it comes to project requirements.
Go to http://www.linkedin.com/e/gis/43109/526A0219C124 and I'll add you in (I only add in OBI consultants and related workers).
I have also been busy on the Oracle OBIEE forum, reading the issues that people have. It annoys me when someone clearly hasn't read the manual or even tried to find the answer to something before posting a request.
Each day I always check out Venkats postings on his blog. He has a great job - he just gets to play with OBIEE all day and write about the new stuff.
Talking of new stuff, the new functionality in 10.1.3.3.xyz, which allows you to call Oracle functions will be a greta boost for the product. Up until now I have seriously wondered by you need a BLOB in an Analytics but now we get to put pictures from a database in you reports.
I was sceptical about the time series functions, particularly as they were causing some people problems, but I have now converted over completely and so far so good. Let me know what you think.
Have you noticed that when you use the functions editor you now get something more useful when you add the function - it actually now tells you what arguments it requires instead of <
I notice there are more and more companies that are offering OBIEE and Siebel Analytics consultancy. Those of us that were using the product over 4 years ago are seeing others trying to muscle in. All I can say is How much do you really know?? There are so many stories at conference from clients that say their implementation failed due to the integrator not having the right skills. We ALL need to make sure the product is not undermined by consultants who frankly do not have a clue. If you are in a pitch to a client sell your real experience and don't let beginners run your project.
I am still building the OBIEE information website, if you would like to have a listing just let me know.
That's all for now Folks!
Thursday, December 06, 2007
Trimming
One little 'feature' of OBIEE keeps popping up in my projects - Automatic Trimming.
If you have a field with data, or calculated field, that has a trailing space in then OBIEE can remove the space for you.
This can lead to some issues, particularly when drilling down.Lets say you have a report with :
DimA Top Level Fact 1.
ABC 123
and the true value of DimA is 'ABC ' - note the space
The value displayed in the report is ABC, clicking on the value will start the drill down, using a filter of 'WHERE DIMA = ABC'
Of course NO data is returned.
The solution is to either make sure none of the data has trailing spaces or add the TRIM function. TRIM ( BOTH ' ' FROM DIMA) will do the trick.
TO_CHAR
I noticed this first when using the TO_CHAR function.If you to_char a date into month name (usually using OBIEE Function MONTHNAME) then the answer you get back is always 9 characters, which means AUGUST has three trailing spaces.You therefore have to trim the answer.
If you have a field with data, or calculated field, that has a trailing space in then OBIEE can remove the space for you.
This can lead to some issues, particularly when drilling down.Lets say you have a report with :
DimA Top Level Fact 1.
ABC 123
and the true value of DimA is 'ABC ' - note the space
The value displayed in the report is ABC, clicking on the value will start the drill down, using a filter of 'WHERE DIMA = ABC'
Of course NO data is returned.
The solution is to either make sure none of the data has trailing spaces or add the TRIM function. TRIM ( BOTH ' ' FROM DIMA) will do the trick.
TO_CHAR
I noticed this first when using the TO_CHAR function.If you to_char a date into month name (usually using OBIEE Function MONTHNAME) then the answer you get back is always 9 characters, which means AUGUST has three trailing spaces.You therefore have to trim the answer.
Thursday, November 29, 2007
Hide
Airport lounge again.
Why do people think that business travel is glamorous?
ANYway, I'm bored enough to finally figure out how people are hiding their contacts in LinkedIn. There is a setting you can change in the profile, but I'll let you find out how.
The big question is why you would hide your contacts.
The whole point of LinkedIn is to NETWORK, make contact with people in your business area and share information, ideas, recruit, learn.
I suspect it the recruit thing that puts people off. I do know that recruitment agencies will use the system to their advantage, but surely it is to your advantage too - you get to find out about roles.
Anyway, feel free to browse through my contacts, and if you see someone you may need - a fellow OBIEE consultant maybe - then get in touch with them.
Why do people think that business travel is glamorous?
ANYway, I'm bored enough to finally figure out how people are hiding their contacts in LinkedIn. There is a setting you can change in the profile, but I'll let you find out how.
The big question is why you would hide your contacts.
The whole point of LinkedIn is to NETWORK, make contact with people in your business area and share information, ideas, recruit, learn.
I suspect it the recruit thing that puts people off. I do know that recruitment agencies will use the system to their advantage, but surely it is to your advantage too - you get to find out about roles.
Anyway, feel free to browse through my contacts, and if you see someone you may need - a fellow OBIEE consultant maybe - then get in touch with them.
Wednesday, November 28, 2007
Complete Blogger
Like all good bloggers I am finally able to sit in an airport lounge and write something about my day.
I'm off to a client in the North so am flying out of Southampton.
I may go to the pub tonight and may have a dinner with someone.
Whilst there, I will work on some issues with OBIEE 10.1.3.3.
There.
done it.
I am now a complete blogger !!!
I'm off to a client in the North so am flying out of Southampton.
I may go to the pub tonight and may have a dinner with someone.
Whilst there, I will work on some issues with OBIEE 10.1.3.3.
There.
done it.
I am now a complete blogger !!!
Monday, November 26, 2007
New LinkedIn Group
If you are using the Networking tool LinkedIn, I have created a group for Oracle Business Intellegence professionals. Look out for the group on my profile, and join in if you think it is appropriate for you.
I will connect anyone who is working in OBIEE, Siebel Analytics, Oracle Business Intelgence (such as OWB).
http://www.linkedin.com/e/gis/43109/526A0219C124
I will connect anyone who is working in OBIEE, Siebel Analytics, Oracle Business Intelgence (such as OWB).
http://www.linkedin.com/e/gis/43109/526A0219C124
Friday, November 23, 2007
OBI EE Consultants Needed
The OBIEE world is still going strong and demand is high. We need a couple more consultants - one experienced contractor for a project in Germany where we are the technical leaders, and one junior (on a decent salary).
If you are ready for a new project/consultancy then do get in touch.
If you are ready for a new project/consultancy then do get in touch.
Monday, November 19, 2007
Remembrance Day petition
http://petitions.pm.gov.uk/remembermonday/
A petition has been launched requesting a new public holiday falling on the Monday after Rembrance Sunday in November each year.
To be known as the National Remembrance Holiday, it's purpose is threefold:
- To emphasise the remembrance of those servicemen and women who have given, and continue to give, their lives for Britain.
- To remind people of the importance of protecting our Nation and what it stands for.
- To break that 3 month period between the August Public Holiday and Christmas when there are currently no long weekends, especially as the UK has fewer public holidays than most European Countries.
If you are in agreement, please sign up to the petition
- it only takes a few moments - and it would be great if you were minded to forward the link to other people as well.
Thank you for your time.
Wednesday, November 07, 2007
Using Catalog Manager
If you want to have a consistent Header or Footer on each page of your dashboards then you can add the default settings to your custom messages file and all NEW reports will have the same settings. You can edit these settings per page afterwards. However, if you have built loads of pages on various dashboards and the Business Analyst comes along and says, 'oh I forgot to say we need a confidentiallity clause at the bottom of each page' you smile through gritted teeth and are faced with a large task of opening each page and editing the print formatting. If you have lots of formats to make this can take some time. The alternative is to dig into the Catalog manager and edit the xml for each page directly. This takes half the time to go through each page. Open the Catalog Manager and navigate to the _portals folder.

Now select the properties for the page (make sure you don't pick the dashboard layout).

Edit the page xml.

The trick here is not to write your own xml!! Copy the xml from one you set up manually in the dashboard editor.


Now select the properties for the page (make sure you don't pick the dashboard layout).

Edit the page xml.

The trick here is not to write your own xml!! Copy the xml from one you set up manually in the dashboard editor.

Here I copied in a message about the system being restricted and a nice green message!
The tag added is saw:pageProps
notice saw:pageHeader show="false" / and saw:showFooter showondashboard="true" show="true"
simple really.
UI Messages
The most popular customisation for OBIEE is the colour scheme, which you will know is done by Skin/Schema.
This is great but you then come to change the wording and it is not done by skin/schema.
You can update the file uimessages.xml to change the links on the menu, so for example Dashboards could be replaced with 'Sailing' and the link can be changed (in the controlmessages.xml file), but this covers all skins being presented. On of the forum responses recently suggested that the javascript can be altered on a skin by skin basis but I can't find any reference to the messages being presented. I'll keep looking but if you know send a quick reply :)
The normal method for updating messages is to create an entry in your custom messages file, but htis requires you to know which message table the message relates to. This would be fine but this area is not fully documented (in the public domain at least:).
I'll experiment and let you know if I can find the relevent massage table setting to use. In the meantime this type of message customisation has to take place in the original files (which you hopfully have a backup of!)
This is great but you then come to change the wording and it is not done by skin/schema.
You can update the file uimessages.xml to change the links on the menu, so for example Dashboards could be replaced with 'Sailing' and the link can be changed (in the controlmessages.xml file), but this covers all skins being presented. On of the forum responses recently suggested that the javascript can be altered on a skin by skin basis but I can't find any reference to the messages being presented. I'll keep looking but if you know send a quick reply :)
The normal method for updating messages is to create an entry in your custom messages file, but htis requires you to know which message table the message relates to. This would be fine but this area is not fully documented (in the public domain at least:).
I'll experiment and let you know if I can find the relevent massage table setting to use. In the meantime this type of message customisation has to take place in the original files (which you hopfully have a backup of!)
Subscribe to:
Posts (Atom)
The Cowes
Cowes Racing