2007 Dec 05 11:43 AM
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
2007 Dec 05 11:45 AM
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
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
2007 Dec 05 11:45 AM
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
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |