I create a table control named ZENTER. it used the table i_enter
i_enter contined field enter(key field)
materiel(key field)
price
amount
i used wazid and just display materiel price in the screen layout.
i also create a I/O button P_ENTER,
i want insert date from the screen,for example
p_enter = 0001
materiel =001 price = 20
materiel =002 price =30
materiel =003 price =10
how should i do to apend these data into i_enter
0001 001 20
0001 002 30
0001 003 10
and in the after input modules
MODULE ZENTER_MODIFY INPUT.
MODIFY I_ENTER
FROM WA_ENTER
INDEX ZENTER-CURRENT_LINE.
ENDMODULE.
what should i do??
thank u