‎2009 Jun 08 6:47 PM
I have developed a custom screen but having following issues:
1. I have an input field. How can I make it to accept multiple values?
(like: SELECT-OPTIONS: p_equnr FOR qmih-equnr NO INTERVALS.)
2. have 2 radio button. how can I make one default on??
(like PARAMETERS: p_yes RADIOBUTTON GROUP grp1 DEFAULT 'X'.)
Thanks
AP
‎2009 Jun 08 9:17 PM
Hi,
What I understand is you have created a classical dynpro and want to incorporate a selection screen in this dynpro. Follow these steps :
1. Declare a selection screen in the global include of the program.
selection screen begin of screen 9000.
SELECT-OPTIONS: p_equnr FOR qmih-equnr NO INTERVALS.
selection screen end of screen 9000.
2. Call the selection screen in the PBO module.
PROCESS BEFORE OUTPUT.
module status.
module call_sel_screen.
The code for module.
module call_sel_screen on output.
call selection screen 9000.
endmodule.
Now you will get the selection screen in your dynpro.
regards,
Advait
‎2009 Jun 08 6:51 PM
go to layout select two radio buttons and right click and assign group ..
automatically default is set to first..
Prabhu
‎2009 Jun 08 8:10 PM
‎2009 Jun 08 9:10 PM
‎2009 Jun 08 9:17 PM
Hi,
What I understand is you have created a classical dynpro and want to incorporate a selection screen in this dynpro. Follow these steps :
1. Declare a selection screen in the global include of the program.
selection screen begin of screen 9000.
SELECT-OPTIONS: p_equnr FOR qmih-equnr NO INTERVALS.
selection screen end of screen 9000.
2. Call the selection screen in the PBO module.
PROCESS BEFORE OUTPUT.
module status.
module call_sel_screen.
The code for module.
module call_sel_screen on output.
call selection screen 9000.
endmodule.
Now you will get the selection screen in your dynpro.
regards,
Advait