Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to Zip multiple .csv files in Unix

Former Member
0 Kudos

Hi,

Can anyone please let me know how to zip, multiple .csv files in UNIX. I'm using version 4.6C.

Thanks,

Madhuri

1 ACCEPTED SOLUTION

former_member181962
Active Contributor
0 Kudos

Hi Madhuri,

Have a Look at the class CL_ABAP_ZIP.

Check the following links:

Regards,

Ravi

4 REPLIES 4

former_member181962
Active Contributor
0 Kudos

Hi Madhuri,

Have a Look at the class CL_ABAP_ZIP.

Check the following links:

Regards,

Ravi

0 Kudos

Hi Ravi,

Class CL_ABAP_ZIP is not available in version 4.6C. Can u suggest any other method.

Thanks,

Madhuri.

0 Kudos

Hi,

under unix:

1) with unix command compress

or abap: open dataset ... filter 'compress'

2) unix command: tar cvf /home/test/

A.

Former Member
0 Kudos

hi madhuri,

In code means yu can use split by comma (,) into one internal table for example

SPLIT IT_UPLOAD AT ','

INTO

IT_MAT1-MATNR

IT_MAT1-VDATU.