How to compress PDF file when sending email through SP01

Hi expert,
i need your help.
when i use tcode SP01 and fetch the spool no which i want, then select the spool no, cilick menu Spool Request->Forward->Send using SAPOffice to send mail.
i can send the list as an attached file to external mailbox.
Now the problem is :  the size of attached PDF file is too large, how to compress it? make it more smaller?
Thanks&Regards
Aiolos
Edited by: yang Aiolos on Nov 24, 2010 10:08 PM

Hi,
After Converting list to Pdf try the below code.
DATA :  GD_BUFFER TYPE STRING.
  LOOP AT IT_PDF_OUTPUT.
    TRANSLATE IT_PDF_OUTPUT USING ' ~'.
    CONCATENATE GD_BUFFER IT_PDF_OUTPUT INTO GD_BUFFER.
  ENDLOOP.
  TRANSLATE GD_BUFFER USING '~ '.
  DO.
    IT_MESS_ATT = GD_BUFFER.
    APPEND IT_MESS_ATT.
    SHIFT GD_BUFFER LEFT BY 255 PLACES.
    IF GD_BUFFER IS INITIAL.
      EXIT.
    ENDIF.
  ENDDO.
Then mail it. <removed by moderator>
Edited by: Thomas Zloch on Nov 25, 2010 10:21 AM - please do not ask for ...

