2014 May 28 11:09 AM
Dear All,
I make Table control using wizard for internal table which I declare in TOP include.
I want to move screen input table control to internal table.
For that I need screen work area.
How I find it? or How I move screen input table control to internal table?
Regards,
Pooja
2014 May 29 6:05 AM
Hello Pooja.
In your module TC_MODIFY ON CHAIN-REQUEST, you need to add the logic to append the data into internal table.
MODULE TC_MODIFY INPUT.
MODIFY itab INDEX TC-CURRENT_LINE.
if sy-subrc <> 0.
APPEND itab.
endif.
ENDMODULE. "TC_MODIFY INPUT
Regards.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |