Bursting in 10g into a Zip file.

Hey,
I wanted to know if its possible to burst a file in a zip file, like the email attachment should be a zip file. I have successfully done busrting with pdf, html and excel outputs for both EMAIL and FTP type. I want to know if Bursting into a zip file is possible. If yes, then please kindly tell me how to configure in the Burst.
Thanks,
Suvha Lama

Hi,
I have been analysing this. My scripts is to unzip the file and then delete the zip after unzipping.
The script was working fine in the folder for some time. If we keep on testing the script. It's not deleting the zip after unzipping it.Which is causing PI to process the file multiple times so there are multiple files in backup folder.
Any suggestion on this?

Similar Messages

  • How to zip multi files into one zip file in ABAP

    hi all:
    As you know, ABAP has CL_ABAP_GZIP class to support zip file function. But it only support one file zip. If I want to zip two files into one zip file, how to do it?
    thanks.

    Hi,
    <li>If you know how to zip one file,  to zip two files , you can follow the below steps.
    DATA:g_zipper     TYPE REF TO cl_abap_zip.
    "create our zipper object
    CREATE OBJECT g_zipper.
    "add 1st file to zip
    CALL METHOD g_zipper->add
       EXPORTING
         name    = file_name
         content = content_x.
      "add 2nd file to zip
    CALL METHOD g_zipper->add
       EXPORTING
         name    = file_name
         content = content_y.
    "save zip
    CALL METHOD g_zipper->save
       RECEIVING
         zip = zip.
    Thanks
    Venkat.O

  • Adding a file into existing zip file

    I need a add a file into existing zip file. and write into printwriter.
    How to do it?
    Waiting for the reply.
    Thanks and Regards,
    Narayanan. G

    Narayanan.G wrote:
    I need a add a file into existing zip file.API: [ZipOutputStream#putNextEntry()|http://java.sun.com/javase/6/docs/api/java/util/zip/ZipOutputStream.html#putNextEntry%28java.util.zip.ZipEntry%29]
    Tutorial: [http://java.sun.com/developer/technicalArticles/Programming/compression/].
    and write into printwriter.Writing a zip file into printwriter? Huh? Please elaborate.

  • Wht does safari combine multiple download into a zip file?

    I downloaded a MKV file from my NAS remotely which worked fine, however when i try to combine multiple files Safari seems to automatically ZIP the files which means I cannot tell how long the download will take or how much data is left to transfer.
    Anyone got any idea how to prevent Safari from putting multiple files into a zip?
    cheers

    I select multiple files from an online storage device, and select download. at this point for some reason when the download begins the files are combined into a zip file. when the download completes i then try to extract the zip file it often fails to extract.
    If I select any one of the selceted files individually, Safari download begins, and the completed download is not in a zip file format and the file is readable.
    I hope this makes sense to someone!
    cheers

  • I have a Probook running 10.7.5 and have compressed the 60Gb MobileSync folder into a zip file that is... 60Gb, the original file is still there so I have just lost another 60Gb of space.  What's going on?

    I have a Probook running 10.7.5 and have compressed the 60Gb MobileSync folder into a zip file that is... 60Gb, the original file is still there so I have just lost another 60Gb of space.  What's going on?

    Habibullah Allah Yar.
    Kabul Afghanistan.
    Head of Green Shaheen Group of Company's.
    Website: www.gsls-c.com.
    <Personal Information Edited by Host>

  • How to use .dbf files zipped into a .zip file from within a java program

    i have a .zip file containing several .dbf files.
    the zip file is automatically downloaded regularly and data from the .dbf files is inserted into the database.
    how do i facilitate automatic extraction of a zip file or how do i fetch data from the .dbf file? (this cannot be done manually)
    anu.

    you could write a little polling class checking the zip file. you can use the java.util.jar package to extract the zip file (http://java.sun.com/docs/books/tutorial/jar/api/index.html). you could also use Jakarta ant (http://ant.apache.org/manual/index.html) to do this job (core task "zip") and call ant's target file on a regular basis (dependend on the OS you use, you can set os tasks/schedules).

  • Can I delete files once I compress them into a zip file?

    I am trying to get more space in my hard drive. One of the suggestions is to compress files I don't use. Once I compress them into an archive zip file, it looks like the files are still there.  I'm thinking that I should delete the original files but am afraid to do so. What percentage space do I save when I compress?

    What percentage space do I save when I compress?
    That depends on the type of file. Files that are already compressed, such as most media files, won't get smaller, and they may get larger. Text files will compress by about half, on average, but that will probably save a negligible amount of space.
    The right solution to your problem is to move the files you don't often need to an external hard drive. That drive must be backed up along with the internal one.

  • Broken: PS script to recursively zips files into one zip file

    Hi
    I'd like a script which zips all files and subfolders older than a specified date.
    I've have spent a fair bit of time hacking with no luck.
    I'd greatly appreciate any help.
    AJ
    PS. This script seems to do the trick -
     $folder = "C:\temp2\" 
     $zipFileName = "C:\temp\test3.zip" 
     $zip_date = Get-Date "6/5/2014"
     set-content $zipFileName ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18)) 
     $ZipFile = (new-object -com shell.application).NameSpace($zipFileName) 
     Get-ChildItem $folder | foreach {$zipFile.CopyHere($_.fullname)} 
    However, when I enter where clause  only the top folder is zipped?
    Get-ChildItem $folder| Where-Object { $_.LastWriteTime -lt $zip_date }  | foreach {$zipFile.CopyHere($_.fullname)} 
    AJ
    Ps. I'm using script from http://stackoverflow.com/questions/5641162/compress-files-in-folder-to-zip-file-by-using-ps

    Hi Rapido2,
    Thanks for your sharing =)

  • Mail program converts my csv attachment into a zip file that i am unable to open

    when i receive email thecsv attachment is being converted in zip files that i am unable to open does anyone know why this is is happening is this a apple iisue or something to do with my exchange server?

    Exe files are Microsoft Windows executables and will not work on Macs. Your Office 2008 is Microsoft Office 2008 for Mac. That's why it works.

  • How do I place directories into a zip file?

    I have some code that creates a zip file and then takes two parameters. The location you want to put in the ZIP and the zip. 
    It works, but it ignore directories and just takes all files. My path for the location I want to put in the zip is "C:\temp\ConfigFiles\"
    function Add-Zip
    param([string]$zipfilename)
    if(-not (test-path($zipfilename)))
    set-content $zipfilename ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18))
    (dir $zipfilename).IsReadOnly = $false
    $shellApplication = new-object -com shell.application
    $zipPackage = $shellApplication.NameSpace($zipfilename)
    foreach($file in $input)
    $zipPackage.CopyHere($file.FullName)
    Start-sleep -milliseconds 500
    dir C:\temp\ConfigFiles\ -Recurse | add-Zip c:\temp\myzip.zip
    All credit to this http://blogs.msdn.com/b/daiken/archive/2007/02/12/compress-files-with-windows-powershell-then-package-a-windows-vista-sidebar-gadget.aspx.
    So why does this copy only files and not folders?

    The shell is not compatible with PowerShell or scripting languages.  Do not use it.,  Use 7zip or the Net compression classes.
    http://blogs.technet.com/b/heyscriptingguy/archive/2015/03/09/use-powershell-to-create-zip-archive-of-folder.aspx
    ¯\_(ツ)_/¯

  • Compressing PDFs into a zipped file I can email to a coworker

    How can I compress a bunch of PDF documents that can be emailed to a coworker that probably has a PC?

    Hi keelyindra: Quite easy actually. If the files are not in a common folder, highlight as many files as you need right click (Control) Click and from the resulting menu items, select "compress items". If they are all contained in one folder, simply right click on the folder and select compress.
    Hope this helps
    Stedman

  • How can I send a .pdf in iChat without it turning into a .zip file? I just upgraded to Lion and am now having this issue.. Please help.

    Any solutions would be helpful. I have tried looking in preferences, but to no avail.

    Hi,
    It is no good smiling sweetly as I have children and it odes not work
    To explain further.
    I answer the alerts first, that I get for "New Posts" in threads I have contributed to.
    Then I read my other email.
    Then I come back to the boards to read the oldest Unread thread first.
    Not linking to the Thread to highlight there is one whilst emailing me is a bit like queue jumping.
    As you can see I do read everything eventually during each evening I spend here.
    I will keep to the email and only post here if I find the answer.  The answer should be shared.
    Speak soon.
    10:35 PM      Wednesday; January 25, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • I need to send a group of files in a zip file. How do I do that?

    I have Microsoft Office for MAC and send to send a group of files.  I would like to compress them into a zip file.  Is there a way to do that with my MAC?

    Select all the files, control-click any one of them, and compress them.
    (64471)

  • Path in ZIP Files

    I have a program that compresses files into a ZIP File.
    How do you get the data extractable in something like WinZip and how do you get Ride of the Path in WinZip?

    Well what I'm trying to do is use the class files in java.util.zip.* to make a program that compresses files into a ZIP Archive. I figured out the question you didn't understand. What I'm trying to do right now is get the data in the archive extractable. When I open my archive that I created with my program, WinZip says that the enties are there. When I try to extract them WinZip crashes. I used a code that is something like this:
    ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(outzip));
    int q = 0;
    for (q = 0; q < infile.length; q++) {
    FileInputStream in = new FileInputStream(infile[q]);
    size = in.available();
    byte b[] = new byte[size];
    in.read(b);
    File f = new File(infile[q]);
    ZipEntry ze = new ZipEntry(f.getPath());
    zos.setLevel(9);
    ze.setTime(f.lastModified());
    zos.putNextEntry(ze);
    zos.write(b);
    zos.closeEntry();
    in.close();
    zos.flush();
    zos.close();
    Infile is an array of file names in the form of strings. Then the program loops through them strings turning each into a file so that it is written without a path name (which wa part of my last problem) into the zip file.

  • Extension for creating a zip file and unzipping it

    Iam totally new to Dreamweaver and the extensions. So please
    help me with this.
    Assuming i have a .zip file and it contains some html pages
    along with css and gifs.
    The req is to have an Import option, which given this zip
    file, can unzip its contents. The user can work on these html
    pages. When the user finishes working on them, I need an export
    button so that we can package the entire stuff back into a zip
    file.
    How can i implement this ?
    Is there any extension that is available for this ?
    Eagerly looking forward to some useful answers...
    Thanks in advance,
    Ganesh

    There used to be one .. I'm not sure if that was in DMX time
    or DMX 2004
    time .. that, when installed, allowed you to select files
    from the site
    folder or the whole thing and create a zip from them. I don't
    remember what
    it was called or who created it .. but it might be on one of
    my archived
    disks or zips .. I'll try to check it out later today.
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner''s
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "Ganesh Ram" <[email protected]> wrote in
    message
    news:engarc$d62$[email protected]..
    > Iam totally new to Dreamweaver and the extensions. So
    please help me with
    > this.
    >
    > Assuming i have a .zip file and it contains some html
    pages along with css
    > and
    > gifs.
    > The req is to have an Import option, which given this
    zip file, can unzip
    > its
    > contents. The user can work on these html pages. When
    the user finishes
    > working on them, I need an export button so that we can
    package the entire
    > stuff back into a zip file.
    >
    > How can i implement this ?
    > Is there any extension that is available for this ?
    >
    > Eagerly looking forward to some useful answers...
    >
    > Thanks in advance,
    > Ganesh
    >
    >

Maybe you are looking for