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

Selection Screen

Former Member
0 Likes
412

Hi Friends,

I want to create a selection screen with two radio buttons and on selecting a particular radio button, a screen within the main selection screen should display with the corresponding values.

Kindly guide me to do this.

TIA.

Regards,

Mark K

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
392

Hi,

in At selection-screen on radiobutton group g1.

Write the Logic.

PARAMETERS :p_rad1 RADIOBUTTON GROUP rad1, default 'X' user-command rad1

p_rad2 RADIOBUTTON GROUP rad1 .

AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD1.

if p_rad1 = 'X".

CALL SCREEN 1100.

Elseif p_rad2 = 'X'.

Call Screen 1200.

Endif.

Regards,

Sujit

3 REPLIES 3
Read only

Former Member
0 Likes
393

Hi,

in At selection-screen on radiobutton group g1.

Write the Logic.

PARAMETERS :p_rad1 RADIOBUTTON GROUP rad1, default 'X' user-command rad1

p_rad2 RADIOBUTTON GROUP rad1 .

AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD1.

if p_rad1 = 'X".

CALL SCREEN 1100.

Elseif p_rad2 = 'X'.

Call Screen 1200.

Endif.

Regards,

Sujit

Read only

Former Member
0 Likes
392

use event AT SELECTION-SCREEN OUTPUT.

write your code in it

if radiobutton = 'X'.

loop on screen and assign values to the fields as you wish

they will get displayed on screen

endif.

give points if it works.

regards,

rajyalaxmi

Read only

Former Member
0 Likes
392

hi,

Create your selection screen with the two radiobuttons and

a frame in invisible mode on the same screen.

On clicking on the radio button write the code to show the frme and Assign the value in

AT SELECTION-SCREEN OUTPUT event.

Hope this will help.

Sumit Agarwal