2014 Oct 09 4:18 PM
Dear experts,
I've a table control, but the first time the dynpro is displayed, the table control is completely enable, all the rows and It doesn't make sense to have the button add row, also, if you press that button when all the table control is displayed then the table control open one line. Is there any possibility to disabled all the table control and only allow to add rows when the button "Add" is pressed?
Thanks a lot for your support.
Regards,
Rebeca
2014 Oct 09 5:42 PM
Hi Reol,
you can disable using the following code:
DATA: LS_DST_COL LIKE LINE OF TB-COLS.
LOOP AT TB-COLS INTO LS_DST_COL.
LS_DST_COL-SCREEN-INPUT = ''.
MODIFY TB-COLS FROM LS_DST_COL.
ENDLOOP.
Hi Reol,
you can disable using the following code:
DATA: LS_DST_COL LIKE LINE OF TB-COLS.
LOOP AT TB-COLS INTO LS_DST_COL.
LS_DST_COL-SCREEN-INPUT = ''.
MODIFY TB-COLS FROM LS_DST_COL.
ENDLOOP.
2014 Oct 09 5:42 PM
Hi Reol,
you can disable using the following code:
DATA: LS_DST_COL LIKE LINE OF TB-COLS.
LOOP AT TB-COLS INTO LS_DST_COL.
LS_DST_COL-SCREEN-INPUT = ''.
MODIFY TB-COLS FROM LS_DST_COL.
ENDLOOP.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |