2007 Nov 14 10:37 AM
Hello I have an internal table and I like to save that in a file .
I used it but it doesn't work. Thanks
CALL METHOD CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD
EXPORTING
FILENAME = STR2 "str2 = c:helloname.csv
CHANGING
DATA_TAB = IT_STATUS_F
.
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
2007 Nov 14 10:42 AM
Hello Ana Mari
I assume that you are (still) using itab's with header lines. If so change your coding accordingly:
CALL METHOD CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD
EXPORTING
FILENAME = STR2 "str2 = c:helloname.csv
CHANGING
DATA_TAB = IT_STATUS_F[]. " brackets !!!Regards
Uwe
2007 Nov 14 10:42 AM
Hello Ana Mari
I assume that you are (still) using itab's with header lines. If so change your coding accordingly:
CALL METHOD CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD
EXPORTING
FILENAME = STR2 "str2 = c:helloname.csv
CHANGING
DATA_TAB = IT_STATUS_F[]. " brackets !!!Regards
Uwe