ZIP dosya ( CL_ABAP_ZIP Örnek)

XSTRING ten ZIP`li dosya oluşturma

  form f_zipzip using   prm_filename type string
                        prm_xstring type xstring
                changing chn_zip_xstring type xstring.

    data lc_zip                type ref to cl_abap_zip.
    .
    create object lc_zip.


    call method lc_zip->add
      exporting
        name    = prm_filename
        content = prm_xstring.

    chn_zip_xstring = lc_zip->save( ).


  endform.                    "f_zipzip