Skip to Content
0
Former Member
Sep 17, 2007 at 06:27 AM

internal table

82 Views

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.