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
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
Add a comment