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

Screens

Former Member
0 Likes
438

Hello friends,

How to <b>deactivate</b> radio buttons on the screen?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
415

I guess you mean that you want to make the radiobuttons display-only.

See for details.

Hope this helps.

Sudha

2 REPLIES 2
Read only

Former Member
0 Likes
416

I guess you mean that you want to make the radiobuttons display-only.

See for details.

Hope this helps.

Sudha

Read only

uwe_schieferstein
Active Contributor
0 Likes
415

Hello Sara

You have to modify the SCREEN table.

Define a PBO module like MODIFY_SCREEN_0100.

LOOP AT SCREEN.

IF ( screen-name = <name of radiobutton> ).

screen-input = 0.

MODIFY screen.

ENDIF.

ENDLOOP.

Regards

Uwe