Sending Zip files

I have created a project, then while still on the ipad
clicked the share option, selected email.
Read email pop up explanation, one tapped the project i wish to email
Tapped email.
Email client loads. Tap in address but the Zip file never loads or never completes, so the
Mail app 'send' button is never 'good to go'. It's a small file 229kb

Can you give us more information?
Information about your iPad, if you can share the problematic project in Creative Cloud, can you share with us?
Thanks,
Takashi

Similar Messages

  • How to send zip file as attachment through email

    Hi All,
    I am having a requirement that I need to download the internal table data into .txt file and I need to zip the text file. And this zip files needs to send to the customer through email.
    I am able download the data into .txt and able to zip the file. But I am not able send the .zip file through email.
    I know that we can send .xls, .txt, .csv and also .ppt, .doc file types we can send as an attachement through abap program. But I don't know about .zip files. Is there any possibilty to send .zip file as an attachment thorugh email.
    Can any one help me how to send a .zip file thorugh email as an attachment. 
    Regards,
    vinod

    hi Vinod,
    Can you please tell me how you have zipped the file.
    I am having a text file in application server. I need to zip that file. Then the middleware moves it to Legacy system.
    I used the following code. With this I am having the data in Binary format which my midleware cannot understand.
    What I need on the whole is just to reduce the size of the file.
    form ZIP_FILE .
    DATA: lt_data TYPE TABLE OF x255,
          lt_textdata TYPE TABLE OF x255.
    DATA: ls_data LIKE LINE OF lt_data.
    DATA: lv_dsn1(100) VALUE '/ECD/120/GIS/FTP/IB/DNBPAYDEX.TXT'.
    DATA: lv_dsn3(100) VALUE '/ECD/120/GIS/FTP/IB/DNBPAYDEXZIP.zip'.
    *DATA: lv_dsn3(100) VALUE '/interfaces/SM5/test.zip'. " Contains sample1.xls and sample2.xls
    DATA: lv_file_length TYPE i.
    DATA: lv_content TYPE xstring.
    DATA: lo_zip TYPE REF TO cl_abap_zip.
    CREATE OBJECT lo_zip.
    Read the data as a string
    clear lv_content .
    OPEN DATASET lv_dsn1 FOR INPUT IN BINARY MODE.
    READ DATASET lv_dsn1 INTO lv_content .
    CLOSE DATASET lv_dsn1.
    lo_zip->add( name = 'sample.TXT' content = lv_content ).
    lv_content = lo_zip->save( ).
    *clear lv_content .
    Conver the xstring content to binary
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
    EXPORTING
    buffer = lv_content
    IMPORTING
    output_length = lv_file_length
    TABLES
    binary_tab = lt_data.
    OPEN DATASET lv_dsn3 FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    LOOP AT lt_textdata INTO ls_data.
    TRANSFER ls_data TO lv_dsn3.
    ENDLOOP.
    CLOSE DATASET lv_dsn3.
    IF sy-subrc EQ '0'.
        MESSAGE s999(zfi_ap_gl) WITH text-t10.
      ENDIF.
    Can you please help.
    Thanks Aravind

  • How to send Zip files as attachments !! Very urgent, Please help!

    I am sending PDF files as attachments using java mail (it works fine). But now my requirement is to zip the PDFs and send them as attachments instead of actual PDF's. But i don't know how to achieve that. does java mail API support zip attachment facilities? I have looked in activation API also, but i couldn't find anything helpful. even i searched the forums, but no clue. Please, anybody help me about this, it's very urgent.
    thanks
    sri

    Check the first "if". If I specify an attachment, then a myme multipart doby is created: one for text and the other for the attachemnt I use this myme ovbject only for attachemnts, because some ISPs have problems and report error in email format if the attachemnet is missing and it contains only text and no attachment.
    static public void send(String to,
         String from,
         String host,
         String smtpPort,
         String subject,
         String body,
         String fileAttachment,
         String attachmentMimeType,
         String username,
         String password,
         String debug)
    throws Exception
         // create some properties and get the default Session
         Properties props = new Properties();
         props.put("mail.smtp.host", host);
         props.put("mail.smtp.port", smtpPort);
         props.put("mail.smtp.timeout","5000");
         props.put("mail.debug", debug);
         Session session = null;
         if (username != null && password != null)
              props.put("mail.smtp.auth", "true");
              MyPasswordAuthenticator auth = new MyPasswordAuthenticator(username, password);
              session = Session.getDefaultInstance(props,auth);
         else
              session = Session.getDefaultInstance(props, null);
         //session.setDebug(true);
         // create a message
         MimeMessage message = new MimeMessage(session);
         message.setFrom(new InternetAddress(from));
         InternetAddress[] address = InternetAddress.parse(to, false);
         message.setRecipients(Message.RecipientType.TO, address);
         message.setSubject(subject);
         message.setSentDate(new Date());
         // create the message part
         if ( fileAttachment != null && fileAttachment != "NO" )
              MimeBodyPart messageBodyPart = new MimeBodyPart();
              //fill message
              messageBodyPart.setText(body);
              //Multipart multipart = new MimeMultipart();
              Multipart multipart = new MimeMultipart("alternative");
              multipart.addBodyPart(messageBodyPart);
              // Part two is attachment
              System.out.println("----->fileAttachment DISTINTO de NULL");
              messageBodyPart = new MimeBodyPart();
              FileDataSource fds = new FileDataSource(fileAttachment);
              messageBodyPart.setDataHandler( new DataHandler(fds));
              messageBodyPart.setFileName(fileAttachment); //<-- El archivo atachado.
              multipart.addBodyPart(messageBodyPart);
              //EN DESARROLLO el envio de attachment!!          
              // Put parts in message
              message.setContent(multipart);
         } else { //Envio es solamente TEXTO
              message.setText(body);
         // send the message
         Transport.send(message);
    Regards,
    Vladimir

  • Bypassing SOA MANAGER , Consume a stateless Webservice and send Zip file

    Hello,
    I have question around consuming web service via ABAP program.The scenario is consume a operation of a web-service and get the information, based on this information put the data in flat files and send it back in another operation of this web-service. Due to way web-service is implemented I cannot generate proxy class and use SOA manager the reason is web-service is using complex data type
    1) Is it possible to consume a web-service via ABAP program directly
    I have explored the SAP documentation and came up with this link
    Appendix C - SOAP Runtime for the SAP Web AS - SAP Library
    Few  Links I found are
    Manual HTTP POST from ABAP
    WebService 4.7 / WAS 620 XSTRING BASE 64
    Using any of the above approaches can  SAP program consume a web-service bypassing the SOA manager & send the zipped files in one of the operations.
    Thank you

    Appreciate if some one can answer the question above

  • Cannot send .zip file

    So I'm trying something for Minecraft and I need to send a file that is .zip
    I tried to email it to my gmail but here's what it says
    Unable to Send Email
    A copy has been placed in your outbox. No password provided.
    Please go to Mail Account Settings and enter a password.
    What do I do? I already entered my password but it still doesn't send and keeps popping up the message above.
    Please help me, I'd really appreciate it (by the way I have an iPhone 5c)
    -SnowfurandThistleclaw

    Since no one has an answer does anyone know where I can find iTunes File Sharing on my PC (computer)?

  • Sending zip file(or folder ) from desktop to email attachment

    Dear all
    I hvae 11 files on my desktop of differnt file type like doc, pdf, xls ...
    By using GUI_UPLOAD, i am able to upload one file at a time
    Is there any way to upload zip file at once OR folder containing all the files at a single go  OR all the files can be uploaded in a single program.
    Is there any class, function module to upload zip file. I am aware of cl_abap_zip but not able to use it.
    Ravi
    Edited by: ravihsr on Mar 24, 2011 3:05 AM
    Edited by: ravihsr on Mar 24, 2011 3:14 AM

    Hi
    This the code:
    REPORT  Z263_EMAIL.
    data: T_MAIL_PACK TYPE TABLE OF SOPCKLSTI1,
          T_MAIL_HEAD TYPE TABLE OF SOLISTI1,
          T_MAIL_REC TYPE TABLE OF SOMLRECI1,
          MAIL_HEAD TYPE SODOCCHGI1,
          T_MAILTXT TYPE TABLE OF SOLISTI1,
          WA_MAIL_PACK TYPE SOPCKLSTI1,
          WA_MAIL_HEAD TYPE SOLISTI1,
          WA_MAIL_REC TYPE  SOMLRECI1,
          WA_MAILTXT TYPE SOLISTI1,
          TAB_LINES TYPE I.
    *FILLING HEADER
    MAIL_HEAD-OBJ_NAME  = 'NEW MAIL TO BE SENT'.
    MAIL_HEAD-OBJ_DESCR = 'SUBJECT FOR MAIL'.
    WA_MAILTXT-LINE = 'MAIL OUTPUT'.
    APPEND WA_MAILTXT TO T_MAILTXT.
    WA_MAIL_REC-RECEIVER = '******@****.COM'. "email-id
    WA_MAIL_REC-REC_TYPE = 'U'.
    APPEND WA_MAIL_REC TO T_MAIL_REC.
    DESCRIBE TABLE T_MAILTXT LINES TAB_LINES.
    CLEAR WA_MAIL_PACK-TRANSF_BIN.
    WA_MAIL_PACK-HEAD_START = 1.
    WA_MAIL_PACK-HEAD_NUM = 0.
    WA_MAIL_PACK-BODY_START = 1.
    WA_MAIL_PACK-BODY_NUM = TAB_LINES.
    WA_MAIL_PACK-DOC_TYPE = 'RAW'.
    WA_MAIL_PACK-OBJ_NAME = 'C:\Documents and Settings\rmalhotra\Desktop\NEW.RAR'.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    WA_MAIL_PACK-TRANSF_BIN = 'X'.
    WA_MAIL_PACK-HEAD_START = 1.
    WA_MAIL_PACK-HEAD_NUM = 1.
    WA_MAIL_PACK-BODY_START = 1.
    WA_MAIL_PACK-BODY_NUM = TAB_LINES.
    WA_MAIL_PACK-DOC_TYPE = 'XLS'.
    WA_MAIL_PACK-OBJ_NAME = 'C:\Documents and Settings\rmalhotra\Desktop\a1.xls'.
    WA_MAIL_PACK-OBJ_DESCR = 'ORDERS'.
    *WA_MAIL_PACK-DOC_SIZE = TAB_LINES * 128.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    DESCRIBE TABLE gv_objbin LINES tab_lines.
    WA_MAIL_PACK-transf_bin = 'X'.
    WA_MAIL_PACK-head_start = 1.
    WA_MAIL_PACK-head_num = 1.
    WA_MAIL_PACK-body_start = 1.
    WA_MAIL_PACK-body_num = tab_lines.
    WA_MAIL_PACK-doc_type = 'PDF'.
    WA_MAIL_PACK-obj_name = 'C:\Documents and Settings\rmalhotra\Desktop\RAGHAV_SMARTFORM.pdf'.
    *WA_MAIL_PACK-doc_size = tab_lines * 255.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    WA_MAIL_PACK-transf_bin = 'X'.
    WA_MAIL_PACK-head_start = 1.
    WA_MAIL_PACK-head_num = 1.
    WA_MAIL_PACK-body_start = 1.
    WA_MAIL_PACK-body_num = tab_lines.
    WA_MAIL_PACK-doc_type = 'TXT'.
    WA_MAIL_PACK-obj_name = 'C:\Documents and Settings\rmalhotra\Desktop\VOTES.TXT'.
    *WA_MAIL_PACK-doc_size = tab_lines * 255.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    WA_MAIL_PACK-transf_bin = 'X'.
    WA_MAIL_PACK-head_start = 1.
    WA_MAIL_PACK-head_num = 1.
    WA_MAIL_PACK-body_start = 1.
    WA_MAIL_PACK-body_num = tab_lines.
    WA_MAIL_PACK-doc_type = 'DOC'.
    WA_MAIL_PACK-obj_name = 'C:\Documents and Settings\rmalhotra\Desktop\TS-MRO-47- Warranty Claim Creation v1.0.doc'.
    *WA_MAIL_PACK-doc_size = tab_lines * 255.
    APPEND WA_MAIL_PACK TO T_MAIL_PACK.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        DOCUMENT_DATA                    = MAIL_HEAD
      PUT_IN_OUTBOX                    = ' '
       COMMIT_WORK                      = 'X'
    IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
      TABLES
        PACKING_LIST                     = T_MAIL_PACK
      OBJECT_HEADER                    =
      CONTENTS_BIN                     =
       CONTENTS_TXT                     = T_MAILTXT
      CONTENTS_HEX                     =
      OBJECT_PARA                      =
      OBJECT_PARB                      =
        RECEIVERS                        = T_MAIL_REC
    EXCEPTIONS
       TOO_MANY_RECEIVERS               = 1
       DOCUMENT_NOT_SENT                = 2
       DOCUMENT_TYPE_NOT_EXIST          = 3
       OPERATION_NO_AUTHORIZATION       = 4
       PARAMETER_ERROR                  = 5
       X_ERROR                          = 6
       ENQUEUE_ERROR                    = 7
       OTHERS                           = 8
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    SUBMIT RSCONN01.
    Regards
    Raghav Malhotra

  • Information Broadcaster- Fales to send ZIP files reports.

    Hi everybody,
    I schedualed a total of 60 daily sales reports to be sent as ZIP files to varius addresses. the problem is that every day a few of them (1-8) are received but without the ZIP file report and attached to the mail is a txt file with the following message:
    "Symantec Mail Security replaced ZSD_SALES_WS_DR_CAP_TM_VERSION.ZIP with this text message.  The original file was unscannable and was quarantined.
    ID:NODE02::SYQ7d88c154   "
    i don't what is the reason does anybody have a clue?!?!?

    I'm not suggesting there is anything wrong with the files. Symantec is examing the files and based on it's various examinations of the file, is indicating it can not/will not pass them along.  Again - this seems like an issue to pursue with whoever administers your email scanning software.  Don't believe this is a BW issue.
    Perhaps they can configure Symantec not to scan e-mail attachments from the BW server

  • Sending Zipped Files Across Sockets

    Hi,
    In my application, I have to send files across sockets. It's already being done, but I wanted to improve performance.
    Currently, we read in the File and send it across however many bytes at a time.
    Using java's zip utilities does anyone know of an example or have any ideas about reading the bytes in, compressing them, and then sending them across?
    thanks for any help in advance,
    Geoff

    Here's the server-side code which corresponds to the code I got from you for ClientSide (it has been tweaked to try to get rid of the error).
    forgive the lack of indentation (error to follow code)
    import java.io.*;
    import java.net.*;
    import java.util.zip.*;
    public class ReceiveData
    public static void main(String[] args)
    System.out.println("Receive Data");
    try
    ServerSocket serverSock = new ServerSocket(1400);
    Socket sock = null;
    while(true)
    System.out.println("before accept");
    sock=serverSock.accept();
    System.out.println("after accept");
    FileOutputStream fileOut = new FileOutputStream("d:\\javatests\\CompressTest\\test2.txt");
    byte[] buffer = new byte[4092];
    DataInputStream is = new DataInputStream(new GZIPInputStream(sock.getInputStream()));
    int totalBytes = 0;
    int bytesRead = is.read(buffer);
    totalBytes += bytesRead;
    while(bytesRead !=-1)
    System.out.println("inside loop");
         fileOut.write(buffer, 0, bytesRead);
         bytesRead = is.read(buffer);
         totalBytes += bytesRead;
    fileOut.flush();
    fileOut.close();
    is.close();
    System.out.println("totalBytes: " + totalBytes);
    catch(Exception e)
    e.printStackTrace();
    produces this error:
    java.net.SocketException: Connection reset
         at java.net.SocketInputStream.read(SocketInputStream.java:168)
         at java.util.zip.InflaterInputStream.fill(InflaterInputStream.java:213)
         at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:134)
         at java.util.zip.GZIPInputStream.read(GZIPInputStream.java:87)
         at java.io.DataInputStream.read(DataInputStream.java:113)
         at ReceiveData.main(ReceiveData.java:45)
    and line 45 corresponds to the following line:
    int bytesRead = is.read(buffer); (the one before the while loop)
    thanks again to all,
    Geoff
    }

  • Suddenly unable to send a Zip file

    Hi there
    I am having a problem sending zip files. It has been working fine before but recently it has not been posible. I always send to the same person, who has been receiving without problems before. The zipped file is 5,2 mb and generated in windows via WMWare Fusion 5. I have no problems if I use Gmail, but in Macmail it is not working.
    Any good ideas?

    So what is happening is the mail app can't connect to the gmail smtp server to send the email. This seems to be a fairly common problem with the built in mail program. One minute it works, can send emails, the next it can't find the smtp server for various email providers like gmail or yahoo or suggests the password is incorrect even though you haven't changed anything.
    From what I read on these forums about the only way to correct this is to complete remove the account for the mail program then recreate it. Make sure you remove all smtp entries for that account also.
    Maybe you should try a different email program that doesn't have these constant glitches that pop up from nowhere.

  • Error while posting .ZIP file

    Hi All,
    I am working on file to file scenario.. I want to post .zip file from source to target. I am not using any mapping for this... I m using the Integrated configuration for theis scenario.. We are using sFTP advantco adapter for both sender and receiver.
    I am able to post the .zip file with size 50KB only.
    If i send .zip file with more than 50KB size, sender channel picked the file but i am getting the below error in the receiver communication channel.
    Error: Cannot write content to remote file XXXX: Possible causes: SFTP connection is broken or remote file/directory is in use: java.lang.ArrayIndexOutOfBoundsException:  (Software version: 3.0.17)
    How to transfer .zip files with more than 50KB size.
    Thanks,
    Soumya.

    Hi Soumya,
    I see no reason to use sFTP or  advantco for this.
    you can config this scenario using PI regular File adapter, and PI regular File to File scenario.
    in your case you just create an empty DT without fields in Repository, you need to create interfaces (OB,IB) for the Configuration
    this works for me in many scenarios.

  • Zip files of TBIT44

    Hi All
    can anybody can send zip files of TBIT44.
    my mail id is: [email protected]
    thanks
    N.P.BABU

    Hi Prasad Babu,
    TBIT44 is SAP's Traning class and is offered at SAP's training facilities worldwide.
    The Training material in part or full is SAP's property and is not meant for distribution.
    Rgds,
    Sam Raju

  • 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)

  • Sending Downsized Images to Zip File Problems

    I use Adobe Elements 5.0 and have been uploading images to the organizer for a couple of years without problems, until just recently.  Here is how the process used to work.  When images are uploaded they are saved to a new file folder under C drive/ Public Photos/ specific folder with date and subject matter;  I fix the images in adobe then go to the specific folder and create a subfolder within that folder called "downsized".  I then use Adobe to "process multiple files" and downsize for purposes of sending to Pbase. Once the files have been downsized the images end up in the specifc folder, inside the downsized subfolder.  I then rt click and select "send to" 'compressed (zip) folder'.  From there I would open Pbase and upload the zipped folder to a new gallery.
    Recently everything has been fine until I get to the send to zip folder.  Instead of sending to the familiar yellow zip folder it is being sent to the adobe photoshop editor in the form of the adobe icon.  I click on that and it promts me for filename, width, height, resolution and color mode.  I am unable to upload this zipped file version to Pbase.  Previously, when things were operating correctly, I would have a folder, with a subfolder under that called downsized.  Within the downsized folder would be the zipped file for sending to Pbase.  Something has happened recently so that I am ending up with a folder, a subfolder called downsized a sub 'folder' under that which is the adobe elements icon and a downsized file under that which is a copy of the downzied photos in the first downsized file.  In checking out all of my 100 or so folders all of them have been 'converted" to the same organization pattern.  What has happened and how do I fix the problem so that I can send the downsized folder to a zip file for importing to Pbase?  Thank you. 

    You should realize I am just making wild guesses at your problem. And I am assuming you actually have a Microsoft Word document that you are sending. If you do, then following menu options "Insert, Picture, From File..." should work. But if you are just writing out HTML and telling the browser it's actually a Word document, I have no idea.

  • File Adapter to read Zip file and send it as input to another webservice

    Hi,
    I have the below requirement:
    1. A service will generate 3 attachments and place it in a particular directory.
    2. SOA service has to pick those 3 files and send those files as input to another custom application which will email.
    Design :
    1. First SOA will create an archive file of those 3 attachements and then file adapter will poll for that zip file in that location and send that file as a whole to the custom application.
    Query:
    Now my question, is the above design feasible? If so, how to configure the file adapter to pass the file as input to that custom application?
    Kindly do the needful
    Thanks,
    Priya

    You can accomplish this via java embedding activity...Create a java embedding, which will create a zip file.. this java code is easy to implement..
    You can also do away with un-necessary polling file adapter.. and you can use "Synchronous File Read" operation of File Adapter.. For Sync Read, you'll have to pass the zip file name, which you can easily fetch from java embedding activity..
    Let me know, if this doesn't work.

  • How do I create and send a zip file? I have Lion and I'm working in Word for mac

    To show you how little I know about any of this, I don't even know if this is the correct forum in which to ask this question. I'm a copywriter. I have a client in France. I have 15 word documents, 15 of the same documents in PDFs and a small Excel document to send him. Simple, mutlipage Word docs. Short two-page Excell sheet. I want to create a zip file for them to send to him. Can I do it? How? I have unzipped zip files other people have sent to me, but I've never created or sent one myself. I'm working in Word for Mac 2011. I have Lion. I'm using Mac's email. Please don't assume I know anything. I need very, very simple, play by play instructions. You are all very helpful, so I have high hopes.
    Nancy

    Visit:
    http://download.cnet.com/MacZip/3000-2250_4-10025248.html
    You will be able to both zip and unzip. If the recipient of your zipped file does not have zip, he/she will need to get it, or you could send him/her the above address so that he/she can unzip his/her file.
    (I wish the English language could settle on the use of something less clumsy that he/she him/her etc.)
    BTW, I think that you can zip only folders, not separate files, so put even one file into a folder before zipping).
    Message was edited by: SteveKir Added BTW

