i have this two internal table
types:begin of y_lt_mkpf,
bldat type mkpf-bldat,
frbnr type mkpf-frbnr,
bktxt type mkpf-bktxt,
end of y_lt_mkpf.
types:begin of y_lt_lfa1,
name1 type lfa1-name1,
end of y_lt_lfa1.
data:y_li_mkpf type table of y_lt_mkpf.
data:y_li_lfa1 type table of y_lt_lfa1.
i want to add the field name1 in the internal table y_li_lfa1 to the internal table y_li_mkpf.
so that i get this internal table
types:begin of y_lt_mkpf,
bldat type mkpf-bldat,
frbnr type mkpf-frbnr,
bktxt type mkpf-bktxt,
name1 type lfa1-name1,
end of y_lt_mkpf.
data:y_li_mkpf type table of y_lt_mkpf.