Skip to Content
0
Former Member
Jun 02, 2008 at 06:13 AM

Insert-very urgent pls help

32 Views

Hi

following insert statement is not working. Pls help me

DAta :BEGIN OF t_header1 OCCURS 0,

 name1(20),
 name2(25),
 name3(20),
 name4(25),
 name5(20),
 name6(25),
 name7(20),
 name8(25),
 name9(20),
 name10(25),
 name11(20),
 name12(25),
 name13(20),
 name14(25),
 END OF t_header1.



t_header1-name1  = 'Client'.
t_header1-name2  = 'Plant Code'.
t_header1-name3  = 'Product Code'.
t_header1-name4  = 'Product Description'.
t_header1-name5  = 'Base Unit of Measure'.
t_header1-name6  = 'Inner Pack'.
t_header1-name7  = 'Outer Pack'.
t_header1-name8  = 'Ship Pack'.
t_header1-name9  = 'Lst Upd Dt'.
t_header1-name10  = 'Lst Upd By'.
t_header1-name11 = 'Ext date'.
t_header1-name12 = 'Ext Time'.
t_header1-name13  = 'Ext By'.
t_header1-name14  = 'File Name'.

append t_header1.
clear t_header1.

*INSERT t_header1 INTO it_material INDEX sy-tabix.*