Loss of formatting when emailing a AW6 ASCIII Text document

Background: I have taken an .xls email file from a PC user which I was able to open with icExcel. The .xls file was set up wrong---only two columns, surname in one and all other data (street address, city, state, zip, tel., email address) in another column. I created a spreadsheet file in icExcel AWorks6 and did a lot of cutting and pasting from the original file to create a true 7 column spreadsheet. I saved it as an ASCII Text document because my intent is to email it back to the PC user.
Now the dilemma---I can take that ASCII Text document and reopen it in an AW6 spreadsheet or into a database on my computer, no problems. Everything is formatted correctly. When I email the .txt document as an attachment to myself (experimenting first before emailing it to the PC user) it opens up automatically as a word processing document with all the formatting gone. I sent it to another of my email addresses, it did not open up automatically but the attachment came across as an HTTP text unix document file. What is happening to the structure and column formatting when I email the .txt document. What am I doing wrong following putting it into ASCII Text? Help please!! CAB
Mac mini Intel/iBook G3   Mac OS X (10.4.5)   Mac OSX (10.3.5) for iBook
Mac mini Intel/iBook G3   Mac OS X (10.4.5)   Mac OSX (10.3.5) for iBook

When you save an AppleWorks spreadsheet as text, you get a tab delimited file.
Data in each cell is followed by a tab character, and a return character separates the rows of data.
Your text file, opened into an AppleWorks WP document, should retain the tab characters, but will not display properly unless you have set tab stops in the ruler. AppleWorks defaults to a tab stop every half inch, and a tab character will push text to the next available stop. Variable length of data will cause data that should line up in the same column to be offset.
You can check for the presence of tabs (and other invisible characters) by pressing command-; (semi colon). Pressing the same keys again toggles the display off.
Try launching AppleWorks then specifying Spreadsheet as the document type when you open it using AW's Open dialogue (File > Open).
If you are successful, then the file should be openable by the PC user, using Excel. Three other notes: Be sure you check the Send Windows friendly attachments box in Mail when attaching the file. Be sure you add the .txt extension to the file name AppleWorks does not automatically add it). Tell the Windows user that the file is a tab delimited text file.
Regards,
Barry

