on 2006 Mar 23 6:48 AM
Hi,
i want to create a collection of files (source is a sap http content server) and bundle them in a zip file. Later on i want to offer the user a link, to get the zip file. Does anyone know about existence and usage of abap classes, which can get a bundle of files and zipping them. There are some classes, but there is no suitable where used list.
Regards, Stefan
Request clarification before answering.
The IGS also has some capabilities to create ZIP Files. I'm not sure if this is available on 620 or not - but have a look for program GRAPHICS_IGS_ZIPPER_DEMO.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Did you check the cl_abap_zip?
data: zip type ref to cl_abap_zip, result type xstring.
create object zip.
zip->add( name = some_file content = content ).
result = zip->save( ).
Eddy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
93 | |
11 | |
9 | |
8 | |
7 | |
5 | |
4 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.