Application Development and Automation 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: 
Read only

how to move screen input table control to internal table?

Former Member
0 Likes
703

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

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

1 REPLY 1
Read only

Arun_Prabhu_K
Active Contributor
0 Likes
627

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.