Similar Messages

  • Why reports uses the .eps format when emailing a report?

    Hi
    If you select to send a report by email, it automatically
    chooses the .eps format to send the report as an attachment.
    I know it stands for "encapsulated post script" (I think...),
    but is there a way to send in PDF format for example?
    Till now, the user has to generate the report in PDF format
    and then, manually, create an email and attach such file.
    And what program opens such type of file (eps)?
    Thanks
    Luis Cabral

    The .eps format is a postscript format type used to send directly to the printer. I really don't know why this format is good but ...
    A way to send an e-mail attachment in HTML, PDF or RTF format, is setting the parameters DESTYPE and DESFORMAT, but this way enforces you to create another way to trigger the e-mail cause the button e-mail in Oracle Reports uses .eps by default.
    I suggest you to create a parameter form with the format option and trigger the reports by RUN_PRODUCT built-in. If you don't need to preview the report, set the properties in the parameter form and trigger the report normally.
    DESTYPE=MAIL
    DESFORMAT=PDF or DESFORMAT=HTML or DESFORMAT=RTF

  • Lossing page format when uploading to server

    Interesting problem - flash site works fine locally, wether I
    play the swf file or open the html page that calls the swf file
    into the browser. Upload the site and all associated files, loose
    the page format on all pages, headings are lost and files will not
    load. The site uses as2 code and I have been publishing as that
    from cs3. Not sure how to correct this problem, any ideas would be
    helpful.

    Rob,
    Thanks for reviewing my site. I had intended to post a
    comment last night but forgot due to the caos at home. I found the
    problem with the pics and loading. I had a typo in the xml file,
    the file extensions were capitalized, which ment the as was not
    finding the pic files. Lesson learned! It took me forever to find
    this!

  • Loss of formatting when exporting to EPUB

    Hi All,
    I am working on a premium ebook with audio files and graphics. There are 32 chapters plus Intro, and each has an associated mp3. File size is 132 MB without pictures. Everything is fine until I start to add pictures; after adding several pictures, the exported EPUB loses the Centered attribute on random paragraphs, and some of the pictures start to disappear, although everything looks fine in the Pages file itself. Exporting PDF is fine. I'm going to try reducing the file sizes of the pictures; any other suggestions from the user community?

    David Bruce Hughes wrote:
    Thanks for your replies. Upon further investigation, actually Pages is producing good code and it displays properly in various ebook readers, but not under iOS. *So this is not a Pages issue at all.*
    Good to hear!!

  • Error when emailing XML document

    Hi there
    I am trying to email an XML document to an external vendor by using the CL_DOCUMENT_BCS class.  The email is sent successfully and I receive it in the relevant mailbox.  To make it an XML document, I move 'XML' to the I_TYPE parameter of the class.  This sends it perfectly as an XML document.
    The problem occurs when I receive the email and open the attachment.  When I open the attachment, I get the error "Whitespace is not allowed at this location".  To rectify this problem, I open the XML attachment in notepad, concatenate these lines by deleting the return characters and I save the file and open it again.  It then displays perfectly.
    When I send the email as a normal text document and I change the extension manually to 'XML', the XML can be viewed perfectly. 
    Can anyone assist in rectifying this so that there is no manual intervention?
    Kind Regards
    Gustav Coleske

    Raja
    The code is as follows:
    FORM send_data_via_email .
      DATA:   new_object_id LIKE sofolenti1-object_id,
              l_idx         LIKE sy-tabix.
    All activities done via facade CL_BCS!
      DATA: send_request              TYPE REF TO cl_bcs.
      DATA: text                      TYPE bcsy_text.
      DATA: document                  TYPE REF TO cl_document_bcs.
      DATA: sender                    TYPE REF TO cl_sapuser_bcs.
      DATA: recipient                 TYPE REF TO if_recipient_bcs.
      DATA: bcs_exception             TYPE REF TO cx_bcs.
      DATA: lt_contents               TYPE TABLE OF soli.
      DATA: lt_contents2              TYPE TABLE OF solix.
      DATA: lv_subject                TYPE sood-objdes VALUE 'Rental Units'.
      DATA: lv_length                 TYPE i.
      DATA: lv_receiver_email_address TYPE adr6-smtp_addr.
      DATA: lv_string                 TYPE string.
    Select the record for email address to send to off parameter table
      SELECT SINGLE value FROM zca_partr INTO gs_real_recipients-receiver
        WHERE progid = sy-repid
        AND   id     = 'OUT_EMAIL'.
      APPEND gs_real_recipients TO gt_real_recipients.
      CLEAR gs_real_recipients.
      CLEAR new_object_id.
      gv_items_sent = 'X'.
    Send back non-delivery and delivery reports.
      LOOP AT gt_real_recipients INTO gs_real_recipients.
        gs_real_recipients-notif_del  = 'X'.
        gs_real_recipients-notif_ndel = 'X'.
        gs_real_recipients-express    = gv_express.
        MODIFY gt_real_recipients FROM gs_real_recipients.
      ENDLOOP.
      gt_contents[] = gt_xml_out[].
    Set the subject of the email
      lv_subject                   = 'Rental Units for rent'.
      gs_packing_list-mail_subject = lv_subject.
      gs_packing_list-doc_type     = 'XML'.
      TRY.
    Create persistent send request
          send_request = cl_bcs=>create_persistent( ).
    Create and set document
    Create document from internal table with lt_content
          lt_contents[] = gt_contents[].
          DESCRIBE TABLE lt_contents[] LINES lv_length.
          gs_packing_list-doc_size = lv_length * 255.
          document = cl_document_bcs=>create_document(
                          i_type     = gs_packing_list-doc_type
                          i_text     = lt_contents
                          i_length   = gs_packing_list-doc_size
                          i_subject  = lv_subject
                          i_language = sy-langu
    Set the subject for the sending of mails.
          lv_string = gs_packing_list-mail_subject.
          TRY .
              CALL METHOD send_request->set_message_subject
                EXPORTING
                  ip_subject = lv_string.
            CATCH cx_sy_dyn_call_illegal_method .
          ENDTRY.
    Add document to send request
          CALL METHOD send_request->set_document( document ).
    Do send delivery info for successful mails
          CALL METHOD send_request->set_status_attributes
            EXPORTING
              i_requested_status = 'E'
              i_status_mail      = 'A'.
    Set sender
          sender = cl_sapuser_bcs=>create( sy-uname ).
          CALL METHOD send_request->set_sender
            EXPORTING
              i_sender = sender.
    Add recipients (e-mail addresses)
          LOOP AT gt_real_recipients INTO gs_real_recipients.
    Create recipient
            lv_receiver_email_address = gs_real_recipients-receiver.
            CHECK lv_receiver_email_address IS NOT INITIAL.
            recipient = cl_cam_address_bcs=>create_internet_address(
                                              lv_receiver_email_address ).
    Add recipient with its respective attributes to send request
            CALL METHOD send_request->add_recipient
              EXPORTING
                i_recipient  = recipient
                i_express    = 'X'
                i_blind_copy = gs_real_recipients-blind_copy.
          ENDLOOP.
    Send document
          CALL METHOD send_request->send(
            EXPORTING
              i_with_error_screen = 'X'
            RECEIVING
              result              = gv_sent_to_all ).
    Exception handling
        CATCH cx_bcs INTO bcs_exception.
          WRITE: text-001 , bcs_exception->error_type.
          EXIT.
      ENDTRY.
      COMMIT WORK.
    ENDFORM.                    " send_data_via_email
    I am not using the add_attachment method as the normal document create automatically creates the attachment.  Would using this method be critical?
    Kind Regards
    Gustav

  • Newbie: What program to use for just plain ASCII text?

    I'm new to Mac and wanting to create a plain ASCII text document (not RTF or else).
    In Windows I would use NotePad. What do I use on Mac? I tried "TextEdit" but it didn;t allow me to same it as "plain text" or similar. I want absolutely no formattings in my document.
    Thanks.

    You can use TextEdit. Just select the Make Plain Text option in the Format menu.
    charlie

  • Is there a format for a file that I can use for attaching a one page document with photos embedded that will open in everyone's email automatically?   I've tried PDF and Word, but worked only in Mail.  Lost formatting when just copied and pasted in email.

    Is there a format for a file that I can use for attaching a one page document with photos embedded that will open in everyone's email automatically?   I've tried PDF and Word, but PDF worked only in Mail.  Word worked in nothing.  I also tried copying and pasting the document but lost all formatting when just copied and pasted in email.  Is there a way to do this?

    Are you sure PDF won't work? It should as what you're trying to do is pretty much what it is designed for (PDF - Portable Document Format). On a Mac anywone who receives the file should be able to see it in all its page layout glory by using the app Preview or Adobe Reader. Same on a PC, the file should be viewable as a PDF file using Adobe Reader and probably some other viewer (don't use PCs so not sure what other apps).
    What application are you creating the file in and are you sure you're exporting it correctly in PDF format, fonts and images embedded?

  • Keeping PDF form format when sending via email

    Hello, I have created a form using Adobe LiveCycle.  It contains a submit button to send the filled out form to a recipient via email.  After numerous draft attempts the form gets converted into an .XML format when it is attached to a new email message.  I want the form to stay as a PDF but LiveCycle indicates the form would need to be sent to an HTTP address.  I don't have such an address.
    Is there some way to force the form to keep its PDF format and be sent via email by the push of a button?
    (I know that you can click File--attach to Email to but I would like to avoid that method).  Thank you.

    Q: Is there some way to force the form to keep its PDF format and be sent via email by the push of a button?
    A #1: Yes, you can use the standard button, set the format to "PDF" and supply the mailto:[email protected] and it will use the client side email software to attach and send the PDF. Note: You will need to enable usage rights on the PDF to allow Adobe Reader users to submit whole PDF format. Normally Adobe Reader users are only allowed to submit the data formats, XML and XDP for LiveCycle forms, and HTML, XFDF and FDF for Acroforms.
    A #2: You can also bypass client-side email software such as OUTLOOK, if you set the submit button action to a URL of a server-side script, such as PHP or ASP.Net. The script could generate an SMTP message, and attach the submission without the use of client-side email software. By using a server-side script, the PDF submission process is almost fool proof.
    View online examples for emailing PDF form submissions with a server-side script:
    http://www.pdfemail.net/examples/

  • Error when Broadcasting PDF format to email

    Hi,
    The template is getting executed properly through WAD. Even, in portal the report is being generated correctly. The problem is when I try to broadcast PDF format to Email.
    I am receiving the following error when attempting to broadcast a query as PDF - Error: com.sap.ip.bi.base.exception.BIBaseRuntimeException.
    Please suggest me the solution.

    Hi Lavanya
    I strongly recommend you to be on latest Java patches for your SPS from the service market place.
    Also please check whether the note 1052659 - Requirements for customer messages concerning export to PDF is helpful to you.
    Especially check this portion of the note is relevant to you.
    " The following entry is in the trace:
               "Invalid Response Code: (401) Unauthorized.
               com.sap.ip.bi.base.exception.BIBaseRuntimeException com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Service call exception; nested exception is: com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: "Invalid Response Code: (401) Unauthorized. The requested URL was:"http://<your host>:<yourport>/AdobeDocumentServices/Config?style=document" at com.sap.tc.webdynpro.pdfobject.core.PDFObject.doSoapCall(PDFObject.java:405)
    See Note 934276 " Print preview in SAP NetWeaver 2004s BI does not work".
    See the "II Web Dynpro for Java" section in Note 944221."
    If not can you let me know the detailed error you are getting.
    Thank you.
    Regards
    Suresh

  • What quality loss is there when cam videos are compressed sent over email?

    What quality loss is there when sending videos taken with the iPhone 3GS over email? It seems that it's being compressed in preparation for being sent over email.

    Hi Ric,
    The Canopus ADVC-100 works fine with FCE. Here are a few tips -
    First, make sure you only connect or disconnect it from your Mac when both your Mac and the ADVC-100 are turned off. Make sure that your camera video-out is connected to the s-video port on the front of the ADVC-100. Ditto for the audio connections. Only DIP switch 2 (IRE level) should be in the ON position. Connect a FW cable from your Mac to the 6-pin FW port on the back of the ADVC-100.
    Second, once they are connected via FW, make sure the ADVC is turned on and actually in analog-in mode before you start FCE. I have often found the ADVC-100 resets this mode by itself after being turned off or idle for an extended time. (All you need to do is hit the silver button once or twice, depending on the current mode, in order to switch it into Analog-in mode.) If it is not in this mode, FCE will not detect the ADVC and will act as if there is no device connected. (Normally there is a warning message if FCE fails to find a camera or ADVC connected however if you turned off that message at some earlier time you would not see it again.)
    Third, you can use either the DV-NTSC or DV Converter easy setup in FCE. I have used both with my ADVC-100 and they both work.

  • Formatting of emails on iphone 5 not correct yet the emails look normal when viewed via my laptop.  The sentences on my iphone email continue on the next line when there is still space on the current line.

    The formatting of emails on my iphone 5 don't display properly yet they are correct when viewed via my laptop.  Using a gmail account on my iphone/laptop.  On my iphone the sentences break in unusual spots and continue on the next line.  Why is this and how can I fix this issue?

    Have you tried restarting or resetting your iPhone?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after It shuts down, press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).
    Also consider deleting and reinstalling the Mail Account in question.

  • I have used the resume tablet and put my resume into format but when emailing it, it will not open on windows. How can I change the format to where they will be able to open and view it?

    I have used the resume tablet and put my resume into format but when emailing it, it will not open on windows. How can I change the format to where they will be able to open and view it?

    I guess you mean one of the resume templates.
    What "format" have you saved your finished resume in?
    The only formats a Windows user will be able to open are .doc (Word), .pdf and rtf. The 1st 2 are usually the best.
    There is no Windows version of Pages.
    Peter

  • Report in PDF format and email it to some clients, using  Database Trigger

    Hi
    Is it possible to run a report in PDF format ad email it to some clients after a specific event through Database Trigger. For example whenever a client makes an entry into order entry table (through entry form), a trigger should execute on Orders table, this trigger should execute or generate a PDF formatted report and finally mail it to Sales team?
    I have
    ORAS 10g(10.1.2.0.2)
    utl_mail configured.

    In Reportsconfig.properties file the http port is 7778,
    now the output is like this...
    SQL> /
    * WELCOME TO EVENT-BASED-REPORTING API *
    * API-Version : 9i *
    * (C) Oracle Corporation, 2000 - 2002 *
    * Debugging turned ON **************************
    *** Length of Paramlist : 1
    OK : Parameter added : GATEWAY=http://myserver.com:7778/reports/rwservlet
    *** Length of Paramlist : 2
    OK : Parameter added : SERVER=rep_myserver_oracleas2
    *** Length of Paramlist : 3
    OK : Parameter added : REPORT=D:\Reports\emp.rdf
    *** Length of Paramlist : 4
    OK : Parameter added : USERID=abc/xyz@mydb
    *** Length of Paramlist : 5
    OK : Parameter added : DESTYPE=mail
    *** Length of Paramlist : 6
    OK : Parameter added : DESFORMAT=PDF
    *** Length of Paramlist : 7
    OK : Parameter added : [email protected]
    Starting run_report: building url
    *** Building URL (RUN_REPORT)
    OK : URL built :
    http://myserver.com:7778/reports/rwservlet?SERVER=rep_myserver_oracleas2&REPO
    RT=D%3A%CReports%5Cemp.rdf&USERID=abc%2Fxyz%40mydb&DESTYPE=mail&D
    ESFORMAT=PDF&DESNAME=khan.emran84%40gmail.com&statusformat=xml
    *** Submitting HTTP Request
    *** using URL
    :http://myserver.com:7778/reports/rwservlet?SERVER=rep_myserver_oracleas2&REP
    ORT=D%3A%5CReports%5Cemp.rdf&USERID=abc%2Fxyz%40mydb&DESTYPE=mail&
    DESFORMAT=PDF&DESNAME=khan.emran84%40gmail.com&statusformat=xml
    OK : Request submitted - Return stream : <?xml version = '1.0' encoding =
    'ISO-8859-1' standalone = 'yes'?>
    <serverQueues>
    <error code="50159"
    component="REP" message="Executed successfully but there were some errors when
    distribute the output"/>
    <
    OK : Request submitted - Length of stream : 229
    *** XML-Parsed - Following Structure discovered :
    *** Checking elements!
    serverQueues ()
    *** Checking attributes!
    error
    *** Checking attributes!
    __code = 50159
    __component = REP
    __message = Executed successfully but there were some errors when distribute the
    output
    *** Finished Parsing XML
    Getting value for element: job
    Getting value for element: error
    *** Requesting value for Attribute error.component [REP]
    Getting value for element: error
    *** Requesting value for Attribute error.code [50159]
    Getting value for element: error
    *** Requesting value for Attribute error.message [Executed successfully but    
    there were some errors when distribute the output]
    REP-50159:Executed successfully but there were some errors when distribute the
    output
    declare
    ERROR at line 1:
    ORA-20999:
    ORA-06512: at "NRSP.SRW", line 264
    ORA-06512: at "NRSP.SRW", line 799
    ORA-06512: at line 15

  • Convert the spool to xls format and email through attachment to the user

    Hi all,
    When I execute a report in background, I get spool. I need to convert the spool to xls format and email through attachment to the user.The xls file should not be saved on local system.
    If I use the Spool Recepient tab in SM37 it mails the spool list as .txt file to the mail receipient. But I need to send it as an .xls file.
    Can any one help me on this

    Did you get the solution? i have the same problem.

  • REP-0081 error when emailing report output

    I am using RUN_REPORT_OBJECT to execute a report from a form. I have the report set up as a Report object in the form. The report runs fine to screen or to file, but I am getting an error when attempting to email report in batch mode:
    REP-0081: Error during file I/O operation.
    REP-0110: Unable to open file 'mpa02448.pdf'.
    scaba 14
    Execution Mode = Batch
    Report Destination = Mail
    Report Destination Name = [email protected]
    Report Destination Format = PDF
    I am able to send email to the same address via UTL_SMTP directly from the form, so it is not an email handler problem.
    Any ideas?

    I have verified the latest patches.
    Addresses are indeed in Windows address book.
    As far as verifying permissions on the file, the file does not exist. It would appear that the error is generated when creating the PDF file, before emailing occurs. Again, however, I do not have problems writing to file directly.
    Is there a default directory used when emailing report for file creation? Perhaps the permissions on that directory need to be changed. Please advise.

Maybe you are looking for