Application Development 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: 

Table control

Former Member
0 Kudos

Hi!

My Table control outputs no values. Do you have an idea why?

Regards

Ilhan


gt_versand_plan is populated (has 4 entries)
 
module tc_zeile_laden output.
MOVE-CORRESPONDING gw_versand_plan TO gw_tview.
endmodule.                 " tc_zeile_laden  OUTPUT
 
 
 
PROCESS BEFORE OUTPUT.
 MODULE STATUS_0200.
 LOOP AT gt_versand_plan INTO gw_versand_plan with control tc1.
  MODULE tc_zeile_laden.
 ENDLOOP.
 
 
PROCESS AFTER INPUT.
LOOP AT gt_versand_plan.
 
ENDLOOP.
MODULE USER_COMMAND_0200.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

if u r using the move statement....

write APPEND internal table also.

regards

anju

1 REPLY 1

Former Member
0 Kudos

if u r using the move statement....

write APPEND internal table also.

regards

anju