‎2008 Jul 29 8:28 AM
hai,
can any one tell how to pop-up window in screen painter like, i have given some student number in runtime then another pop-up window should appear with deatails
please help me
‎2008 Jul 29 8:31 AM
‎2008 Jul 29 8:32 AM
hiii
you can create new sub screen and call it when you press some button like below and write your code in that sub screen
CASE sy-ucomm.
when 'DETAIL'
CALL SCREEN 200.
ENDCASE.
or you can create a small window by using following statement
WINDOW STARTING AT x1 y1 ENDING AT x2 y2.
regards
twinkal
‎2008 Jul 29 8:38 AM
Hi,
create a new screen and populate it with the data to be displayed in the pbo event...
In your main screen... use CALL SCREEN <NUM> to call the screen
regards
padma