Issues in arching/processing a zip file

On my sender side i process the zip(contains around20k files) and backitup and send it to the target side.I have a unzip program which unzips the file on my receiver side in command line.
When i see the archive directory i see multiple zip files with diff timestamps where as in i kept only one zip file?
Why is it producing many zip files ?

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

  • Unzip issue: Could not delete the zip file after unzip it

    I have issue with the following code, the purpose is to unzip first then delete the zip file. But I could not delete the zip file. When I put a break point before my delete() call, I manually delete it and get the file is used by another process. Please help. Here is my code;
    try{
    File primeZip = new File(dir, fileName);
    ZipInputStream zipStream = new ZipInputStream(new FileInputStream(primeZip));
         ZipFile zf = new ZipFile(primeZip);
         OutputStream out = null;
         for (Enumeration em = zf.entries(); em.hasMoreElements();){
              String fileName = em.nextElement().toString();
              out = new FileOutputStream(fileName );
              byte[] buf = new byte[16384];
              int len;
              while ((len = zipStream.read(buf)) > 0) {
                   out.write(buf, 0, len);
              out.flush();
              out.close();
         out.flush();
                   out.close();
                   zipStream.close();
    primeZip.delete();
    }catch(FileNotFoundException e){          
    }catch(IOException e){         
    }

    I put close() for ZipFile object which is zf.close() befoer I delete the zip file resolve this issue.
    Thanks.

  • How to get the entries in a jar/zip file contained within a jar/zip file?

    If I want to list the jar/zip entries in a jar/zip file contained within a jar/zip file how can I do that?
    In order to get to the entry enumeration I need a Zip/JarFile:
    ZipFile zip = new ZipFile("C:/java_dev/Java_dl/java_jdk_commander_v36d.zip");
    // Process the zip file. Close it when the block is exited.
    try {
    // Loop through the zip entries and print the name of each one.
    for (Enumeration list =zip.entries(); list.hasMoreElements(); ) {
    ZipEntry entry = (ZipEntry) list.nextElement();
    System.out.println(entry.getName());
    finally {
    zip.close();
    Zip file "java_jdk_commander_v36d.zip" contains two zip entries:
    1) UsersGuide.zip
    2) JDKcommander.exe
    How to list the entries in "jar:file:/C:/java_dev/Java_dl/java_jdk_commander_v36d.zip!/UsersGuide.zip"?
    The following code:
    URL url = new URL("jar:file:/C:/java_dev/Java_dl/java_jdk_commander_v36d.zip!/UsersGuide.zip");
    JarURLConnection jarConnection = (JarURLConnection)url.openConnection();
    zipFile = (ZipFile)jarConnection.getJarFile();
    would point to "jar:file:/C:/java_dev/Java_dl/java_jdk_commander_v36d.zip", which is no help at all and Class JarURLConnection does not have an enumeration method.
    How can I do this?
    Thanks.
    Andre

    I'm not sure I understand the problem. The difference between a zip and jar file is the manifest file; JarFile is extended from ZipFile and is able to read the manifest, other than that they are the same. Your code
    for (Enumeration list =zip.entries(); list.hasMoreElements(); ) {
    ZipEntry entry = (ZipEntry) list.nextElement();
    System.out.println(entry.getName());
    }is close to what I've use for a jar, below. Why not use the same approach? I don't understand what you're trying to do by using JarURLConnection - it's usually used to read the jar contents.
    String jarName = "";
    JarFile jar = null;
    try
        jar = new JarFile(jarName);
    catch (IOException ex)
        System.out.println("Unable to open jarfile" + jarName);
        ex.printStackTrace();
    for ( Enumeration en = jar.entries() ;  en.hasMoreElements() ;)
        System.out.println(en.nextElement());
    }

  • Error in OutlookSoft 4.2: Empty ZIP file

    Hi All
    System:- OutlookSoft 4.2 SP3 version.
    While getting connected with the OutlookSoft Excel interface, I get an option to refresh the Application Set.
    After selecting it, I am getting the error:-
    __"A dimension information file cannot be created. There may be a network or security issue. Error message: Empty ZIP file"__
    Please suggest me for a solution and a probable cause for it, to avoid re-occur chances in future.
    Thanks in advance.
    Regards
    Abhishek

    Dear ABHISHEK JAIN,
    I think you got a problem with XceedZip file, please you do some steps as following:
    1  Please you unregister its file through command dos REGSVR32 /U XceedZip.dll
    2. Copy paste the XceedZip.dll file in the PC which you got error. Its file you could find in other PC client
    3  Please you register its file through command dos REGSVR32 XceedZip.dll
    Notes:
    1. Make sure you do some above steps through the Administrator user privileges.
    Kind Regards,
    Wandi Sutandi

  • Counting zip files issue

    I have an issue in a applescript project counting zip files that are dopped-on. For instance, if I select a zip and a pdf and drop it, my count only says 1. If I select two zip files, same thing, just counts as one. Does this have something to do with the "flattened" structure?
    here is a simple script to repro:
    on open someItems
              set itemCount to (count of someItems) -- the number of items to process
              display dialog "Item Count - " & (itemCount as string)
    end open
    any thoughts? stil researching.

    yes. strange indeed. I tried on a dfferent mac (also 10.8.3) and it works fine... hm. reboot time. ... still odd.

  • Process multiple documents in zip file without using ccBPM in PI

    Hi,
    Is it possible for PI to handle multiple documents within a zipped source file without the use of ccBPM?
    For example, I have an incoming source zip file containing 0.pdf, a,xml, z.pdf respectively,  After having the sender communication channel uncompress the zip file, each pdf file should be pushed to a directory on a file server, and the xml file should go through a message mapping.
    Is this possible to process all of the files without the use of ccBPM?
    Regards,
    Jim

    Hi Michal,
    Thank you for your response.  The example I provided is just one potential case.  In general, the zip file will always contain 1 xml file and 0-n PDFs, Word docs, or other types of documents.  Also, the first file in the zip may not always be the xml file, which is what I was trying to portray by my example.  Since I am not sure how many non-xml files will be included, I did not know if I could handle all of them directly, without ccBPM.
    At this point, I am leaning towards using a script preprocessor to uncompress the zip, then for each file found, push the xml file to an NFS channel which will process/map the xml, and push every other file type to another NFS channel to copy these documents to a predetermined directory on a predetermined server.
    What are your thoughts on this approach?
    Thanks and Regards,
    Jim

  • Process txt files in zip file

    Hello everybody,
    I have a scenario where PI needs to obtain a zip file via FTP using the File adapter, this zip file contains a number of txt files that I need to process, and the content of one of them send it to an ECC, now I'm using the PayloadZipBean Module in the Sender FIle Adapter, and I have two things if I use the Message Protocol as File, I get a Payload for each txt file in the zip file, but this payload has no structure, and if I use the File Content Conversion I get an XML strcuture with only one field and a strange string in it, and somewhere in this string the names of the files I assume all the content of the zip file, can anyone help on how could I achieve what I need that is to pull the zip file via SAP PI, then unzip it, and with the content of one of the txt files send it to an ECC via ABAP Proxy, thanks in advance for your answers.
    Regards,
    Julio Cesar

    Hi,
    you can do it in futher way ...
    pickup zip file and simply extract and dump it in another temp folder (can use scripts on OS level).
    @ then Use another sender communication channel to pickup all these text file .
    for further clarification you can use these links also. -
    Re: PI needs to obtain a zip file via FTP using the File adapter
    Accessing File using FTP from Java Mapping
    File Sender Adapter with FTP protocol
    BR
    Raj

  • Request time out - zip file processing in sharepoint 2010

    Hello All,
    I have developed web part that uploads the zip package file and then programmatically zip will extracted and all files will uploaded to picture library.
    If zip files are larger then it gets request timed out error..in production server.
    Currently in web.config executionTimeout="600". I can not increase it on production server so comfortably...
    However, with this same settings functionality works well in QA and dev environment.
    How to find the proper justification for this... I do not have access to any of the environment.
    Thanks,
    Saumil

    if it will take long time it's better to do this process asynchronously using Async application Page , also you might need to check the request length as well
    check the asynchronous page example
    http://msdn.microsoft.com/en-us/magazine/cc163725.aspx
    Hope that helps|Amr Fouad|MCTS,MCPD sharePoint 2010

  • Pickup and process zip file in watch folder

    Hi,
    Could someone refer me to an example where it shows me how to use Java script in the Execute Script service to do the following:
    - Pickup the zip file from the Watch Folder
    - Unzip the zip file
    - Loop through all the folders, look for the documents and store them in the list document variable in the process
    Thank you in advance for the help!
    Hai

    You can certainly remove that file. it's basically the cached applet demo.jar (the JRE caches the downloaded jars so that you don't have to keep re-downloading them each time you visit the web site).
    The fact that your Antivirus complains about it just means that it's confused. We're all using the Sun environment, and I have the latest and greatest Norton, and there are no complaints, so it's clear that your Antivirus software needs a fix.

  • Issue while Processing the Huge File in BPEL

    Hi,
    We are facing an Issue while Processing a Hige file in BPEL Process (More than 1MB File). When i test the files with more than 1500 transactions (More than 1MB file) then the BPEL Process is automatically goes to OFF Mode or it goes to Perform Manually Recovery Queue.
    Even we are facing this issue in Production also so we are using UNIX Script to Split the file before place the file in BPEL Input directory.Any Pointers to resolve this issue will be helpful.
    Thanks,
    Saravana

    Hi,
    Please find the answers.
    1. Currently we are using SOA 10.1.2 Version and JDev10g
    2. we are using File Adapeter
    3. yes. We used debatching.
    4. Yes. I am able to recover from Manual Recovery Queue
    5. Please find the error message
    <2009-05-21 04:32:38,461> <DEBUG> <ESIBT.collaxa.cube.engine.dispatch> <Dispatcher::adjustThreadPool> Allocating 1 thread(s); pending threads: 1, active threads: 0, total: 83
    <2009-05-21 04:32:44,077> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> File : /harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B is ready to be processed.
    <2009-05-21 04:32:44,077> <INFO> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Processing file : /harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B
    <2009-05-21 04:32:44,077> <DEBUG> <ESIBT.collaxa.cube.activation> <AdapterFramework::Inbound> onBatchBegin: Batch 'bpel://localhost/ESIBT/BPELProcess_810~1.0//Input5162009.B2B_1242894594000' (/harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B) starting...
    <2009-05-21 04:32:44,077> <DEBUG> <ESIBT.collaxa.cube.translation> <TranslatorFactory::log> Inside TranslatorFactory
    <2009-05-21 04:32:44,078> <DEBUG> <ESIBT.collaxa.cube.translation> <TranslatorFactory::log> using version attribute = NXSD
    <2009-05-21 04:32:44,078> <DEBUG> <ESIBT.collaxa.cube.translation> <TranslatorFactory::log> loading xlator class...oracle.tip.pc.services.translation.xlators.nxsd.NXSDTranslatorImpl
    <2009-05-21 04:32:44,081> <DEBUG> <ESIBT.collaxa.cube.translation> <TranslatorFactory::log> class loaded
    <2009-05-21 04:32:44,081> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Created translator : oracle.tip.pc.services.translation.xlators.nxsd.NXSDTranslatorImpl@46908ae8
    <2009-05-21 04:32:44,098> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Setting up Control dir for debatching error recovery
    <2009-05-21 04:32:44,121> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Control dir for debatching error recovery : /opt01/app/ESIBT/oracle/esibt10gR2iAS/BPEL10gR2/iAS/j2ee/home/fileftp/controlFiles/localhost_ESIBT_BPELProcess_810~1.0_/inbound
    <2009-05-21 04:32:44,121> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Invoking inbound translation for : Input5162009.B2B
    <2009-05-21 04:32:44,121> <DEBUG> <ESIBT.collaxa.cube.translation> <NXSDTranslatorImpl::log> Starting translateFromNative
    <2009-05-21 04:32:44,139> <DEBUG> <ESIBT.collaxa.cube.translation> <NXSDTranslatorImpl::log> Done with translateFromNative
    <2009-05-21 04:32:44,139> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Completed inbound translation for : Input5162009.B2B
    <2009-05-21 04:32:44,139> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> isTextFile : true
    <2009-05-21 04:32:44,139> <INFO> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Translated inbound batch index 1 of file {Input5162009.B2B} with corrupted message count = 1
    <2009-05-21 04:32:44,139> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Error Reader created using charset :ASCII
    <2009-05-21 04:32:44,139> <INFO> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Sending message to Adapter Framework for rejection to user-configured rejection handlers : {
    fileName=/harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B, startLine=1, startColumn=1, endLine=-1, endCol=-1, Exception=ORABPEL-11167
    Error while reading native data.
    [Line=1, Col=70] Expected "\t" at the specified position in the native data, while trying to read the data for "element with name HDR_STORE_NUM", using "style" as "terminated" and "terminatedBy" as "\t", but not found.
    Ensure that "\t", exists at the specified position in the native data.
    <2009-05-21 04:32:44,139> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Setting batchId in NativeRecord to bpel://localhost/ESIBT/BPELProcess_810~1.0//Input5162009.B2B_1242894594000
    <2009-05-21 04:32:44,139> <WARN> <ESIBT.collaxa.cube.activation> <AdapterFramework::Inbound> [Read_ptt::Read(Object)] - onReject: The resource adapter 'File Adapter' requested handling of a malformed inbound message. However, the following bpel.xml activation property has not been defined: 'rejectedMessageHandlers'. Please define it and redeploy the business process. Will use the default Rejection Directory file:///opt01/app/ESIBT/oracle/esibt10gR2iAS/BPEL10gR2/iAS/integration/orabpel/domains/ESIBT/archive/jca/BPELProcess_810/rejectedMessages for now.
    <2009-05-21 04:32:44,140> <WARN> <ESIBT.collaxa.cube.activation> <AdapterFramework::Inbound> [Read_ptt::Read(Object)] - onReject: Sending invalid inbound message to Exception Handler:
    <2009-05-21 04:32:44,140> <INFO> <ESIBT.collaxa.cube.activation> <AdapterFramework::Inbound> Handing rejected message to DEFAULT rejection handler: file:///opt01/app/ESIBT/oracle/esibt10gR2iAS/BPEL10gR2/iAS/integration/orabpel/domains/ESIBT/archive/jca/BPELProcess_810/rejectedMessages since none of the configured rejection handlers [] succeeded.
    <2009-05-21 04:32:44,140> <DEBUG> <ESIBT.collaxa.cube.activation> <AdapterFramework::Inbound> Finished persisting rejected message to file system under the name: /opt01/app/ESIBT/oracle/esibt10gR2iAS/BPEL10gR2/iAS/integration/orabpel/domains/ESIBT/archive/jca/BPELProcess_810/rejectedMessages/INVALID_MSG_BPELProcess_810_Read_20090521_043244_0140.dat
    <2009-05-21 04:32:44,141> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Setting last error record to : -1
    <2009-05-21 04:32:44,141> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Translator has failed to translate any message from batch number: 1
    <2009-05-21 04:32:44,141> <INFO> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Message not published as translation failed: {
    File=/harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B, batchIndex=1, PublishSize=1
    <2009-05-21 04:32:44,141> <ERROR> <ESIBT.collaxa.cube.activation> <AdapterFramework::Inbound> onBatchFailure: Batch 'bpel://localhost/ESIBT/BPELProcess_810~1.0//Input5162009.B2B_1242894594000' (/harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B) has failed due to: ORABPEL-11167
    Error while reading native data.
    [Line=1, Col=70] Expected "\t" at the specified position in the native data, while trying to read the data for "element with name HDR_STORE_NUM", using "style" as "terminated" and "terminatedBy" as "\t", but not found.
    Ensure that "\t", exists at the specified position in the native data.
    <2009-05-21 04:32:44,141> <INFO> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Deleting file : /harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B after processing.
    <2009-05-21 04:32:44,141> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Deleting file : Input5162009.B2B
    <2009-05-21 04:32:44,141> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Deleted file : true
    <2009-05-21 04:32:44,141> <DEBUG> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Removing file /harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B from files to be processed Map.
    <2009-05-21 04:32:44,141> <INFO> <ESIBT.collaxa.cube.activation> <File Adapter::Inbound> Done processing File : /harbinger/prod/xlate/Outbound_Input_LDS_810/Input5162009.B2B
    <2009-05-21 04:33:09,698> <DEBUG> <ESIBT.collaxa.cube.engine.data> <ConnectionFactory::getConnection> GOT CONNECTION 4 Autocommit = false
    For this error message this shows due to some /t its not picking up the file. but even i am facing the same issue for all the files where load is huge.
    Thanks,
    Saravana

  • Strange issue - XI somtimes process a file and sometimes its not detected

    Dear friends,
    We have a strange problem. I’ll describe the situation:
    We have a simple file to file scenario without any mapping or File Content Conversion. Daily a sender system puts a ZIP file on a server and XI processes this file.
    The strange thing is that XI sometimes processes this file and sometimes its not detected at all. After our analysis we come to conclusion that its not random.
    We have looked at almost everything. We have checked the:
    File name;
    Size of the messages.
    Authorisation;
    Users that are assigned to the processing job.
    Has anyone experienced the same problem or does anyone has a suggestion?
    Helpful points will be rewarded,
    Kind regards,
    Kamran

    Hi Mickael,
    There are no stupid questions, there are only stupid answers. So I hope my answers are not stupid
    1. what is your Polling Interval of your Sender Agreement ? Once a day ? every 60s ? etc...
    because you say that your Legacy put the file Daily.
    Answer: The polling Interval is 400 seconds and Modification Check is 400000 Msecs
    2. Are you sure that your Legacy does not put the file after or during the XI adapter try to catch it?
    Answer: No Because Modification Check works perfectly and we get alerts if the file is modify during the process.
    3. Does your filename is always the same ?
    4. or Have you a filename which can changed and which is case sensitve (lowercase and uppercase).
    Answer: It has always the same name and It starts with O2C.zip
    5. What are the size of your failed file?
    Maybe it's too big and maybe you have a timeout somewhere (for instance into the adapter log)
    Answer: It's not too big, it varies from 20 MB to 100 MB and we know that we can process files up to 700 MB
    As I told before we have checked everything. Its very strange...
    Do you have any other suggestion?
    Regards,
    Kamran

  • Possible Security issue with .zip files

    I found a potential issue with expanding .zip files. In the cases I've seen, the .zip files were created on Windows using Winzip. After copying the files to my OS X system, I double-clicked the file to expand the files and folders. (In this case the zip files was a Ruby on Rails web application.) In looking at the files in the terminal, all the files had wide open permission - 777 - all users had full access to all files!
    I had to go through and reset the permissions (755 for folders, 644 for files), and had to reset the execute permission on the Ruby script files.
    I'm going to test some more with more zip files, but this could be a potentially huge problem.
    Also, I noticed that the files had the "extended attribute" of com.apple.quarantine set on each file - which I assume is being set as a function of being downloaded via Safari from my webmail (Gmail) account. The .zip file had this attribute set, and when expanded it propagated to each file and folder.

    The files don't have any security on them from windows - windows doesn't know anything about unix permissions.
    I've compressed other files and folders on Windows and decompressed them in Tiger without a problem. I would think, at a minimum, the files would inherit the permissions of the parent folder I expanded them into.

  • Issue in Downloading or Identifying correct Software zip file of EBS R12 !

    Hi,
    I am confused a bit about downloading the EBS R12 software Link from https://edelivery.oracle.com/download/osdc_download_links.html.
    Could you please specify which software Link or rather zip file is accurate in order to download EBS R12 for Installing Vision Instance on Linux 32 bit server (
    ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), )
    -Linux x86
    B68323-01: Oracle Application Management Suite 12c for Oracle E-Business Suite Media Pack
    B64087-05: Oracle Enterprise Data Quality 8.1 Media Pack
    B63062-01: Oracle Application Management Suite for Oracle E-Business Suite 11g Media Pack (JP)
    B62239-02: Oracle Pedigree and Serialization Manager 1.1 Media Pack for Linux
    B60355-01: Oracle Contract Lifecycle Management for Public Sector Media Pack for Linux x86
    B59613-01: Oracle Strategic Network Optimization 12.1.3 standalone Media Pack
    B54649-01: Oracle E-Business Suite Release 12.1.1 Update Media Pack for Linux x86 (JP)
    B54655-07: Oracle E-Business Suite Release 12.1.1 Media Pack for Linux x86 (JP)
    B54645-05: Oracle E-Business Suite Release 12.1.1 (with NLS Supplement) Media Pack for Linux x86 (JP)
    B54487-07: Oracle E-Business Suite Release 12.1.1 (with NLS Supplement) Media Pack for Linux x86
    B54479-01: Oracle E-Business Suite Release 12.1.1 Update Media Pack for Linux x86
    Is this the correct software zip links (B54467-07) should i download all these software zip file in order to install R12 Vision instance ??
    B54467-07: Oracle E-Business Suite Release 12.1.1 Media Pack for Linux x86
    Part Number      Description      File Name      Size
    B53824-01      Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here      B53824-01_1of4.zip      29M
    B53824-01      Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here      B53824-01_2of4.zip      97M
    B53824-01      Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here      B53824-01_3of4.zip      393M
    B53824-01      Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here      B53824-01_4of4.zip      81M
    V15576-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install RDBMS - Disk 1      V15576-01_1of3.zip      1.7G
    V15576-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install RDBMS - Disk 1      V15576-01_2of3.zip      1.2G
    V15576-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install RDBMS - Disk 1      V15576-01_3of3.zip      658M
    V15564-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 1      V15564-01_1of3.zip      1.2G
    V15564-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 1      V15564-01_2of3.zip      1.6G
    V15564-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 1      V15564-01_3of3.zip      863M
    V15565-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 2      V15565-01_1of2.zip      1.5G
    V15565-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 2      V15565-01_2of2.zip      1.5G
    V15566-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 3      V15566-01_1of3.zip      1.2G
    V15566-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 3      V15566-01_2of3.zip      1.5G
    V15566-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 3      V15566-01_3of3.zip      1.0G
    V15567-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 4      V15567-01_1of3.zip      1.7G
    V15567-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 4      V15567-01_2of3.zip      1.6G
    V15567-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 4      V15567-01_3of3.zip      501M
    V15568-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 5      V15568-01_1of3.zip      1.6G
    V15568-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 5      V15568-01_2of3.zip      1.6G
    V15568-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 5      V15568-01_3of3.zip      491M
    V15569-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 6      V15569-01_1of3.zip      1.6G
    V15569-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 6      V15569-01_2of3.zip      1.7G
    V15569-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 6      V15569-01_3of3.zip      746M
    V15570-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 7      V15570-01_1of3.zip      1.5G
    V15570-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 7      V15570-01_2of3.zip      1.4G
    V15570-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 7      V15570-01_3of3.zip      784M
    V15571-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 8      V15571-01_1of3.zip      1.4G
    V15571-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 8      V15571-01_2of3.zip      1.7G
    V15571-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 8      V15571-01_3of3.zip      910M
    V15572-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 9      V15572-01_1of3.zip      1.5G
    V15572-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 9      V15572-01_2of3.zip      1.6G
    V15572-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 9      V15572-01_3of3.zip      490M
    V15575-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Tools - Disk 1      V15575-01.zip      1.7G
    V15573-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install APPL_TOP - Disk 1      V15573-01_1of3.zip      1.6G
    V15573-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install APPL_TOP - Disk 1      V15573-01_2of3.zip      1.7G
    V15573-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install APPL_TOP - Disk 1      V15573-01_3of3.zip      565M
    V15574-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install APPL_TOP - Disk 2      V15574-01_1of3.zip      1.2G
    V15574-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install APPL_TOP - Disk 2      V15574-01_2of3.zip      1.2G
    V15574-01      Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install APPL_TOP - Disk 2      V15574-01_3of3.zip      1.1G
    Which of these software zip files should i download ???
    B53825-01      Oracle E-Business Suite Release 12.1.1 Documentation Library      B53825-01.zip      458M
    V17202-01      Oracle Succession Planning 12.1.1      V17202-01.zip      11M
    V18967-01      Oracle Product Hub for Communications, Release 12.1.1      V18967-01.zip      48M
    V18732-01      Oracle Rapid Planning 12.1.1 for Linux x86      V18732-01.zip      1.3G
    V19061-01      Oracle Supplier Hub Release 12.1      V19061-01.zip      582M
    V26710-01      Oracle Environmental Accounting and Reporting 12.1.x      V26710-01.zip      2.4M
    B50876-01      Oracle Database Lite 10g Release 3 (10.3.0.2.0) for Linux X86/AMD-64 (CD)      B50876-01.zip      450M
    B34625-01      Oracle SOA Suite 10g (10.1.3.1.0) for Linux x86 (32-bit) (CD)      B34625-01.zip      622M
    V20311-01      Oracle SOA Patchset 10.1.3.5 for Price Protection on Linux x86      V20311-01.zip      779M
    B24995-01      Oracle® Warehouse Builder 10g (10.1.0.4.0) for Linux x86      B24995-01.zip      547M
    B52379-01: Oracle Business Approvals Connector for Managers 1.0 Media Pack for Linux x86
    B18706-01: Oracle® Applications 11i Exchange Marketplace 6.2.5 Media Pack for Linux x86
    Kindly suggest !!
    Thanks & regards
    MZ

    Please see your other thread -- Re: Trouble in finding the EBS r12 downlaod link for Instal Vision instance.
    You need the following:
    B54467-07: Oracle E-Business Suite Release 12.1.1 Media Pack for Linux x86
    Part Number Description File Name Size
    B53824-01 Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here B53824-01_1of4.zip 29M
    B53824-01 Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here B53824-01_2of4.zip 97M
    B53824-01 Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here B53824-01_3of4.zip 393M
    B53824-01 Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here B53824-01_4of4.zip 81M
    V15576-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install RDBMS - Disk 1 V15576-01_1of3.zip 1.7G
    V15576-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install RDBMS - Disk 1 V15576-01_2of3.zip 1.2G
    V15576-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install RDBMS - Disk 1 V15576-01_3of3.zip 658M
    V15564-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 1 V15564-01_1of3.zip 1.2G
    V15564-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 1 V15564-01_2of3.zip 1.6G
    V15564-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 1 V15564-01_3of3.zip 863M
    V15565-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 2 V15565-01_1of2.zip 1.5G
    V15565-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 2 V15565-01_2of2.zip 1.5G
    V15566-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 3 V15566-01_1of3.zip 1.2G
    V15566-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 3 V15566-01_2of3.zip 1.5G
    V15566-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 3 V15566-01_3of3.zip 1.0G
    V15567-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 4 V15567-01_1of3.zip 1.7G
    V15567-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 4 V15567-01_2of3.zip 1.6G
    V15567-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 4 V15567-01_3of3.zip 501M
    V15568-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 5 V15568-01_1of3.zip 1.6G
    V15568-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 5 V15568-01_2of3.zip 1.6G
    V15568-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 5 V15568-01_3of3.zip 491M
    V15569-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 6 V15569-01_1of3.zip 1.6G
    V15569-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 6 V15569-01_2of3.zip 1.7G
    V15569-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 6 V15569-01_3of3.zip 746M
    V15570-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 7 V15570-01_1of3.zip 1.5G
    V15570-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 7 V15570-01_2of3.zip 1.4G
    V15570-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 7 V15570-01_3of3.zip 784M
    V15571-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 8 V15571-01_1of3.zip 1.4G
    V15571-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 8 V15571-01_2of3.zip 1.7G
    V15571-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 8 V15571-01_3of3.zip 910M
    V15572-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 9 V15572-01_1of3.zip 1.5G
    V15572-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 9 V15572-01_2of3.zip 1.6G
    V15572-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Databases - Disk 9 V15572-01_3of3.zip 490M
    V15575-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install Tools - Disk 1 V15575-01.zip 1.7G
    V15573-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install APPL_TOP - Disk 1 V15573-01_1of3.zip 1.6G
    V15573-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install APPL_TOP - Disk 1 V15573-01_2of3.zip 1.7G
    V15573-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install APPL_TOP - Disk 1 V15573-01_3of3.zip 565M
    V15574-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install APPL_TOP - Disk 2 V15574-01_1of3.zip 1.2G
    V15574-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install APPL_TOP - Disk 2 V15574-01_2of3.zip 1.2G
    V15574-01 Oracle E-Business Suite Release 12.1.1 for Linux x86 Rapid Install APPL_TOP - Disk 2 V15574-01_3of3.zip 1.1G
    Thanks,
    Hussein

  • Issue Opening MAC Zip file on PC

    When i create an Archive of files (Zip File) on my Mac and send it to certain PC users, they come back telling me it says it's ZERO KBs when they unzip it.
    Which is weird, because all the PCs we have in the office can open the Mac Zip files fine.
    I thought it was because their winzip thing was out of date, but they are all telling me they are up to date.
    Again, this is only happening to a select few PC users, most PC users i'm sending it to can open it fine.
    Anyone have any advice on this or why it is happening to these certain PC users?
    Thanks

    Select "Attachments" in Mail's "Edit" menu and set "Always Send Windows Friendly Attachments". If that isn't set, a Mac file may be sent in two pieces; the resource fork (often zero bytes), and the data fork. The PC users may be using different mail programs, and some are just seeing the resource fork. The data fork is probably there somewhere if they know how to get to it. The resource fork isn't needed for anything you would send to a PC.

  • Compression failed message when downloading zip files. Any suggestions never had this issue before.

    Hi using a site i always have used when downloading something it downloads then when it is about to open the zip file it says decompression failed. Any suggestions i googled many solutions nothing seemed to work.
    Here is my mac book info if it helps.
    thanks
    Model Name:          MacBook
      Model Identifier:          MacBook1,1
      Processor Name:          Intel Core Duo
      Processor Speed:          2 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          2 MB
      Memory:          1.25 GB
      Bus Speed:          667 MHz
      Boot ROM Version:          MB11.0061.B03
      SMC Version (system):          1.4f12
      Serial Number (system):          4h639627u9c

    A restart shouldn't do any harm at all, since you sync everything make sure you don't restore.

Maybe you are looking for

  • Cover Art Problems with iTunes Library on a NAS

    I have my iTunes library stored on a Synology NAS.  I use a networked Mac Mini as a dedicated iTunes player, I set it up so the Mac Mini finds my iTunes library on the NAS.  The cover art for all of my movies that I ripped from my home DVD collection

  • The Apps window in my Creative Cloud updater is only showing a spinning blue wheel

    I've just updated my app installer to the latest Creative Cloud one but when I open it up, the Apps window only shows a spinning blue wheel, no apps. The other windows (Assets, Community) seem fine.@

  • Chinese text while downloading to excel

    Hello Everyone, I have one alv report in which text is coming into Chinese language. When i download my alv data to excel, chinese text is getting converted into #### characters. Anyone having idea how to download the chinese text from alv into excel

  • Problem in searching japanese data in DB2

    Hi, I have japanese data stored in my DB2 database. I have to search that data in DB2. For that I have writen test program. Following is the SQL query: "select adrnr from sapr3.sadr where land1='JP' and adrnr = '1000027051' and name1 like '"+sname+"%

  • Getting the parenet id along with the child ids in hierarchy query results

    create table test_test2 (do_id_tp varchar2(32),do_id number ,do_up_tp varchar2(32),do_up_id number) insert into test_test2 values('A_S',100170,'A_S',100001); insert into test_test2 values('A_S',1001054,'A_S',100001); insert into test_test2 values('A_