Hi,
In the PBO append the values to the internal table before the loop end loop.
PROCESS BEFORE OUTPUT.
MODULE FILL_9003.
LOOP AT t_mon INTO x_mon WITH CONTROL tab.
ENDLOOP.
PROCESS AFTER INPUT.
Here i appended the values to the internal table in the module FILL.Make sure that you are not calling the module after the loop..end loop.