2006 Jul 09 12:34 PM
Hello friends,
Any buddy knows how to add ".txt" files into ".zip" format through the ABAP code.
Thanks in advance.
Hello friends,
Any buddy knows how to add ".txt" files into ".zip" format through the ABAP code.
Thanks in advance.
2006 Jul 09 12:39 PM
Hi Murali,
You can use the method in the class CL_ABAP_GZIP to zip your file and then download it using GUI_DOWNLOAD.
data: zip type ref to cl_abap_zip,
result type xstring.
create object zip.
zip->add( name = some_file content = content ).
result = zip->save( ).Also you can check this thread as well.
Hope this will help.
Regards,
Ferry Lianto
Please reward points if helpful.
2006 Jul 09 12:43 PM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |