Skip to Content
0
Former Member
Feb 26, 2009 at 05:11 PM

add records to table T180a

155 Views

Godd morning

I'm not able di add records at table T180a.

I'm not do "append t180a".

tables: T180A.

DATA:lw_file type string. " File Path

DATA: BEGIN OF t_itab OCCURS 0.

INCLUDE STRUCTURE T180A.

data: end of t_itab .

lw_file = 'X:\Dokumente und Einstellungen\users\Desktop\t180a.TXT'.

CALL FUNCTION 'GUI_UPLOAD'

EXPORTING

filename = lw_file

FILETYPE = 'ASC'

HAS_FIELD_SEPARATOR = 'X'

tables

data_tab = t_itab

.

loop at t_itab.

move-corresponding t_itab to T180a.

???????????

endloop.

leave program.