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.