Hi,
I am trying to download from internal table to application error.
in my open data set i am getting an syntax error.
error - in text mode the encoding addition must be specified.
below is part of my code.
START-OF-SELECTION.
SELECT lifnr
name1
land1 FROM lfa1 INTO TABLE i_lfa1.
Open the file
OPEN DATASET v_file FOR OUTPUT IN TEXT MODE.
CHECK sy-subrc EQ 0.
LOOP AT i_lfa1.
TRANSFER i_lfa1 TO v_file.
CLEAR : i_lfa1.
ENDLOOP.
Thanks in advance,
Shejal.