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: 

how to control column in table control (with wizard)

Former Member
0 Kudos

Hi,

For each line of my table control, its colmns have to be affected in different way.

for example, when my table control is displayed all columns are non editable.

but when i add a line i want columns to become editable only for this line.

i think there is a structure called cols.

thanks.

2 REPLIES 2

Former Member
0 Kudos

Hi,

Please check the below link.

http://scn.sap.com/thread/3363637

Regards,

Harsha

Former Member
0 Kudos

Hi,

Include another field in your table control structure with name FLAG. When a new line is inserted set this flag for that line as X

IN the PBO use this code inside a module

LOOP AT SCREEN.

IF workarea-flag = 'X'

SCREEN-INPUT = 1.

ENDLOOP.