cancel
Showing results for 
Search instead for 
Did you mean: 

Resizing pop-up window in webdynpro abap

Former Member
0 Kudos

Hi,

I am a newbie to abap webdynpro.I would like to know how to resize

a pop-up window.

I have used the method 'SET_WINDOW_POSITION'

from interface 'IF_WD_WINDOW'

Below seen is my coding, but this is not working. Can anybody clarify!

L_FINAL_WINDOW->SET_WINDOW_POSITION(

LEFT = 200

TOP = 200

*position = ).

L_FINAL_WINDOW->SET_WINDOW_SIZE(

WIDTH = '3000px'

HEIGHT = '3000px' ).

Regards,

Sathish kumar

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

hello,

i am not sure about the position, as it is not working for me as well

but for size use percentage, it should work.......... (eg:- '50%')

Thanks & Best Regards,

Sampath A.

former_member188685
Active Contributor
0 Kudos

L_FINAL_WINDOW->SET_WINDOW_POSITION(

LEFT = 200

TOP = 200

).

L_FINAL_WINDOW->SET_WINDOW_SIZE(

WIDTH = '30em'

HEIGHT = '10em' ).

L_FINAL_WINDOW->open( ).

also you can use pixels.

don't use 3000px, use less.

L_FINAL_WINDOW->set_window_size( width = '300px' height = '' ).