cancel
Showing results for 
Search instead for 
Did you mean: 

BI Reports page size

former_member211107
Participant
0 Kudos

Hi Experts,

When I click on a BI report it opens in a separate window. My requirement here is to open the window in the maximized mode. i.e it should be of the exact size as that of the users desktop. Adding the parameter u2018fullscreen=yesu2019 in the u201CWindow Featureu201D property is removing the IE header and the bottom task bar. Hence It is not fulfilling the requirement.

Regards,

KM

Accepted Solutions (1)

Accepted Solutions (1)

former_member193379
Active Contributor
0 Kudos

Hi Kaustubh

To open this into the exact size as that of the users desktop

Set the windows features property of an iView as below

menubar=yes,location=yes,toolbar=yes,scrollbars=yes,resizable=yes,top=0,left=0,width='screen.availWidth', height='screen.availHeight'

Please let me know if you still face any problem.

Thanks,

Hamendra

former_member211107
Participant
0 Kudos

Hi Hamendra,

I changed the Window feature to menubar=yes,location=yes,toolbar=yes,scrollbars=yes,resizable=yes,top=0,left=0,width='screen.availWidth', height='screen.availHeight

But I could not find the window taking the size of my system screen. Infact it is of the same size as it was when the property was changed to

toolbar=no,resizable=yes,width='screen.width*0.96'px,height='screen.height*0.85'px,top=0,left=0

as mentioned in the doc you suggested in your first reply.

Regards,

KM

former_member193379
Active Contributor
0 Kudos

KM,

I have faced this problem and did the same thing which I suggested to you. I shall check it again will update you.

Thanks,

Hamendra

former_member211107
Participant
0 Kudos

Hamendra,

Your solution worked. Actually the initial BI screen opens with a different size. But once I execute the report, the window takes the screen size automatically.

Thanks again.

BR,

Kaustubh

Answers (1)

Answers (1)

MaheshChandra
Active Contributor
0 Kudos

Hi,

Check this document for opening iview in new window (options)

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50d2aeb9-5f92-2d10-d38d-ded09c943...

regards,

mahesh.

former_member211107
Participant
0 Kudos

Hi Mahesh,

Thanks for the document. It was helpfull though it did not server the complete purpose for me. By following the steps mentioned in the doc i was able to reproduce a separate iView window but of almost half the size of my desktop screen. I want a window to have exactly the size of my system screen.

Regards,

KM

MaheshChandra
Active Contributor
0 Kudos

> a window to have exactly the size of my system screen.

Try the width and height options in the property

width=screenwidth.width*0.96 -> height is treated in pixels and not as % so i think it will differ with screens (desktop or Laptop). place width='screen.availWidth',height='screen.availHeight' in properties and in standrad iview properties maintain width of external window and height of external window.

regards,

mahesh.