‎2008 Jan 28 12:55 PM
i need to make a screen with 4 button, when i click on 1 button a selection screen is open like on mi31 .
PLS
‎2008 Jan 28 1:01 PM
Hi,
selection-screen:begin of screen 101.
parameters:name(10),
num(2) type n.
selection-screen end of screen 101.
case okcode.
when 'BUTTON1'.
call selection screen 101.
endcase.
if u want to call the same selection screen in mi31
case okcode.
when 'BUTTON1'.
call transaction 'MI31'.
endcase.
rgds,
bharat.
‎2008 Jan 28 12:59 PM
Check the demo program:
demo_call_selection_screen
Regards,
Ravi
‎2008 Jan 28 12:59 PM
u can use
AT USER COMMAND event
and then
case sy-ucomm.
when 'button 1'
call transaction mi31
plz reward if useful
thanx
‎2008 Jan 28 1:01 PM
Hi,
selection-screen:begin of screen 101.
parameters:name(10),
num(2) type n.
selection-screen end of screen 101.
case okcode.
when 'BUTTON1'.
call selection screen 101.
endcase.
if u want to call the same selection screen in mi31
case okcode.
when 'BUTTON1'.
call transaction 'MI31'.
endcase.
rgds,
bharat.
‎2008 Jan 28 1:02 PM
HI,
You need to create a screen for that. You can create one by using the object navigator(se80). The reason I am asking u to create by using the object navigator since it is very easy to create all kinds of objects from there. After that create a pf-status for that screen and using okcodes create different pop up screens as u want to use.
Regs,
Saurabh