cancel
Showing results for 
Search instead for 
Did you mean: 

Default Logo in WEBI Report

former_member546611
Participant
0 Kudos

Hi,

We have a requirement to create a WEBI template.

Font, color size,background color all can be handled via CSS.

But can we also add logo on the report header to the reports via CSS? or we will have to create a dummy report with header in it and always use this as base report to start my development.

Help much Appreciated!

Regards,

Hetal

Accepted Solutions (1)

Accepted Solutions (1)

sven_oehme
Participant

Hi,

you can. Put this (for example) in the CSS Header Area

REPORT > PAGE_HEADER {
background-image: boimg://<<LOGO.png>>; 
background-v-align: top; /* Possible values: top, center, bottom */ 
background-h-align: left; /* Possible values: left, center, right */ 
background-size: 50% 50%; 
background-attachment: fixed; 
background-repeat: no-repeat; 
background-position: right top;

You are able to address the logo in the boimg-Folder on BO Server.

Greets

Sven

former_member546611
Participant
0 Kudos

Hello Sven,

Thanks for your reply.

You are able to address the logo in the boimg-Folder on BO Server. - By this you mean that i need to create a folder on BO server named as boimg and save the logo in it?

Thanks,

Hetal

sven_oehme
Participant
0 Kudos

Hello Hetal,

No. You are not forced to create a folder. "boimg" on standard is located on folder:

<<BO-Installation>>/ SAP BusinessObjects/ SAP BusinessObjects XI 4.0/ images

The CSS Standard allready use a lot of the images there.

If you want to address a different folder navigate to CMC/Servers/WebI Report Server/ Properties and parameter "images directory".

Greetz

Sven

former_member546611
Participant

Thank you so much!!! I tried and work fine.

Answers (1)

Answers (1)

arijit_das
Active Contributor
0 Kudos
... or we will have to create a dummy report with header in it and always use this as base report to start my development.

Yes.

sven_oehme
Participant
0 Kudos

Thats one possibilty, but remember that is not a dynamic solution. If you use a strandard logo and some day it will change, you will be forced to change every single report. If you use the CSS you just have to change the logo in it and all reports will change immediately.

Greetz Sven