Hi,
I want to download a file in UTF-* format.
i have written the following code to download it in UTF-8.
OPEN DATASET L_filename FOR OUTPUT IN TEXT MODE ENCODING UTF-8.
LOOP AT p_struct INTO w_struct.
TRANSFER w_struct TO l_filename.
CLEAR w_struct.
ENDLOOP.
CLOSE DATASET l_filename.
my question how do i check the file whether it is been downloaded in UTF-8 or not?
Thanks in advance.
neha