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

table control lines in modulepool disappear

Former Member
0 Likes
635

Every time when I create  table control in modulepool it's lines get disappear I have to handle it manually how can I solve this problem?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
594

you might have created the table with wizard.

In PAI, within loop there would be one module called which is modifying the value of the main table.

below that, write:

If sy-subrc is not initial.

     Append lwa_itab to lt_itab.

Endif.

I hope this will resolve your issue.

4 REPLIES 4
Read only

Former Member
0 Likes
594

Hi,

     It seems two possible reasons for this

          1. Any refresh used in PBO or PAI of that table. If so do not refresh the table refresh the table control.

          2. You might have missed something in loop for internal table in flow logic.

For details about table control flow logic

     http://help.sap.com/saphelp_erp2004/helpdata/en/9f/dbac5135c111d1829f0000e829fbfe/content.htm

For details about table control

     http://help.sap.com/saphelp_erp2004/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/content.htm

Read only

Former Member
0 Likes
595

you might have created the table with wizard.

In PAI, within loop there would be one module called which is modifying the value of the main table.

below that, write:

If sy-subrc is not initial.

     Append lwa_itab to lt_itab.

Endif.

I hope this will resolve your issue.

Read only

Former Member
0 Likes
594

Thanks for your reply ...............................................

Read only

Former Member
0 Likes
594

Thanks for your reply ...............................................