Email Spreadsheet format error

Hi,
i tried to send a spreadsheet creating on my ipad2 but when i choose the format of the attachement as excel it begin the convertion but just after it stops and a popup message shows: "An error occurred while creating the attachment".
It's strange because it happens only to 1 file.
Does anyone has suggestion?
Thanks so much
Filippo

You are asking about Numbers for iOS in a forum dedicated to Numbers for OSX.
Maybe you inserted an illegal character like a slash in the file name.
Yvan KOENIG (VALLAURIS, France) jeudi 9 février 2012
iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k
For iWork's applications dedicated to iOS, go to :
https://discussions.apple.com/community/app_store/iwork_for_ios

Similar Messages

  • Android email app formatting errors

    Some emails viewed by the standard Android email app don't format corrrectly.  However the formatting is correct if I use the Gmail app instead.
    Below are two screenshots of the same email. The first using the standard email app has errors - some HTML has not been rendered correctly. The second using the Gmail app is fine.
    Am using the latest KitKat.
    Any suggestions about how to fix this?
    Standard app
    Gmail app

    Unfortunately that failed to work.   Its only a very small number of emails that are affected - from certain senders.  So the ones from Banana Republic (for example), always seem to go wrong on this email app. They work OK on the Gmail app, on Windows Live Mail on my computer, and on our IPad.
    I now realise this app is a Sony specific app and not a general Android app.   I believe there is a minor bug that fails you correctly handle certain HTML sequences. I suspect it has probaly not been kept up-to-date with all the HTML protocols.
    Could you report it to the Sony developers.
    Many thanks.

  • Email Attachment Format Error

    hi frn's ,
       i  am sending an email with text attachment ....but not getting in desired format  in text attachment....
    please help
    Itab value:
    abcdefdfldjfñlkdsjfñldsjfdsñljñla
    fdsljfñldskjfldsñkjfñldsjfñldsajñld
    vcxusfcxusfcusafcxusafcusafcdsauc
    Actual result currently coming in text file:
    abcdefdfldjfñlkdsjfñldsjfdsñljñlafdsljfñldskjfldsñkjfñldsjfñldsajñldvcxusfcxusfcusafcxusafcusafcdsauc
    Desired format should  be
    abcdefdfldjfñlkdsjfñldsjfdsñljñla
    fdsljfñldskjfldsñkjfñldsjfñldsajñld
    vcxusfcxusfcusafcxusafcusafcdsauc
    Thanks and Regards
    Priyank

    i give some coding below
    DATA:   it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                      WITH HEADER LINE.
    data :con_tab  TYPE c VALUE cl_abap_char_utilities=>horizontal_tab ,
           con_cret TYPE c VALUE cl_abap_char_utilities=>cr_lf.
    LOOP AT i_mail_sent.
        CONCATENATE
             i_mail_sent-prueflos
             i_mail_sent-lifnr
             i_mail_sent-werk
             i_mail_sent-lagortchrg
             i_mail_sent-matnr
             i_mail_sent-ebeln
             i_mail_sent-ebelp
             i_mail_sent-mblnr
             i_mail_sent-losmenge
             i_mail_sent-mengeneinh
             i_mail_sent-vname
             i_mail_sent-vdatum
             i_mail_sent-dec INTO  it_attach   SEPARATED BY  con_tab
        CONCATENATE con_cret it_attach  INTO it_attach.
        APPEND it_attach.
        CLEAR : it_attach.
      ENDLOOP.
    FORM sendmail  TABLES   p_it_message
                            p_it_attach
                   USING    p_mtitle
                            p_format
                            p_filename
                            p_attdescription
                            p_sender_address
                            p_sender_addres_type.
      REFRESH : docdata,docdata[].
      docdata-doc_size = 1.
      docdata-obj_langu = sy-langu.
      docdata-obj_name  = 'SAPRPT'.
      docdata-obj_descr = p_mtitle.
      docdata-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR docdata.
      READ TABLE it_attach INDEX tab_lines.
      docdata-doc_size =
         ( tab_lines - 1 ) * 255 + STRLEN( it_attach ).
      docdata-obj_langu  = sy-langu.
      docdata-obj_name   = 'SAPRPT'.
      docdata-obj_descr  =  p_mtitle.
    'Pending Call List.xls Format'.
      docdata-sensitivty = 'F'.
      t_attachment[] = p_it_attach[].
      REFRESH  : objpack,objpack[].
      CLEAR objpack.
      REFRESH objpack.
      objpack-transf_bin = space.
      objpack-head_start = 1.
      objpack-head_num = 0.
      objpack-body_start = 1.
      DESCRIBE TABLE it_message LINES objpack-body_num.
      objpack-doc_type = 'RAW'.
      APPEND objpack.
      objpack-transf_bin = 'X'.
      objpack-head_start = 1.
      objpack-head_num   = 1.
      objpack-body_start = 1.
      DESCRIBE TABLE t_attachment LINES objpack-body_num.
      objpack-doc_type   =  p_format." 'XLS'. "ld_format.
      objpack-obj_descr  =  'Lot Details.'.
    objpack-obj_descr  =  p_attdescription. "'Pending Call List.'.
      "ld_attdescription.
      objpack-obj_name   =  'Lot Details' ."  p_filename.
      "'filename'."ld_attfilename.
      objpack-doc_size   =  objpack-body_num * 255.
      APPEND objpack.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                    = docdata
         put_in_outbox                    = 'X'
         commit_work                      = 'X'
    IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
        TABLES
          packing_list                     = objpack
      OBJECT_HEADER                    =
         contents_bin                     = t_attachment
         contents_txt                     =  it_message
      CONTENTS_HEX                     =
      OBJECT_PARA                      =
      OBJECT_PARB                      =
          receivers                        = reclist
    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.
      ELSE.
        MESSAGE ' Records Successfully Send' TYPE 'I'.
      ENDIF.

  • Formatting error in email attachment

    Hi experts,
    I have encountered a problem regarding formatting errors of the attached file.
    the attached error file contains
    [ S y s t e m ]
    N a m e = I D E
    D e s c r i p t i o n = I D E S   M a n i l a
    C l i e n t = 2 5 1
    [ U s e r ]
    N a m e =
    [ F u n c t i o n ]
    T i t l e = A B A P   r u n t i m e   e r r o r s
    C o m m a n d = S T 2 2
    but in the contents_bin table
    [System]
    Name=IDE
    Description=IDES Manila
    Client=251
    [User]
    Name=
    [Function]
    Title=ABAP runtime errors
    Command=ST22
    as you can see there were no spaces between the letters in the table but in the output there are spaces have been generated.
    Please help me with this problem. i need no generate a file the same as what i placed in the table..
    points will be rewarded if successful
    Edited by: Durairaj Athavan Raja on Jun 22, 2008 10:07 AM

    do not post duplicate threads. i have deleted the other one. and
    points will be rewarded if successful
    the SDN angels dont answer just for points. if you find a answer userful, its your duty to award points to say thanks. dont use that as a mean to woo users.
    Regards
    Raja

  • Trying to convert a pdf to a word doc using Acrobat XI Pro. I am getting formatting errors and scrambled text, especially right below headings. Not all headings affected, just some, but all the same paragraph tag. Any ideas?

    I am trying to convert a pdf  to a word doc. The pdf was created in Framemaker. I am using Acrobat XI Pro and getting formatting errors and scrambled (or missing) text, especially below a heading. Any fixes?

    Hi pakbecker,
    Please try updating to Acrobat 11.0.7 and check.
    In case you still face issues,  i would like to have a look at th doucment.
    Send me an email at [email protected]
    Regards,
    Rave

  • Network message format error on Site Studio Designer

    Hi all,
    I am facing a very wierd issue in Site Studio. I have enabled accounts on the content server. When i use the content server User interface, i can check in any content using the standard check in form with or without specifying the account for it. In the case of Site Studio Designer, when i try to create a new asset/ content( basically check in anything) , it checks in the content successfully when the account metadata field is left blank. If the account field is specified, it gives me an error sayin :
    Failed to check in file from location "".
    (Network message format error).
    When i checked the content server logs, it says:
    The request was not processed by the Service handler because of a protocol error.
    The request headers parsed from the request are:
    {HTTP_USER_AGENT=Site Studio Designer, REQUEST_METHOD=POST, IdcAuthChallengeType=http, SERVER_NAME=punitp97194d.ad.infosys.com, SERVER_SOFTWARE=Apache/2.2.2 (Win32), HTTP_CGIPATHROOT=/idc/idcplg, HTTP_HOST=punitp97194d.ad.infosys.com, GATEWAY_INTERFACE=CGI/1.1, REMOTE_ADDR=10.76.135.190, SERVER_PROTOCOL=HTTP/1.1, SERVER_PROTOCOL_TYPE=NONE, IDC_REQUEST_AGENT=webserver, REMOTE_HOST=10.76.135.190, HTTP_CONNECTION=Keep-Alive, SERVER_PORT=80, HTTP_COOKIE=viscnt=3; IntradocLoginState=1; IdcTimeZone=Asia/Calcutta; IdcLocale=English-US; IntradocAuth=Internet, CONTENT_TYPE=text/hda, CONTENT_LENGTH=617, IDC_REQUEST_CTIME=1250602911, HTTP_INTERNETUSER=eBiz_Designer, SCRIPT_NAME=/idc/idcplg, PATH_TRANSLATED=D:/oracle/ucm/server/weblayout/idcplg}
    Network message format error. Unable to parse browser environment or content item. Unable to parse properties. Name-value pairs are missing an '='. Unable to parse properties. Name-value pairs are missing an '='. [ Details ]
    An error has occurred. The stack trace below shows more information.
    !$The request was not processed by the Service handler because of a protocol error.<br>The request headers parsed from the request are:<br>{HTTP_USER_AGENT=Site Studio Designer\, REQUEST_METHOD=POST\, IdcAuthChallengeType=http\, SERVER_NAME=punitp97194d.ad.infosys.com\, SERVER_SOFTWARE=Apache/2.2.2 (Win32)\, HTTP_CGIPATHROOT=/idc/idcplg\, HTTP_HOST=punitp97194d.ad.infosys.com\, GATEWAY_INTERFACE=CGI/1.1\, REMOTE_ADDR=10.76.135.190\, SERVER_PROTOCOL=HTTP/1.1\, SERVER_PROTOCOL_TYPE=NONE\, IDC_REQUEST_AGENT=webserver\, REMOTE_HOST=10.76.135.190\, HTTP_CONNECTION=Keep-Alive\, SERVER_PORT=80\, HTTP_COOKIE=viscnt=3; IntradocLoginState=1; IdcTimeZone=Asia/Calcutta; IdcLocale=English-US; IntradocAuth=Internet\, CONTENT_TYPE=text/hda\, CONTENT_LENGTH=617\, IDC_REQUEST_CTIME=1250602911\, HTTP_INTERNETUSER=eBiz_Designer\, SCRIPT_NAME=/idc/idcplg\, PATH_TRANSLATED=D:/oracle/ucm/server/weblayout/idcplg}<br>--------------<br>Network message format error.!csUnableToParseBrowserEnvironment!syUnableToParsePairs!syUnableToParsePairs
    intradoc.data.DataException: !csUnableToParseBrowserEnvironment!syUnableToParsePairs
         at intradoc.server.IdcServerThread.run(IdcServerThread.java:187)
    Caused by: java.io.IOException: !syUnableToParsePairs
         at intradoc.serialize.DataBinderSerializer.readProperties(DataBinderSerializer.java:625)
         at intradoc.serialize.DataBinderSerializer.parseProperties(DataBinderSerializer.java:601)
         at intradoc.serialize.DataBinderSerializer.parseReaderData(DataBinderSerializer.java:493)
         at intradoc.serialize.DataBinderSerializer.parsePost(DataBinderSerializer.java:1806)
         at intradoc.serialize.DataBinderSerializer.parseRequestBody(DataBinderSerializer.java:1065)
         at intradoc.data.DataSerializeUtils.parseRequestBody(DataSerializeUtils.java:112)
         at intradoc.server.ServiceManager.init(ServiceManager.java:128)
         at intradoc.server.IdcServerThread.run(IdcServerThread.java:167)
    Please advice.
    Thanks in advance,
    Nithya

    The config .cfg entries are:
    <?cfg jcharset="UTF8"?>
    #Content Server System Properties
    IDC_Name=EBIZ
    IdcProductName=idccs
    SystemLocale=English-US
    InstanceMenuLabel=EBIZ
    InstanceDescription=STAGING SERVER
    SocketHostAddressSecurityFilter=*.*.*.*
    #Database Variables
    IsJdbc=true
    JdbcDriver=oracle.jdbc.OracleDriver
    JdbcConnectionString=jdbc:oracle:thin:@localhost:1521:EBIZ
    JdbcUser=EBIZ_admin
    JdbcPassword=ZS5CtJYdpcn2mEVqKVQAZ7LKQqacsT+XLnX3PZ/EKqo=
    JdbcPasswordEncoding=Intradoc
    DatabasePreserveCase=true
    #Internet Variables
    HttpServerAddress=punitp52975d.ad.infosys.com
    MailServer=192.168.170.26
    SysAdminAddress=[email protected]
    HttpRelativeWebRoot=/idc/
    CgiFileName=idcplg
    UseSSL=
    WebProxyAdminServer=true
    #General Option Variables
    IsOverrideFormat=false
    DownloadApplet=false
    MultiUpload=false
    IsAutoNumber=true
    EnableDocumentHighlight=false
    EnterpriseSearchAsDefault=false
    IsJspServerEnabled=false
    JspEnabledGroups=
    #Additional Variables
    UseAccounts=True
    IdcAdminServerPort=4440
    SearchIndexerEngineName=DATABASE.FULLTEXT
    IntradocServerPort=4444
    DatabaseType=oracle
    WebServer=apache
    and httpd.conf entries are:
    LoadModule IdcApacheAuth C:/Oracle/ucm/server/shared/os/win32/lib/IdcApache22Auth.dll
    IdcUserDB EBIZ "C:/Oracle/ucm/server/data/users/userdb.txt"
    <Location /idc>
    Order allow,deny
    Allow from all
    DirectoryIndex portal.htm
    IdcSecurity EBIZ
    </Location>
    <Location "/">
    IdcSecurity EBIZ
    </Location>
    EBIZ is our content server instance name.
    Thanks and Regards,
    Nithya

  • What's with the occasional "Unsupported image format" errors?

    I get this error randomly -- suddenly Aperture can't show me anything but a brief flash of the image, and then I get the maroon screen "Unsupported image format" error. Restarting Aperture returns things to normal. I've seen this in both version 1.5.6 and 2.
    I can count on this occurring about every hour or so. This is quite frustrating. I use CR2 files almost exclusively, written from a Canon 5D.
    Any ideas or workarounds for this behavior?

    I was getting this all the time with 1.5, I have not seen it yet with 2. I think it's a memory thing, it happens more quickly if I am running Safari and other stuff. Sometimes quitting Aperture then starting again does the trick, more often shutting the machine down and rebooting clears it. I also have some very large tiff's in the library, Aperture can't (I've not tried it in 2 yet) cope with them, always the unsupported error message. These files are between 300mb to 1gig, sometimes it justs hangs on to the 300mb but mostly not. By the end of the day it was a real problem, I could only export images 2-3 at a time, if I tried to email 10 low res I would get either an out of memory warning or unsupported etc.
    Something holds onto the memory somewhere either in Ap or Safari or all things running.
    Kevin.

  • INVALID END HEADER FORMAT error

    I have just installed the Oracle 9i database on windows NT server, but the
    Oracle Database Configuration Assistant returns INVALID END HEADER FORMAT error, eachtime i attempt to create a new database.
    Oracle 9i software is installed, but no database was created. How can i solve this problem?
    or how can i create the database manaully?
    kayode,
    [email protected]

    Hi,
    If you don't have a database error (ORA-), then you're probably hitting some sort of DBCA bug. I'd use the DBCA to generate scripts and then run the scripts manually to see if you can create a database that way.
    http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci1054696,00.html
    Are you able to create scripts through DBCA if yes then you can create your database with help of scripts.
    go through below link for manually database creation ( it is also some working in Oracle 9i. After scripts creation. Script creation is different then oracle 10g.)
    http://dbataj.blogspot.com/search/label/Database%20Creation
    if not then you hit bug ( according to above mention link) raise a iTAR.
    regards
    Taj

  • I've purchased numerous books through itunes and now I'm unable to open ibooks; I get a "book format error, delete and redownload" which I've done numerous times with negative results.

    I've purchased numerous books through the itunes store in which I was able to read.  Now I'm unable to open some of the ibooks that I've purchased, I get an error message...book formate error, delete and redownload, which I've done numerous times with negative results.  What are my options?

    within the receipt that Apple sent to you via email is a Report a Problem link. use that link to report your issue.
    also you could try a basic reset and see if that resolves your issue. hold down the Lock button & Home button at the same time for ~15 seconds, the iPad should then perform a reset.

  • Mailman - bounced "data format error" - Mailbox does not exist

    Hi gurus,
    All my mailing lists works great, except one of then...
    Its said: a lot of messages like this, several times:
    Mar 6 07:08:33 rossellimac postfix/pipe[2931]: 3F55D15F892: to=<[email protected]>, orig_to=<[email protected]>, relay=cyrus, delay=0.11, delays=0.04/0/0/0.07, dsn=5.6.0, status=bounced (data format error. Command output: alejandro: Mailbox does not exist )
    Also this error:
    3/6/09 8:18:20 AM lmtpunix[4844] AOD: user opts: get attributes for user: alejandro failed with error: -14479
    3/6/09 8:18:20 AM lmtpunix[4844] warning: unable to post message for user: alejandro, mail is not enabled for this user
    The computers halt for a minute... when I send an email to this list (general@) where "alejandro is a user"
    Please, some advice... I surf the web... and not always produce error...
    Thanks in advance.
    Message was edited by: alopezruiz

    ok

  • My apple id is not working on icloud because it is not in email address format.   how can i change my apple id to email format so icloud can work?

    Hello - I just purchased an iPhone 4s and would like to use iCloud but my apple id is not in email address format so when i try to sign into iCloud it won't let me use my apple id.  i tried to change my apple id through my account settings but could not find a way to do that.  i found ways to change everything else in my settings but when i pushed on the edit button to change my apple id the page didn't change.  Not sure how i can get to use iCloud?  Please help.

    You change the name of your ID at https://appleid.apple.com.  See http://support.apple.com/kb/HE40.

  • Issue while downloading the alv report output in spreadsheet format .

    Hi,
    I have a report output, whenever I try to download it in the spreadsheet format to my desktop,
    I get the following issue:
    Say the correct material number is 10833340001218999 or 10030000063207001
    (This appears in the report output)
    But in the excel file the number is displayed as 10833340001218900 and 10030000063207000.
    Please help.
    Regards,
    Sucharita.

    Hi Sucharita,
    The reason for your problem could be that in excel 2007, characters more that 15 are replaced with 0.
    Or you can try downloading the data using FM 'GUI_DOWNLOAD' , if currently you are using stadard SAP functionality of data downloading.
    Best Regards,
    Vishal.

  • TS3276 Can't open web addresses from an email-get an ERROR message saying-no application could be found

    Can't open web addresses from an email-get an ERROR message saying-no application could be found

    Hi, I had the same problem. I finally figured it out. Plug in the USB cord to your ipad, but beofre plugging it into your computer make sure your ipad is not in the locked or sleep mode. Once I did this, my photos showed up and started downloading. Hope that helps you!

  • I'm wondering if there is any way to view the results of the form other than in a spreadsheet?  Is it possible to print responses one by one in PDF format, or word, etc?  I'd like to create a form for proposal applications, and the spreadsheet format resu

    I'm wondering if there is any way to view the results of the form other than in a table?  Is it possible to print responses one by one in PDF format, or word, etc?  I'd like to create a form for proposal applications, and the spreadsheet format results are nearly unusable for this type of form.

    Hi Nalani500 ,
    Yes, you can print the response in a PDF by following the steps suggested below.
    1) Go to the response file
    2) Select the response you want to print
    3) Click on Save as PDF button and it would save the selected response in PDF format.
    Thanks,
    Vikrantt Singh

  • Bex Analyser : Date Format error.

    Hi All,
    We are facing date format error, while running the query in Bex analyzer.
    We have one column in report i.e Net Payment Date, so when we run the query in analyzer the single date like "5-6-2010 is getting swapped like 6-5-10 & year also showing two digits i.e instead of 2010 it shows 10" & date like "12-09-2010 is coming perfectly."
    Means the date which is in single digit we are facing this problem like 1 to 9 & the dates which are 10 & above showing perfectly.
    In RSRT the query showing proper result, so i don't think it's BI problem.
    The regional setting is DD-MM-YYYY & Date separator is '-' & we don't want to change this format.
    Is there any SAP note or any solution for this..??
    All the replays are gr8ly appreciated.
    Thanks,
    Santosh

    Hi Santosh,
    how about web display? is it ok? for me it seems more an Excel problem, so maybe you should check if there is special formatingin this.
    Regards,
    Anass

Maybe you are looking for