cancel
Showing results for 
Search instead for 
Did you mean: 

PDF Scrollbar and Browser Scroll Bar

Former Member
0 Kudos

Hi,

My application open a pdf inside the browser and because the pdf has more than one page I have to scroll down or up.

My Issue is that, I have tow scroll bar one for PDF file and one for the Browser how i cancel or hide one of them.

BR,

Ali

Accepted Solutions (1)

Accepted Solutions (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

Is the interactiveForm UI element the only Web Dynpro UI element on the page? Make sure that the height of the interactiveForm UI element isn't too much for the page it is being displayed on. Otherwise this will create the double scrollbar you describe.

Former Member
0 Kudos

I have set the output format like this.

I have 2 different report format

IF wf_eta EQ 'X'.

loc_mstr_print_parms-linsz = 140.

loc_mstr_print_parms-linct = 40.

loc_mstr_print_parms-paart = 'Z_44_140'.

ELSE.

loc_mstr_print_parms-linsz = 200.

loc_mstr_print_parms-linct = 65.

loc_mstr_print_parms-paart = 'X_65_132'.

ENDIF.

what is the best height i should have?

Answers (1)

Answers (1)

Former Member
0 Kudos

thanks