Similar Messages

  • Error opening PDF file when send as attachment via email

    Hi,
    I searched around the forum to resolve my issue and there's alot of post that is related but i can't find any answer to my issues.
    Here's the scenario :-
    I try to convert the smartform to PDF and then send the PDF as an attachment via email.
    After converting the smartform to PDF, i managed to download the file and view it without any problem but i can't view the PDF as an attachment. It has the following error :-
    Adobe Reader could not open '4500002325.PDF' because it is either not a supported fle type or because the file has been damaged (for example, it was sent as an email and wasn't correctly decoded
    The following is the snapshot of my code:-
    * Determine smartform function module for invoice
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = lf_formname
        IMPORTING
          fm_name            = lf_fm_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc <> 0.
    *  error handling
        ent_retco = sy-subrc.
        PERFORM protocol_update_i.
      ENDIF.
      ls_control_param-getotf = 'X'.
      CALL FUNCTION lf_fm_name
        EXPORTING
          archive_index        = toa_dara
          archive_parameters   = arc_params
          control_parameters   = ls_control_param
          mail_recipient       = ls_recipient
          mail_sender          = ls_sender
          output_options       = ls_composer_param
          zxekko               = l_doc-xekko  " user_settings = ' '
          zxpekko              = l_doc-xpekko
        IMPORTING
          document_output_info = l_ssfcrespd
          job_output_info      = l_ssfcrescl
          job_output_options   = l_ssfcresop
        TABLES
          l_xekpo              = l_doc-xekpo[]
          l_xekpa              = l_doc-xekpa[]
          l_xpekpo             = l_doc-xpekpo[]
          l_xeket               = l_doc-xeket[]
          l_xtkomv             = l_doc-xtkomv[]
          l_xekkn              = l_doc-xekkn[]
          l_xekek              = l_doc-xekek[]
          l_xkomk              = l_xkomk
        EXCEPTIONS
          formatting_error     = 1
          internal_error       = 2
          send_error           = 3
          user_canceled        = 4
          OTHERS               = 5.
      IF sy-subrc = 0.
        CALL FUNCTION 'CONVERT_OTF'
          EXPORTING
            FORMAT                = 'PDF'
          IMPORTING
            BIN_FILESIZE          = v_len_in
            BIN_FILE              = v_bin_file
          TABLES
            OTF                   = l_ssfcrescl-otfdata
            LINES                 = l_pdf
          EXCEPTIONS
            ERR_MAX_LINEWIDTH     = 1
            ERR_FORMAT            = 2
            ERR_CONV_NOT_POSSIBLE = 3
            ERR_BAD_OTF           = 4
            OTHERS                = 5.
    * email subject
        CONCATENATE 'Purchase order' l_doc-xekko-ebeln INTO lw_subject
                    SEPARATED BY space.
    * RECIPIENTS
        lwa_recipients-rec_type = 'U'.
        lwa_recipients-express = 'X'.
        SELECT adr6~smtp_addr
        INTO TABLE gv_smtp_addr
        FROM ekko AS ekko INNER JOIN
             lfa1 AS lfa1 ON ekko~lifnr      = lfa1~lifnr INNER JOIN
             adr6 AS adr6 ON adr6~addrnumber = lfa1~adrnr
        WHERE ekko~ebeln = l_doc-xekko-ebeln.
        IF NOT gv_smtp_addr[] IS INITIAL.
          LOOP AT gv_smtp_addr INTO gv_smtp_addr_line FROM 2.
            lwa_recipients-receiver = gv_smtp_addr_line.
            lwa_recipients-copy = ''.
            APPEND lwa_recipients TO ptb_recipients.
          ENDLOOP.
    * Text Data
            CALL FUNCTION 'READ_TEXT'
              EXPORTING
                id                      = 'ST'
                language                = 'E'
                name                    = 'TEST'
                object                  = 'TEXT'
              TABLES
                lines                   = lv_lines
              EXCEPTIONS
                id                      = 1
                language                = 2
                name                    = 3
                not_found               = 4
                object                  = 5
                reference_check         = 6
                wrong_access_to_archive = 7
                OTHERS                  = 8.
          LOOP AT lv_lines INTO lv_lines_line.
            ltb_objtxt = lv_lines_line-tdline.
            APPEND ltb_objtxt.
          ENDLOOP.
          DESCRIBE TABLE ltb_objtxt LINES lw_tab_lines.
          READ TABLE ltb_objtxt INDEX lw_tab_lines.
    * document data contains information for the whole message
          lwa_doc_chng-obj_descr = 'ABAPlist'.
    * Control Data
          lwa_doc_chng-obj_name   = 'TESTING'.
          lwa_doc_chng-sensitivty = 'F'.
          lwa_doc_chng-no_change  = 'X'.
          lwa_doc_chng-priority   = '1'.
          lwa_doc_chng-obj_prio   = '1'.
          lwa_doc_chng-obj_langu  = sy-langu.
          CLEAR ltb_objpack-transf_bin.
    *Attachment
    *Move the binary attachment to other internal table.
          ltb_objpack-head_start = 1.
          ltb_objpack-head_num   = 0.
          ltb_objpack-body_start = 1.
          ltb_objpack-body_num   = lw_tab_lines.
          ltb_objpack-doc_type   = 'RAW'.
          APPEND ltb_objpack.
          clear : lw_tab_lines.
    *Get the number of lines in the Attachment (PDF FILE)
    *      DESCRIBE TABLE it_mess_att LINES lw_tab_lines.
          DESCRIBE TABLE l_objbin lines lw_tab_lines.
          ltb_objpack-transf_bin = 'X'.
          ltb_objpack-head_start = 1.
          ltb_objpack-head_num   = 1.
          ltb_objpack-body_start = 1.
          ltb_objpack-body_num = lw_tab_lines.
          ltb_objpack-doc_type = 'PDF'.
          ltb_objpack-obj_descr = l_doc-xekko-ebeln.
          ltb_objpack-doc_size = lw_tab_lines * 255.
          APPEND ltb_objpack.
    *Email Subject
          lwa_doc_chng-obj_descr = lw_subject.
            lwa_recipients-receiver = recipeint.
            lwa_recipients-rec_type = 'U'.
            lwa_recipients-copy     = 'X'.
            lwa_recipients-express  = 'X'.
            APPEND lwa_recipients TO ptb_recipients.
          CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
            EXPORTING
              document_data = lwa_doc_chng
              COMMIT_WORK   = 'X'
            TABLES
              packing_list  = ltb_objpack
              contents_bin  = l_objbin
              contents_txt  = ltb_objtxt
              receivers     = ptb_recipients.
          IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
        ENDIF.
      ENDIF.
    Edited by: ~loObie on Apr 23, 2010 12:01 PM
    Edited by: ~loObie on Apr 23, 2010 12:02 PM

    Did you send the pdf in the following format ...
    2. Sending PDF as mail.
    CLEAR t_receivers.
    REFRESH t_receivers.
    t_receivers-receiver = sy-uname.
    t_receivers-rec_type = 'B'.
    t_receivers-com_type = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
    APPEND t_receivers.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = w_doc_data
    put_in_outbox = 'X'
    sender_address = ld_sender_address
    sender_address_type = ld_sender_address_type
    commit_work = 'X'
    IMPORTING
    sent_to_all = w_sent_all
    TABLES
    packing_list = t_packing_list
    contents_bin = t_attachment
    contents_txt = it_message
    receivers = t_receivers
    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.
    Quote from the Following [LINK|http://www.sap-basis-abap.com/smartforms/convert-the-smart-form-into-pdf-and-send.htm]

  • Does anyone know how to compress .pdf files to share?

    I put together a 4 page document in Pages but it is almost 1.7 MB - yikes! Anyone know how to get it smaller?  It has a lot of photos, which I'm sure are the culprit.  If I knew how to make them smaller, I'm sure I'd be on the right track!  

    In todays world a fle of 1.7 Mega Bytes isn't that big. That's about the same size of a small JPG file from a standard camera.
    How do plan on sharing it? Emailing it? you should have no problem emailing a file of that size.
    Sorry I don't know of a way to compress a PDF unless you ZIP it.

  • How to compress PDF files

    I have a 72MB PDF file that I want to email. How do I compress this file.

    A curious observation confounded me. I was using OS X to create PDF files from the Print dialog box of  an application, and I found the file size that OS X was creating to be rather large. I used Adobe Acrobat Pro to reduce the file size by using the product's capability to do so. A rather time consuming task, but necessary since the original file sizes were too large to email.
    Completely by accident one day i used Preview within OS X to view a newly created file (4.9 Mb in size), and then "saved" the file to disk. For some reason in doing so, Preview had automatically reduced the file size from 4.9 Mb to less than 200 Kb (coincidentally the same size reduction that Acrobat Pro was doing manually).
    I don't know why, but simply opening in Preview and then saving the file was initiating a massive reduction. To this day, I find that the two step proces of creating a PDF, then doing the Preview reduction is necessary to make the files smaller for email.

  • How to compress pdf file size from 16mb to 4mb

    Can you please tell me how to compress a PDF email size of 16mb to 4mb?

    http://pdf-compressor.en.softonic.com/
    However PDF compression in general depending on format (pdf-A, pdf-X, etc etc) may not work or work well.

  • How to set PDF file default display size through Report Writter 6i

    Anyone could help me, how to setup default display (magnification i.e 100% or 80%) for a pdf file generated by report writter 6i.
    Thanks
    Raj

    hi,
    regarding report, there is a dedicated report forum. you should post there.
    but answer for your question is form is nothing to do with the pdf generation. you can call the report from the as usual.
    In the report you should set the properties like
    destype to 'file'
    desname to 'path with file name'
    desformat to 'pdf'

  • How to hide my name when sending email with iPhone 5

    when I send an email with my iphone 5, my full name shows up in the email heading. how can I hide this?

    Settings>Mail, Contacts, Calendars. Tap on your email account. You can change the Name in the settings for that particular account. Where it is in settings is going to depend on what kind of email account you have. For example, for iCloud, I tap on my account name under Advanced.

  • ALL WIDOWS APPLICATIONS HAVE BEEN CONVERTED TO PDF FILES AFTER SENDING EMAIL ATTACHMENT IN READER 11

    Any help very appreciated.   I can clear the problem by uninstalling adobe reader 11.    But as soon as I re install the problem comes back all over again.
    Adobe technical will not help

    Here you go ---> Application, file icons change to Acrobat/Reader icon

  • Attachment failure when sending email

    three days ago I detected the problem with Convergence,attachment failure(any type of files) when sending email,the attachment suddenly disappears (confirmed by checking the convergence webmail Sent folder and the recipient only receiving the body text message without the attachment(s)) .However , sending with attachment through mail client software such as Thunderbird is OK . before this problem happened , the system can send email with attachment without any problem . Please help on how can I fix this ?
    the java messaging server details :
    Sun Dir LDAP
    #./iwcadmin -V
    Sun Convergence 1.0-10.01 (built September 6 2009 - 18:29:30)
    Sun Java(tm) System Messaging Server 7.0-3.01 32bit
    on Solaris- Bourne shell
    #uname -srv
    SunOS 5.10 Generic_137137-09

    mattzyzy wrote:
    -all users experiencing the same problem now with Convergence
    I don't see this behaviour with my test Convergence patch 10 install (Comm-Suite-7). I should point out that you need to be running MS7u3 a.k.a. MS7.3-11.01 as per the documentation:
    http://wikis.sun.com/display/CommSuite7/Communications+Suite+7+Component+Products+Release+Notes#CommunicationsSuite7ComponentProductsReleaseNotes-RequirementsforCommunicationsSuite7
    "Communications Suite Component Requirements for Convergence 1 Update 3"
    "Messaging Server - Webmail Server => 7 Update 3"
    -Firefox 3.0 ,3.5 , IE 7,8
    small attachment size 100KB to 400KB - PDF ,MSWORD (DOCX AND DOC), -all the types that work prior to this problem happened .Do the users see the size of the attachment displayed next to the attachment name after uploading it?
    Regards,
    Shane.

  • How to send a picture in pdf file when it is in jpeg file

    how do I send an attachment in PDF file when it is now in jpeg file. I want to send this attachment in an email.

    Hi,
    Please convert your JPEG files to PDF file using "Convert to PDF" tool at https://createpdf.acrobat.com/signin.html or Adobe Reader X or Reader XI(using Tools >CreatePDF).
    After converting the file please download it to your computer then attach it in your email.
    Thank you.
    Hisami

  • How to send pdf files from local dir through emails attachments

    I have some pdf documents in some directory, I want to send those pdf's as an attachment throu emails to the concerned person.
    Please let me know how to attach the files and send through email.
    Thanks.

    You are using Forms 4.5, which is a client/server configuration. When you create a pdf file, the file has to be written to a directory that is accessible from your PC. D:\ is acessible, /tmp/ not (that is a directory on some Unix server). If you want to write files to a Unix server, you have to set up Samba and map a drive from your PC to he Unix directory.
    Since you are creating multiple pdf files, you will have to wait until all reports are finished and mail them afterwards. You can create a batch script to mail the files.

  • How to upload a PDF-file and send it by SAP Mail

    Hi,
    we need to attach a pdf-file to an email send by SAP. The file is stored in a SAP-directory. When I use Open dataset to get the file it works but when sent by email the file could not be opened. I guess that perhaps I have to use other parameters to get the PDF in a correct file but I don't know which ones. Here is part of the coding I use for testing:
    TYPES: BEGIN OF typ_pdf,
           line(255),
           END OF typ_pdf.
    DATA: it_pdf TYPE STANDARD TABLE OF typ_pdf,
          wa_pdf LIKE LINE OF it_pdf.
    v_file = '/pool//Test.pdf'.
    OPEN DATASET v_file FOR INPUT IN TEXT MODE ENCODING NON-UNICODE.
    WHILE ( sy-subrc EQ 0 ).
      READ DATASET v_file INTO wa_pdf.
      IF NOT wa_pdf IS INITIAL.
        APPEND wa_pdf TO it_pdf.
      ENDIF.
      CLEAR wa_pdf.
    ENDWHILE.
    CLOSE DATASET v_file.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        document_data             = gd_doc_data
        put_in_outbox              = 'X'
        commit_work                = 'X'
      TABLES
        packing_list                  = it_packing_list
        contents_bin               = it_pdf
        receivers                  = it_receivers
      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.
    Regards
    Nicola

    Hi Nicola,
    read the pdf from dataset as binary into an XSTRING.
    use function to convert xstring to table.
    Do not use SO_DOC.. function but CL_BCS (see blog 'unknown thus unloved'
    Regards,.
    Clemens

  • Hi , i have a problem in mac air ,i want to attach a PDF file by my email  .i tried to send it but the safari closed and wrote safari closed unexpectant  it gave me 3 choices either reopen . ok and details.thanks

    hi , i have a problem in macbook air , i want to attach a PDF file in my email once i attach it the safari closed by it self and  a small menu appears it written safari closed unexpectant and it gave me 3 choices either reopen , ok or details .plz help thanks

    see when i want to send a file by email ???? it comes safari closed unexpectdly plllllllz helllp !!!!!
    Process:         Safari [154]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.5 (6533.21.1)
    Build Info:      WebBrowser-75332101~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [87]
    Date/Time:       2011-06-05 16:28:10.099 -0400
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          213204 sec
    Crashes Since Last Report:           800
    Per-App Interval Since Last Report:  211953 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      6B26E122-C0E3-43C3-8FE8-EB7A61DE4C8E
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    Crashed Thread:  5
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib             0x00007fff8259029a mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff8259090d mach_msg + 59
    2   com.apple.CoreGraphics        0x00007fff830b56ee _CGSSetRegisteredCursor + 181
    3   com.apple.CoreGraphics        0x00007fff830b5615 CGSSetRegisteredCursor + 173
    4   com.apple.AppKit              0x00007fff840c1a6e -[NSCursor set] + 371
    5   com.apple.WebCore             0x00007fff86a07684 WebCore::EventHandler::handleMouseMoveEvent(WebCore::PlatformMouseEvent const&, WebCore::HitTestResult*) + 1508
    6   com.apple.WebCore             0x00007fff86bc874b WebCore::EventHandler::passSubframeEventToSubframe(WebCore::MouseEventWithHitTe stResults&, WebCore::Frame*, WebCore::HitTestResult*) + 363
    7   com.apple.WebCore             0x00007fff86bc85d9 WebCore::EventHandler::passMouseMoveEventToSubframe(WebCore::MouseEventWithHitT estResults&, WebCore::Frame*, WebCore::HitTestResult*) + 9
    8   com.apple.WebCore             0x00007fff86a07365 WebCore::EventHandler::handleMouseMoveEvent(WebCore::PlatformMouseEvent const&, WebCore::HitTestResult*) + 709
    9   com.apple.WebCore             0x00007fff86a06fea WebCore::EventHandler::mouseMoved(WebCore::PlatformMouseEvent const&) + 74
    10  com.apple.WebCore             0x00007fff86a0684a WebCore::EventHandler::mouseMoved(NSEvent*) + 202
    11  com.apple.WebKit              0x00007fff84c05c3f -[WebHTMLView(WebPrivate) _updateMouseoverWithEvent:] + 927
    12  com.apple.Foundation          0x00007fff881488ea _nsnote_callback + 167
    13  com.apple.CoreFoundation      0x00007fff809f2000 __CFXNotificationPost + 1008
    14  com.apple.CoreFoundation      0x00007fff809de578 _CFXNotificationPostNotification + 200
    15  com.apple.Foundation          0x00007fff8813f84e -[NSNotificationCenter postNotificationName:object:userInfo:] + 101
    16  com.apple.AppKit              0x00007fff840f7192 forwardMethod + 104
    17  com.apple.AppKit              0x00007fff840f7192 forwardMethod + 104
    18  com.apple.AppKit              0x00007fff840f7192 forwardMethod + 104
    19  com.apple.AppKit              0x00007fff840f7192 forwardMethod + 104
    20  com.apple.AppKit              0x00007fff840f7192 forwardMethod + 104
    21  com.apple.AppKit              0x00007fff840f7192 forwardMethod + 104
    22  com.apple.AppKit              0x00007fff840f7192 forwardMethod + 104
    23  com.apple.AppKit              0x00007fff840f7192 forwardMethod + 104
    24  com.apple.AppKit              0x00007fff840f7192 forwardMethod + 104
    25  com.apple.AppKit              0x00007fff840f7192 forwardMethod + 104
    26  com.apple.AppKit              0x00007fff840f7192 forwardMethod + 104
    27  com.apple.AppKit              0x00007fff840f7192 forwardMethod + 104
    28  com.apple.AppKit              0x00007fff841c506f -[NSWindow sendEvent:] + 8769
    29  com.apple.Safari              0x00000001000421b5 0x100000000 + 270773
    30  com.apple.Safari              0x0000000100042142 0x100000000 + 270658
    31  com.apple.AppKit              0x00007fff840f987d -[NSApplication sendEvent:] + 4198
    32  com.apple.Safari              0x0000000100038e72 0x100000000 + 233074
    33  com.apple.AppKit              0x00007fff840904da -[NSApplication run] + 474
    34  com.apple.AppKit              0x00007fff840891a8 NSApplicationMain + 364
    35  com.apple.Safari              0x0000000100009f18 0x100000000 + 40728
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x00007fff825a912a kevent + 10
    1   libSystem.B.dylib             0x00007fff825aaffd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib             0x00007fff825aacd4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib             0x00007fff825aa7fe _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib             0x00007fff825aa128 _pthread_wqthread + 353
    5   libSystem.B.dylib             0x00007fff825a9fc5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib             0x00007fff825a9f4a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff825aa35c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff825a9fc5 start_wqthread + 13
    Thread 3:  WebCore: IconDatabase
    0   libSystem.B.dylib             0x00007fff825caf8a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff825ceda1 _pthread_cond_wait + 1286
    2   com.apple.WebCore             0x00007fff8691f0f9 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3   com.apple.WebCore             0x00007fff8691b1fc WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4   libSystem.B.dylib             0x00007fff825c94f6 _pthread_start + 331
    5   libSystem.B.dylib             0x00007fff825c93a9 thread_start + 13
    Thread 4:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib             0x00007fff8259029a mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff8259090d mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff809e5932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation      0x00007fff809e4dbf CFRunLoopRunSpecific + 575
    4   com.apple.Safari              0x000000010002f5c5 0x100000000 + 193989
    5   com.apple.Safari              0x000000010002f555 0x100000000 + 193877
    6   libSystem.B.dylib             0x00007fff825c94f6 _pthread_start + 331
    7   libSystem.B.dylib             0x00007fff825c93a9 thread_start + 13
    Thread 5 Crashed:
    0   com.apple.CoreFoundation      0x00007fff809c7a20 CFWriteStreamClose + 80
    1   com.apple.Foundation          0x00007fff882db917 spoolingClose + 74
    2   com.apple.CoreFoundation      0x00007fff809c7aa0 _CFStreamClose + 64
    3   com.apple.CFNetwork           0x00007fff8881fea4 HTTPNetStreamInfo::closeRequestResources() + 118
    4   com.apple.CFNetwork           0x00007fff8881fac3 HTTPNetConnection::transmitRequest(HTTPNetStreamInfo*, __CFWriteStream*, CFStreamError*, unsigned char) + 1173
    5   com.apple.CFNetwork           0x00007fff8881ea0e HTTPNetConnection::requestStreamCallback(void*, __CFWriteStream*, unsigned long) + 70
    6   com.apple.CFNetwork           0x00007fff8881e965 NetConnection::connectionRequest(__CFWriteStream*, unsigned long) + 71
    7   com.apple.CoreFoundation      0x00007fff80a47373 _signalEventSync + 115
    8   com.apple.CoreFoundation      0x00007fff80a480c9 _cfstream_shared_signalEventSync + 553
    9   com.apple.CoreFoundation      0x00007fff809e72ad __CFRunLoopDoSources0 + 1021
    10  com.apple.CoreFoundation      0x00007fff809e55f9 __CFRunLoopRun + 873
    11  com.apple.CoreFoundation      0x00007fff809e4dbf CFRunLoopRunSpecific + 575
    12  com.apple.Foundation          0x00007fff881c7f5f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    13  com.apple.Foundation          0x00007fff88148f29 __NSThread__main__ + 1429
    14  libSystem.B.dylib             0x00007fff825c94f6 _pthread_start + 331
    15  libSystem.B.dylib             0x00007fff825c93a9 thread_start + 13
    Thread 6:  com.apple.CFSocket.private
    0   libSystem.B.dylib             0x00007fff825d3e52 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation      0x00007fff80a07498 __CFSocketManager + 824
    2   libSystem.B.dylib             0x00007fff825c94f6 _pthread_start + 331
    3   libSystem.B.dylib             0x00007fff825c93a9 thread_start + 13
    Thread 7:  Safari: SnapshotStore
    0   libSystem.B.dylib             0x00007fff825caf8a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff825ceda1 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore      0x00007fff816e5a40 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari              0x00000001001be5bd 0x100000000 + 1828285
    4   com.apple.Safari              0x00000001000470a7 0x100000000 + 290983
    5   com.apple.Safari              0x0000000100046f25 0x100000000 + 290597
    6   libSystem.B.dylib             0x00007fff825c94f6 _pthread_start + 331
    7   libSystem.B.dylib             0x00007fff825c93a9 thread_start + 13
    Thread 8:  WebCore: LocalStorage
    0   libSystem.B.dylib             0x00007fff825caf8a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff825ceda1 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore      0x00007fff816e5a40 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore             0x00007fff86c6ffb1 WebCore::LocalStorageThread::threadEntryPoint() + 193
    4   libSystem.B.dylib             0x00007fff825c94f6 _pthread_start + 331
    5   libSystem.B.dylib             0x00007fff825c93a9 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib             0x00007fff8259029a mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff8259090d mach_msg + 59
    2   com.apple.QuartzCore          0x00007fff8551f3a6 CA::Render::Server::server_thread(void*) + 177
    3   com.apple.QuartzCore          0x00007fff8551f2e6 thread_fun + 34
    4   libSystem.B.dylib             0x00007fff825c94f6 _pthread_start + 331
    5   libSystem.B.dylib             0x00007fff825c93a9 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib             0x00007fff8259029a mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff8259090d mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff809e5932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation      0x00007fff809e4dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation      0x00007fff809e4b46 CFRunLoopRun + 70
    5   com.apple.DesktopServices     0x00007fff84fe64d2 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 514
    6   ...ple.CoreServices.CarbonCore 0x00007fff861a3335 PrivateMPEntryPoint + 63
    7   libSystem.B.dylib             0x00007fff825c94f6 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff825c93a9 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib             0x00007fff825a9f4a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff825aa35c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff825a9fc5 start_wqthread + 13
    Thread 12:
    0   libSystem.B.dylib             0x00007fff825a9f4a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff825aa35c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff825a9fc5 start_wqthread + 13
    Thread 13:
    0   libSystem.B.dylib             0x00007fff825a9f4a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff825aa35c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff825a9fc5 start_wqthread + 13
    Thread 14:
    0   libSystem.B.dylib             0x00007fff825a9f4a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff825aa35c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff825a9fc5 start_wqthread + 13
    Thread 5 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000400  rbx: 0x0000000000000000  rcx: 0x0000000000000000  rdx: 0x0000000000000024
      rdi: 0x0000000000000000  rsi: 0x0000000000000000  rbp: 0x0000000115577f90  rsp: 0x0000000115577f80
       r8: 0x00007fff710e8948   r9: 0x0000000000000000  r10: 0x000000011530c440  r11: 0x00007fff8881ff02
      r12: 0x0000000000000000  r13: 0x0000000119031d30  r14: 0x00000001155800b0  r15: 0x0000000119031d30
      rip: 0x00007fff809c7a20  rfl: 0x0000000000010287  cr2: 0x0000000000000000
    Binary Images:
           0x100000000 -        0x1006afff7  com.apple.Safari 5.0.5 (6533.21.1) <B81D1199-542C-D929-A1CA-A139EA6262C1> /Applications/Safari.app/Contents/MacOS/Safari
           0x115639000 -        0x11563afff  ATSHI.dylib ??? (???) <C3BF96C6-C170-B0DD-7541-78AD91B4BD70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x1156f4000 -        0x1156f8ff7  libFontRegistryUI.dylib ??? (???) <89E50DF0-2A72-B443-28AE-5F27EC7E22C7> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x116850000 -        0x116850fff  com.apple.JavaPluginCocoa 13.4.0 (13.4.0) <00AF9559-29EA-5E25-42CF-BE2447F9EBC5> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
           0x118f2f000 -        0x118f34ff7  JavaLaunching ??? (???) <E859D1E8-3E9D-5432-DCFA-684A9B1EDD2C> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
           0x11b787000 -        0x11b7adfff  GLRendererFloat ??? (???) <0AF0FF0D-6FD6-B5FA-9991-C8F58E8F1DD4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x11b7ed000 -        0x11b7f6fff  com.apple.qldisplay.PDF 2.3 (327.6) <A5D1AD9F-A1DD-D0AE-9FA1-4D46407A9901> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/Resources/DisplayBundles/PDF.qldisplay/Contents/MacOS/PDF
           0x11c000000 -        0x11c191fef  GLEngine ??? (???) <7B2CD458-D828-6A44-C918-C194838974D5> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11c1c2000 -        0x11c5e5fef  libclh.dylib 3.1.1 C  (3.1.1) <0774DA8C-734E-2639-0F37-CCB20D17CDBD> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x200000000 -        0x200787fff  com.apple.GeForceGLDriver 1.6.26 (6.2.6) <D469864E-34A6-37EE-A01D-7C2AF0223D35> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld
        0x7fff80003000 -     0x7fff8004afff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8004b000 -     0x7fff800d7fff  com.apple.iLifeMediaBrowser 2.5.4 (468.1.1) <F685B42A-E477-3724-A49C-39599AFBDE95> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff800d8000 -     0x7fff800e3fff  com.apple.corelocation 12.1 (12.1) <7B5164FD-F5FD-6837-1DA3-6E18582CEDF3> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff802c2000 -     0x7fff8030aff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8030b000 -     0x7fff804efff7  libType1Scaler.dylib ??? (???) <A2207818-4828-41AD-0F6D-87A07F238388> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
        0x7fff804f0000 -     0x7fff80545ff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff80546000 -     0x7fff805d5fff  com.apple.PDFKit 2.5.1 (2.5.1) <38BEE9BB-3716-49BA-7E14-687FE9E066EB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8062f000 -     0x7fff80679ff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff807db000 -     0x7fff807e2fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff807e3000 -     0x7fff808fcfef  libGLProgrammability.dylib ??? (???) <C4BB281B-629D-08ED-2991-3D51671B0B02> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff808fd000 -     0x7fff808fefff  liblangid.dylib ??? (???) <66D5E5AA-CE00-06DE-071B-ECF67D0936BA> /usr/lib/liblangid.dylib
        0x7fff808ff000 -     0x7fff80925fe7  libJPEG.dylib ??? (???) <AD42F658-7C32-EEE5-8341-A8EE6476BF46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff80934000 -     0x7fff80934ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff80996000 -     0x7fff80998fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff80999000 -     0x7fff80b10fe7  com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff80b11000 -     0x7fff80b73fe7  com.apple.datadetectorscore 2.0 (80.7) <396E3284-B488-A6F4-2B3A-DE421E38C960> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff80b74000 -     0x7fff80bb5fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff80bee000 -     0x7fff80c00fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <43291846-12A7-3518-6C0D-68885CB1C6FB> /usr/lib/libsasl2.2.dylib
        0x7fff80c01000 -     0x7fff80c0fff7  libkxld.dylib ??? (???) <F90EDFE8-708A-3046-E403-A3B536FCFA43> /usr/lib/system/libkxld.dylib
        0x7fff80c10000 -     0x7fff80c21ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff80d17000 -     0x7fff80ed5fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2C6ECACF-CD56-1714-6F63-CB6F5EE7A1E2> /usr/lib/libicucore.A.dylib
        0x7fff80ed6000 -     0x7fff80ee1ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff80efd000 -     0x7fff80f46ff7  com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff80f47000 -     0x7fff80f58fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <88FBCC55-854B-D307-FB5A-026D99AED47E> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff81158000 -     0x7fff811ddff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff811de000 -     0x7fff811e4ff7  IOSurface ??? (???) <6AF28EC1-BCC4-9F65-AF7D-ABE60B91072A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff811e5000 -     0x7fff811e5ff7  com.apple.Cocoa 6.6 (???) <61E16E28-1C4E-8446-6B1E-25B7A6FE59A0> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff81228000 -     0x7fff812b8fff  com.apple.SearchKit 1.3.0 (1.3.0) <72272991-E065-9D32-EDA5-A77230C584D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff81304000 -     0x7fff81339fef  com.apple.framework.Apple80211 6.2.4 (624.2) <B2CB69CE-A4F5-D70F-03DE-CF985D5558A2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8133a000 -     0x7fff813d4ff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <55B528A6-0C88-6CB8-152B-A34A440FACFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff813d5000 -     0x7fff816d3fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff816d4000 -     0x7fff818c4fef  com.apple.JavaScriptCore 6533.20 (6533.20.20) <0AA8B101-C02C-0858-84BC-4E4D397E0231> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff818c5000 -     0x7fff81902ff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff81933000 -     0x7fff8199dfe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff819a3000 -     0x7fff81a20fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <9DBE8FD3-E42D-80C1-11AD-6500C32DBEBF> /usr/lib/libstdc++.6.dylib
        0x7fff81a21000 -     0x7fff81b49ff7  com.apple.MediaToolbox 0.484.20 (484.20) <1C80C29E-6FDB-71F3-B465-FF92A30BBF9D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff81b66000 -     0x7fff81ba3fff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff81ba4000 -     0x7fff81e0efef  com.apple.QuartzComposer 4.2 ({156.28}) <248C697E-B2DD-4F27-27CD-6E6B99B9B0A8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff81e0f000 -     0x7fff81e15ff7  com.apple.DiskArbitration 2.3.1 (2.3.1) <3384F026-6512-86FF-4930-050182F34A0F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff81e16000 -     0x7fff8209efef  com.apple.security 6.1.2 (55002) <015C9A08-3D07-9462-8E91-DB1924349621> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8209f000 -     0x7fff82110ff7  com.apple.AppleVAFramework 4.10.23 (4.10.23) <3304268B-A93D-9F79-09C0-AA9081406352> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff82156000 -     0x7fff82167fff  SyndicationUI ??? (???) <62A4BC15-72EA-0CC1-046A-52E576E8D751> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff82168000 -     0x7fff821a2fff  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
        0x7fff821a3000 -     0x7fff82225fff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff82226000 -     0x7fff82468fe7  com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff82469000 -     0x7fff8249afff  libGLImage.dylib ??? (???) <6925991A-9B1B-B9FA-645A-807F9BCC3DE7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff82551000 -     0x7fff82554fff  com.apple.help 1.3.1 (41) <A572906A-BFEF-7F30-887C-67D43ACFA983> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff82555000 -     0x7fff8258eff7  com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff8258f000 -     0x7fff82750fff  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
        0x7fff82825000 -     0x7fff8302ffe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff83030000 -     0x7fff83077ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff83078000 -     0x7fff8377506f  com.apple.CoreGraphics 1.545.0 (???) <F0A5F62D-4C66-5B1F-4F13-322932915901> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff83776000 -     0x7fff837f3fef  com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff837f4000 -     0x7fff838b6fef  libFontParser.dylib ??? (???) <363E2A8A-CEFE-9A74-E677-C240B27A4FC6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff838b7000 -     0x7fff83978fef  com.apple.ColorSync 4.6.6 (4.6.6) <EC6C8119-23F6-A96E-47A3-5CD31E462AE3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff839c4000 -     0x7fff83ae5fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff83ae6000 -     0x7fff83b86fff  com.apple.LaunchServices 362.2 (362.2) <87E172DB-2C0E-E2E5-2A75-FB4284AECDAF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff83bca000 -     0x7fff83cd0fe7  com.apple.PubSub 1.0.5 (65.21) <1F9B7C84-375D-036F-790A-02BBE7BCE445> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff83cd1000 -     0x7fff83d16fff  com.apple.CoreMediaIOServices 134.0 (1160) <BA22EA4A-4572-749A-4FE0-1323E0B6F6F3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff83d17000 -     0x7fff83d95ff7  com.apple.CoreText 3.151.8 (???) <5DCD6BD9-63FB-767E-5993-5AEBE890145B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff83da4000 -     0x7fff83dbfff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff83dc2000 -     0x7fff83dd1fff  com.apple.opengl 1.6.12 (1.6.12) <29482652-1E44-1C47-428F-1209AA65336D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff83e8a000 -     0x7fff83fbfff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <AFAB42A2-A3A8-83D8-D583-613625706690> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff84010000 -     0x7fff84011ff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <BE4E577D-87EC-8FD0-5341-AE99CE4ADC99> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8401e000 -     0x7fff8406dff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff84087000 -     0x7fff84a7dfff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff84a7e000 -     0x7fff84b0afef  SecurityFoundation ??? (???) <8A74D45E-9FE9-DD58-42F5-C7474FFDD0C1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff84b0b000 -     0x7fff84be8fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff84be9000 -     0x7fff84d67ff7  com.apple.WebKit 6533.21 (6533.21.1) <E954BB9E-51DC-9B68-5312-E1507329A9B3> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff84ecc000 -     0x7fff84fe3fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff84fe4000 -     0x7fff850cafef  com.apple.DesktopServices 1.5.10 (1.5.10) <B7E00D85-F971-D85B-0217-482E15E9E924> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff850d4000 -     0x7fff85189fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff85191000 -     0x7fff8524afff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff8524b000 -     0x7fff8525afff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8525b000 -     0x7fff85311fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <99CB3A0F-64CF-1D16-70CD-8AED2EF06C30> /usr/lib/libobjc.A.dylib
        0x7fff85367000 -     0x7fff85396fff  com.apple.quartzfilters 1.6.0 (1.6.0) <B8F5859D-9372-2EE5-DD77-6E68F15F53B2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff85397000 -     0x7fff853adfff  com.apple.ImageCapture 6.0.2 (6.0.2) <06E4103B-9BE4-7EAD-B532-89FC5EB06ED4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff853ae000 -     0x7fff853b3ff7  com.apple.CommonPanels 1.2.4 (91) <0D62B213-485D-170D-07C9-0452492C6BF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff853b4000 -     0x7fff853c0fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
        0x7fff853c1000 -     0x7fff854cbff7  com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff854cc000 -     0x7fff85869fe7  com.apple.QuartzCore 1.6.3 (227.36) <6FD8E129-135E-2F89-E9F0-A3CD0C6FCEF1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8586a000 -     0x7fff8587fff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff85880000 -     0x7fff858abff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <699E0B28-F9C9-5A3E-ACF6-8B42C03560CD> /usr/lib/libxslt.1.dylib
        0x7fff858ac000 -     0x7fff858d1ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff858d2000 -     0x7fff858d2ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff858d3000 -     0x7fff858d6ff7  com.apple.securityhi 4.0 (36638) <EABABBA8-AB59-599A-1884-0010C059DE62> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff858ff000 -     0x7fff8590cfe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <45B5B514-7CEB-38A9-F34A-1D96F010EC42> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff85910000 -     0x7fff8594bfff  com.apple.AE 496.4 (496.4) <55AAD5CA-7160-7899-1C68-562ED8160DF7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8594c000 -     0x7fff8596dfff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff8596e000 -     0x7fff859a1fff  libTrueTypeScaler.dylib ??? (???) <6EFBF3B7-E4D5-E6AE-5A7D-22F37E288737> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff859a2000 -     0x7fff85b5afef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <EFB373AE-FE02-40C4-ABDC-09D61AFD25EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff85bd0000 -     0x7fff85c19fef  libGLU.dylib ??? (???) <0FCD57C5-D7AA-F2DD-D2EC-C1C8B931F65C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff85f74000 -     0x7fff85f78ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff85f79000 -     0x7fff86029fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8619c000 -     0x7fff864d0fff  com.apple.CoreServices.CarbonCore 861.34 (861.34) <B5680539-CB31-6C6D-C0AD-606D4D46E7F5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff864d1000 -     0x7fff864d2fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <65E24B21-EE95-A6D1-2094-2F659A7EF7F7> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff864d3000 -     0x7fff864d4ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff864d5000 -     0x7fff86918fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <57D38705-6F21-2A82-F3F6-03CFFF214775> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff86919000 -     0x7fff87594fef  com.apple.WebCore 6533.21 (6533.21.1) <A7433C61-B507-BDB0-9CA8-1A3A2A699B2F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff875d4000 -     0x7fff87691fff  com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff87692000 -     0x7fff8769dfff  com.apple.CrashReporterSupport 10.6.7 (258) <BB0B9A08-6CEC-0500-5BD1-C18E1465E406> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8769e000 -     0x7fff87ae6fe7  com.apple.RawCamera.bundle 3.7.0 (569) <E3794272-AE0D-8D35-3EFB-CBE4048BEB0D> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff87ae7000 -     0x7fff87b39ff7  com.apple.HIServices 1.8.2 (???) <80D63B54-3F43-080C-038A-70038D9AF325> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff87b3a000 -     0x7fff87b49fff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff87b4a000 -     0x7fff87b6aff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff87b6b000 -     0x7fff87b6fff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <49E6AF5D-AF9B-67CF-A6B8-C79F6BA8A627> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff87ba6000 -     0x7fff87d15fe7  com.apple.QTKit 7.6.6 (1756.15) <B35EDB1D-FCB0-1D40-629E-6ACB56D57C68> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff87d53000 -     0x7fff87d58fff  libGIF.dylib ??? (???) <1B9DCB7F-CD1D-B23F-8AC6-5292B94A4D0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff87d59000 -     0x7fff87dc1fff  com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff87dc2000 -     0x7fff87dd6ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <D4E9C9C6-633B-54CA-FEE4-E887418442B7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff87dd7000 -     0x7fff87dd7ff7  com.apple.ApplicationServices 38 (38) <92AF04FE-4286-27AD-5694-9D82CEB3A393> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff87dd8000 -     0x7fff87deefef  libbsm.0.dylib ??? (???) <675EBE62-505F-0D5F-DCAB-9606289502C1> /usr/lib/libbsm.0.dylib
        0x7fff87def000 -     0x7fff87e5bff7  com.apple.CorePDF 1.3 (1.3) <FF2F3F1B-D1D6-684C-B174-6A455E04FF91> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff87e5c000 -     0x7fff87e9dfff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff87e9e000 -     0x7fff87f1aff7  com.apple.ISSupport 1.9.4 (52) <93A57F16-3BD5-25AD-5CFF-00007A141129> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff87f1b000 -     0x7fff88059fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8805a000 -     0x7fff8805cfff  libRadiance.dylib ??? (???) <73257486-8E94-E758-1A5A-5B521F27EE12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8805d000 -     0x7fff880a0fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff880a3000 -     0x7fff880b9fe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <F006B2C9-C03F-F863-1FBB-952EC77AE699> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff880ba000 -     0x7fff880fdff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <2C596A24-8B86-79D6-1A8E-5E8FFB6A1558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff880fe000 -     0x7fff88137fef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <F8E0672F-C0B4-B161-E50D-A1405D14F21C> /usr/lib/libcups.2.dylib
        0x7fff88138000 -     0x7fff883bbfe7  com.apple.Foundation 6.6.6 (751.53) <476E617B-B59B-53DE-991D-98C1993BCBCE> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff883bc000 -     0x7fff883bfff7  libCoreVMClient.dylib ??? (???) <00C97B96-8D3B-45EB-F503-DB49712DC42D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff883cc000 -     0x7fff88607fef  com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff88608000 -     0x7fff88608ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff88609000 -     0x7fff88631fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff88632000 -     0x7fff88676fe7  com.apple.ImageCaptureCore 1.0.4 (1.0.4) <F4ED3329-1A86-EB10-CFC2-999D8699B5E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff88778000 -     0x7fff8877dfff  libGFXShared.dylib ??? (???) <878C429B-44D4-875C-1A35-4FD8C6152695> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8877e000 -     0x7fff8877eff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff88801000 -     0x7fff888d3fe7  com.apple.CFNetwork 454.11.12 (454.11.12) <B1C9008A-4A5D-609D-5D10-C93DAD6FFB4C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff888d4000 -     0x7fff888d4ff7  com.apple.quartzframework 1.5 (1.5) <0479F6C7-36EB-C146-DD98-4AA6B80E0C7E> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff888d5000 -     0x7fff888e9fff  libGL.dylib ??? (???) <0FA671EB-6FA0-BA97-C00A-C42247C22B26> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8891b000 -     0x7fff8896afef  libTIFF.dylib ??? (???) <F0F7F0B7-7253-F88F-9E2D-FA3770143758> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff88971000 -     0x7fff889d1fe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff88a2a000 -     0x7fff88a33ff7  com.apple.DisplayServicesFW 2.3.0 (283) <4F122

  • How do I eliminate the thumbnail picture when sending email?

    When I am compsing an email there is a small thumbnail pictue of me in the upper right hand corner. How can I eliminate it??
    Also when sending emails they show as coming from me, but when my wife replys to an email they show as coming from her. I would like to have her emails identified with her and mine from me. Can I do that with one account???

    I finally got it, but I had a difficult time figuring out how to remove it from my contact file.
    Concerning email addresses, if I set up a separate email address for my wife will all incoming emails for both addresses automatically download to my Mac and iPad???
    Thanks

  • How to set attched file name while sending email through ABAP

    Hi All- tell me how to set attched file name while sending email through ABAP.
    regards...
    Abhay

    Sure,  when you are adding your entry to the packing list,  give the name in the obj_name field.
    *File 2
      mailbin = 'This is file 2'.
      append mailbin.
      data: start type i.
      data: end type i.
      start = tab_lines + 1.
      describe table mailbin lines end.
      mailpack-transf_bin = 'X'.
      mailpack-head_start = 1.
      mailpack-head_num = 1.
      mailpack-body_start = start.
      mailpack-body_num = end.
      mailpack-doc_type = 'TXT'.
      mailpack-obj_name = 'TEST2'.        "<-  RIGHT HERE
      mailpack-obj_descr = 'Subject'.
      mailpack-doc_size = tab_lines * 255.
      append mailpack.
    Regards,
    RIch Heilman

Maybe you are looking for