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
430

Hello friends,

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
407

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

See for details.

Hope this helps.

Sudha

Hello friends,

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

2 REPLIES 2
Read only

Former Member
0 Likes
408

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
407

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