‎2010 Sep 03 11:46 AM
Hi,
We have a requirement in which the payment list file generated after payment run(f110) is to be encrypted using utf-7 / utf-8 encoding.We are now using sap 4.6c version.
i tried using MD5 generator and client does't want that.
Are there any Function modules to encrypt the file into utf-7/utf-8 ?
Can you please share your views and help me to proceed further in the development.
Thankyou
Gowri
‎2010 Sep 03 12:00 PM
If you want to upload it to Application Server use
OPEN DATASET dset FOR OUTPUT IN TEXT MODE ENCODING UTF-8.
"then transfer
If for download on desktop use
DATA itab_str TYPE TABLE OF string.
APPEND 'Some text in UTf-8' TO itab_str.
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
filename = 'C:\utf.txt'
FILETYPE = 'ASC'
CODEPAGE = '4110' "UTF-8 codepage
tables
data_tab = itab_str.
Regards
Marcin
‎2010 Sep 03 12:00 PM
If you want to upload it to Application Server use
OPEN DATASET dset FOR OUTPUT IN TEXT MODE ENCODING UTF-8.
"then transfer
If for download on desktop use
DATA itab_str TYPE TABLE OF string.
APPEND 'Some text in UTf-8' TO itab_str.
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
filename = 'C:\utf.txt'
FILETYPE = 'ASC'
CODEPAGE = '4110' "UTF-8 codepage
tables
data_tab = itab_str.
Regards
Marcin
‎2010 Sep 03 12:03 PM
Hi Marcin,
we are using sap 4.6c version and don't have the option of codepage in GU_DOWNLOAD function module.
Thankyou
Gowri