table:kna1.
types:begin of fs,
kunnr type kunnr,
ort01 type ort01_gp,
name1 type name1_gp,
end of fs.
data:w type fs,
itab type table of fs.
in pai module.
case sy-ucomm.
when 'insert'.
move kna1(screen field) to wa.
append wa to itab.
insert into kna1 values to wa.
isn't it wrong.
when activating im getting wa is not long enough error.