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 wizard don't work

Former Member
0 Likes
820

Hello experts,

I use the table control wizard.

But when I fill my table with one value in my dynpro the table control don't show them.

I only fill the first line.

I debugged the report and fount out that there is only a modify and not an append.

And in the coding is written 'DO NOT CHANGE THIS LINE!'

WA_IT is filled

IT not!

MODULE TAB_VERKAUF_MODIFY INPUT.

  MODIFY IT

    FROM WA_IT

    INDEX TAB_VERKAUF-CURRENT_LINE.

ENDMODULE.

How can I solve this problem?

Thanks for hints

Best regards

Annette Bruy

1 ACCEPTED SOLUTION
Read only

former_member187748
Active Contributor
0 Likes
726

Hi,

you can comment these lines, and can write as below

MODIFY IT FROM WA_IT TRANSPORTING your fields WHERE condition.

this might solve your issue.

Hi,

you can comment these lines, and can write as below

MODIFY IT FROM WA_IT TRANSPORTING your fields WHERE condition.

this might solve your issue.

2 REPLIES 2
Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
726

Hi Annette

I would prefer to handle/create table control manually without wizard. Seconldy while creating table control did you choose all proper functions add,delete etc..?

Nabheet

Read only

former_member187748
Active Contributor
0 Likes
727

Hi,

you can comment these lines, and can write as below

MODIFY IT FROM WA_IT TRANSPORTING your fields WHERE condition.

this might solve your issue.