Maybe you are looking for

  • IPhoto Has Thousands of References to Photos on an Old Server

    My wife and I have been using Apple products forever. When iPhoto came out, we started importing all our printed photos. In the beginning, we put all these photos on my computer to act as a server, and somehow (this was maybe 10 years ago) we got the

  • Alternative for Hierarchical Queries

    Hi all, Is there any other way to implement the Hierachical Query in Oracle. Let us assume the following example of the Scott.emp Table. The output of the table must be in a Hierarchical manner as follows : ORG_CHART EMPNO MGR JOB KING 7839 PRESIDENT

  • Parsing to XML

    Hello everybody. I'm trying to make an XMLDocument from a String with the next context I have read from a file: <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE ReporteHoras SYSTEM "ReporteHoras.dtd"><ReporteHoras><Persona nombre="Daniel"><Fecha dia="

  • Inserting numbers with ','

    Hello people I'm trying to update using execute immediate. but when I do the update, I got ORA-01747 and I know why: My values are with ',' like 13,2345 then I get the string to update (DBMS OUTPUT): UPDATE TF_MEDIA_PPM SET DW_LAST_UPD = SYSDATE , ME

  • Do i need to upgrade from OS X 10.5.8 to a new version to be allowed to be able to use the print function of Iphoto 08 ?

    Do i need to upgrade from OS X 10.5.8 to a new version to be allowed to be able to use the print function of Iphoto 08 ?