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

enabling the screen elements on click radio buttons in module pool program

Former Member
0 Likes
884

In module pool program the screen has three radio buttons.On selecting a radio button the other disabled screen elements should be enabled without any other user command .Just on clicking the radio button the other screen elements should be activated

Thanks in advance

1 ACCEPTED SOLUTION
Read only

andreas_mann3
Active Contributor
0 Likes
587

you must use a fcode for your radiobutton.

compare field RAIFP3-XNANL in tcode ABT1N

A.

In module pool program the screen has three radio buttons.On selecting a radio button the other disabled screen elements should be enabled without any other user command .Just on clicking the radio button the other screen elements should be activated

Thanks in advance

2 REPLIES 2
Read only

andreas_mann3
Active Contributor
0 Likes
588

you must use a fcode for your radiobutton.

compare field RAIFP3-XNANL in tcode ABT1N

A.

Read only

Former Member
0 Likes
587

While creating the screen,u give the function code for the radio button ...

In the PAI of that screen.

If sy-ucomm = 'Fcode of that radio bbutton'.

loop at screen.

if screen-name = 'xyz'.(give all the screen names which u want to activate)

screen-active = '1'.

modify screen.

endif.

endloop.

endif.

Cheers,

Ravi