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

module pool

Former Member
0 Likes
367

hi to all,

help me in this issue

how to keep editable columns in module pool table control

so that enduser can edit and save that column.

thanks in advance

kiran kumar

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
347

check this example it will help u.

RSDEMO_TABLE_CONTROL

Regards

3 REPLIES 3
Read only

Former Member
0 Likes
348

check this example it will help u.

RSDEMO_TABLE_CONTROL

Regards

Read only

Former Member
0 Likes
347

Whenever u define a columnn in the table control defaultly will be in editable mode.

But u can able to control it programtically....

loop at screen.

if screen-name = 'XYZ'.

screen-input = '1'.

endif.

modify screen.

endloop.

Read only

Former Member
0 Likes
347

Hi,

when table control is defined and fields are

assigned to table control set the field attributes

input output checked .so that by default it

will be input enabled.

if you want to handle dynamically use below logic

oop at screen.

if screen-name = 'P' or

screen-name = 'P2'

screen-input = 0.

modify screen.

endif.

endloop.

else.

loop at screen.

if screen-name = 'P3' or

screen-name = 'P4'

screen-input = 0.

modify screen.

endif.

endloop.

Regards

amole