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: 

Table Control - Urgent

Former Member
0 Kudos

Hi all,

I am having table control in my module pool screen. My requirement is to have first row of the table control to be in change mode, all the other rows should be in display mode. Is there any way to achieve this.

Suitable answers will be rewarded

Thanks and Regards,

Kasi S

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi,

make one module in screen in PBO

<b>MODULE disable OUTPUT.</b>

LOOP AT SCREEN.

IF mytab1-current_line = 1.

screen-input = 1.

ELSE.

screen-input = 0.

ENDIF.

MODIFY SCREEN.

ENDLOOP.

<b>ENDMODULE. " disable OUTPUT</b>

here mytab1 is my table control name

reward if useful

1 REPLY 1

Former Member
0 Kudos

hi,

make one module in screen in PBO

<b>MODULE disable OUTPUT.</b>

LOOP AT SCREEN.

IF mytab1-current_line = 1.

screen-input = 1.

ELSE.

screen-input = 0.

ENDIF.

MODIFY SCREEN.

ENDLOOP.

<b>ENDMODULE. " disable OUTPUT</b>

here mytab1 is my table control name

reward if useful