Application Development 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: 

Inactivate Table Control

Former Member
0 Kudos

Hello,

I have a module pool with a table control and one button.

I have this table control ( TC02 )on a internal table ITAB.

ITAB :

LINEA AS CHAR,

SOCIEDAD AS CHAR.

In the PBO, I would like to inactive the table control and the button.

I can inactive the button:

LOOP at screen

if screen-name EQ BUTTON.

screen-input = 1.

endif

endloop.

But if I write for the table control, it doesn't inactive.

LOOP at screen

if screen-name EQ TC02-LINEA.

screen-input = 1.

endif

endloop.

What happens?

2 REPLIES 2

Former Member
0 Kudos

Hi ,

use the screen-active = 0.

instead screen-input = 1.

Please reward if useful.

Former Member
0 Kudos

I change it and the result is null....

I dont know what happens. Is correct the form to do it?