Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Custom Screen

Former Member
0 Likes
565

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
534

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

4 REPLIES 4
Read only

Former Member
0 Likes
534

go to layout select two radio buttons and right click and assign group ..

automatically default is set to first..

Prabhu

Read only

0 Likes
534

I tried but does not work.

Thanks

Read only

0 Likes
534

I was able to resolve point 2. How to have do point 1?

thanks,

Read only

Former Member
0 Likes
535

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