MAiling Urgent

Hi all,
      I want to send a gif image with the document.Can anyone help me in this.Uding GUI_upload i get the gif image in the binary form .Now i want this to be attached with my document.
the code for my program is
FORM send_file_as_email_attachment TABLES pit_message
                                          pit_attach
                                    USING p_email
                                          p_mtitle
                                          p_format
                                          p_filename
                                          p_attdescription
                                          p_sender_address
                                          p_sender_addres_type
                                 CHANGING p_error
                                          p_reciever.
  CONSTANTS:
      con_tab  TYPE c VALUE cl_abap_char_utilities=>horizontal_tab,
      con_cret TYPE c VALUE cl_abap_char_utilities=>cr_lf.
  DATA: ld_error    TYPE sy-subrc,
        ld_reciever TYPE sy-subrc,
        ld_mtitle LIKE sodocchgi1-obj_descr,
        ld_email LIKE  somlreci1-receiver,
        ld_format TYPE  so_obj_tp ,
        ld_attdescription TYPE  so_obj_nam ,
        ld_attfilename TYPE  so_obj_des ,
        ld_sender_address LIKE  soextreci1-receiver,
        ld_sender_address_type LIKE  soextreci1-adr_typ,
        ld_receiver LIKE  sy-subrc,
        w_doc_data LIKE sodocchgi1.
Added By AHasan on 4/4/2006 Start
DATA: send_request       TYPE REF TO cl_bcs.
DATA: text               TYPE bcsy_text.
data: binary_content     type solix_tab.
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: sent_to_all        type os_boolean.
Added By AHasan on 4/4/2006 End
  DATA v_sent TYPE  sonv-flag.
  ld_email   = p_email.
  ld_mtitle = p_mtitle.
  ld_format              = p_format.
  ld_attdescription      = p_attdescription.
  ld_attfilename         = p_filename.
  ld_sender_address      = p_sender_address.
  ld_sender_address_type = p_sender_addres_type.
Fill the document data.
  w_doc_data-doc_size = 1.
Populate the subject/generic message attributes
  w_doc_data-obj_langu = sy-langu.
  w_doc_data-obj_name  = 'SAPRPT'.
  w_doc_data-obj_descr = ld_mtitle .
  w_doc_data-sensitivty = 'F'.
Fill the document data and get size of attachment
  CLEAR w_doc_data.
  READ TABLE it_attach INDEX w_cnt.
  w_doc_data-doc_size =
     ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
  w_doc_data-obj_langu  = sy-langu.
  w_doc_data-obj_name   = 'SAPRPT'.
  w_doc_data-obj_descr  = ld_mtitle.
  w_doc_data-sensitivty = 'P'.
  CLEAR it_message.
  REFRESH it_message.
  it_message[] = pit_attach[].
Describe the body of the message
  CLEAR t_packing_list.
  REFRESH t_packing_list.
  t_packing_list-transf_bin = space.
  t_packing_list-head_start = 1.
  t_packing_list-head_num = 1.
  t_packing_list-body_start = 1.
  DESCRIBE TABLE it_message LINES t_packing_list-body_num.
  t_packing_list-doc_type = 'RAW'.
  APPEND t_packing_list.
    CLEAR t_packing_list.
  t_packing_list-transf_bin = space.
  t_packing_list-head_start = 1.
  t_packing_list-head_num = 1.
  t_packing_list-body_start = 1.
  DESCRIBE TABLE it_message LINES t_packing_list-body_num.
  t_packing_list-doc_type = 'ATTA'.
  APPEND t_packing_list.
Create attachment notification
  REFRESH it_message.
  it_message[] = it_html[].
  t_packing_list-transf_bin = ' '.
  t_packing_list-head_start = 1.
  t_packing_list-head_num   = 4.
  t_packing_list-body_start = 1.
  CLEAR v_num.
  DESCRIBE TABLE it_message LINES t_packing_list-body_num.
  v_num =  t_packing_list-body_num.
  t_packing_list-doc_type   =  ld_format.
  t_packing_list-obj_descr  =  ld_attdescription.
  t_packing_list-obj_name   =  'TCS Scenario'.
  t_packing_list-doc_size   =  t_packing_list-body_num * 255.
  APPEND t_packing_list.
Second attachment
  REFRESH it_message1.
  CONCATENATE  'Product'
               'Description'
               'Plant'
               'SNP Planner'
               'Product Class'
               'Mode'
               'Curr. TCS Value'
               'Proposed TCS Value'
               'New TCS Value'
               INTO it_message1-line SEPARATED BY con_tab.
  APPEND it_message1.
  LOOP AT t_scr_upload INTO s_scr_upload.
    v_cat102 =   s_scr_upload-cat102.
    v_pat102 =   s_scr_upload-pat102.
    v_nat102 =   s_scr_upload-nat102.
    CONCATENATE s_scr_upload-matnr
                s_scr_upload-maktx
                s_scr_upload-locno
                s_scr_upload-planner_snp
                s_scr_upload-at103
                s_scr_upload-dmode
                v_cat102
                v_pat102
                v_nat102
                INTO it_message1-line SEPARATED BY con_tab.
    APPEND it_message1.
  ENDLOOP.
  APPEND LINES OF it_message1 TO it_message.
  v_num = v_num + 1.
  t_packing_list-transf_bin = ' '.
  t_packing_list-head_start = 1.
  t_packing_list-head_num   = 4.
  t_packing_list-body_start = v_num.
  DESCRIBE TABLE it_message LINES t_packing_list-body_num.
  t_packing_list-doc_type   =  'XLS'.
  t_packing_list-obj_descr  =  ld_attdescription.
  t_packing_list-obj_name   =  'TCS UPload'.
  t_packing_list-doc_size   =  t_packing_list-body_num * 255.
  APPEND t_packing_list.
***Added By Ahasan On 4/4/2006 start
***Getting the Gif image
CALL FUNCTION 'GUI_UPLOAD'
  EXPORTING
    filename                      = 'C:\TCS04_04_2006\S_COMPLE.gif'
    FILETYPE                      = 'BIN'
  TABLES
    data_tab                      = binary_content
EXCEPTIONS
   FILE_OPEN_ERROR               = 1
   FILE_READ_ERROR               = 2
   NO_BATCH                      = 3
   GUI_REFUSE_FILETRANSFER       = 4
   INVALID_TYPE                  = 5
   NO_AUTHORITY                  = 6
   UNKNOWN_ERROR                 = 7
   BAD_DATA_FORMAT               = 8
   HEADER_NOT_ALLOWED            = 9
   SEPARATOR_NOT_ALLOWED         = 10
   HEADER_TOO_LONG               = 11
   UNKNOWN_DP_ERROR              = 12
   ACCESS_DENIED                 = 13
   DP_OUT_OF_MEMORY              = 14
   DISK_FULL                     = 15
   DP_TIMEOUT                    = 16
   OTHERS                        = 17
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
***Added By Ahasan On 4/4/2006 start
  t_packing_list-doc_type   =  'GIF'.
  t_packing_list-obj_descr  =  ld_attdescription.
  t_packing_list-obj_name   =  'TCS UPload'.
  t_packing_list-doc_size   =  t_packing_list-body_num * 255.
  APPEND t_packing_list.
Add the recipients email address
  CLEAR t_receivers.
  REFRESH t_receivers.
  SELECT SINGLE email FROM zdrp_tcsmail INTO v_email WHERE vkorg = p_vkorg.
  SPLIT v_email AT ',' INTO TABLE itab_temp_email.
  LOOP AT itab_temp_email.
    t_receivers-receiver = itab_temp_email-emailid.
    t_receivers-rec_type = 'U'.
    t_receivers-com_type = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
    APPEND t_receivers.
  ENDLOOP.
  CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
      document_data                    = w_doc_data
     put_in_outbox                    = 'X'
     commit_work                      = 'X'
   IMPORTING
      sent_to_all                      = v_sent
    NEW_OBJECT_ID                    =
    TABLES
      packing_list                     = t_packing_list
    OBJECT_HEADER                    =
    CONTENTS_BIN                     =
      contents_txt                     = it_message
     CONTENTS_HEX                     =
    OBJECT_PARA                      =
    OBJECT_PARB                      =
      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
  IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
Populate zreceiver return code
  LOOP AT t_receivers.
    ld_receiver = t_receivers-retrn_code.
  ENDLOOP.
ENDFORM.                    "send_file_as_email_attachment

Hi Mohammed,
1. There is some trick involved
in the binary files.
2. I have made a program (and it works fantastic)
ONLY 6 LINES FOR EMAILING
BELIEVE ME
ITS A FANTASTIC PROGRAM.
IT WILL WORK LIKE OUTLOOK EXPRESS !
3. The user is provided with
a) file name
b) email address to send mail
and it sends ANY FILE (.xls,.pdf .xyz..)
Instantaneously !
4. Make two things first :
1. Include with the name : ZAMI_INCLFOR_MAIL
2. Report with the name : ZAM_TEMP147 (any name will do)
3. Activate both and execute (2)
4. After providing filename, email adress
5. Code for Include :
10.08.2005 Amit M - Created
Include For Mail (First Req F16)
Modification Log
Data
DATA: docdata LIKE sodocchgi1,
objpack LIKE sopcklsti1 OCCURS 1 WITH HEADER LINE,
objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE,
objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE,
objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE,
objhex LIKE solix OCCURS 10 WITH HEADER LINE,
reclist LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
DATA: tab_lines TYPE i,
doc_size TYPE i,
att_type LIKE soodk-objtp.
DATA: listobject LIKE abaplist OCCURS 1 WITH HEADER LINE.
FORM
FORM ml_customize USING objname objdesc.
Clear Variables
CLEAR docdata.
REFRESH objpack.
CLEAR objpack.
REFRESH objhead.
REFRESH objtxt.
CLEAR objtxt.
REFRESH objbin.
CLEAR objbin.
REFRESH objhex.
CLEAR objhex.
REFRESH reclist.
CLEAR reclist.
REFRESH listobject.
CLEAR listobject.
CLEAR tab_lines.
CLEAR doc_size.
CLEAR att_type.
Set Variables
docdata-obj_name = objname.
docdata-obj_descr = objdesc.
ENDFORM. "ml_customize
FORM
FORM ml_addrecp USING preceiver prec_type.
CLEAR reclist.
reclist-receiver = preceiver.
reclist-rec_type = prec_type.
APPEND reclist.
ENDFORM. "ml_customize
FORM
FORM ml_addtxt USING ptxt.
CLEAR objtxt.
objtxt = ptxt.
APPEND objtxt.
ENDFORM. "ml_customize
FORM
FORM ml_prepare USING bypassmemory whatatt_type whatname.
IF bypassmemory = ''.
Fetch List From Memory
CALL FUNCTION 'LIST_FROM_MEMORY'
TABLES
listobject = listobject
EXCEPTIONS
OTHERS = 1.
IF sy-subrc <> 0.
MESSAGE ID '61' TYPE 'E' NUMBER '731'
WITH 'LIST_FROM_MEMORY'.
ENDIF.
CALL FUNCTION 'TABLE_COMPRESS'
IMPORTING
COMPRESSED_SIZE =
TABLES
in = listobject
out = objbin
EXCEPTIONS
OTHERS = 1
IF sy-subrc <> 0.
MESSAGE ID '61' TYPE 'E' NUMBER '731'
WITH 'TABLE_COMPRESS'.
ENDIF.
ENDIF.
Header Data
Already Done Thru FM
Main Text
Already Done Thru FM
Packing Info For Text Data
DESCRIBE TABLE objtxt LINES tab_lines.
READ TABLE objtxt INDEX tab_lines.
docdata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
CLEAR objpack-transf_bin.
objpack-head_start = 1.
objpack-head_num = 0.
objpack-body_start = 1.
objpack-body_num = tab_lines.
objpack-doc_type = 'TXT'.
APPEND objpack.
Packing Info Attachment
att_type = whatatt_type..
DESCRIBE TABLE objbin LINES tab_lines.
READ TABLE objbin INDEX tab_lines.
objpack-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objbin ).
objpack-transf_bin = 'X'.
objpack-head_start = 1.
objpack-head_num = 0.
objpack-body_start = 1.
objpack-body_num = tab_lines.
objpack-doc_type = att_type.
objpack-obj_name = 'ATTACHMENT'.
objpack-obj_descr = whatname.
APPEND objpack.
Receiver List
Already done thru fm
ENDFORM. "ml_prepare
FORM
FORM ml_dosend.
CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
EXPORTING
document_data = docdata
put_in_outbox = 'X'
commit_work = 'X' "used from rel. 6.10
IMPORTING
SENT_TO_ALL =
NEW_OBJECT_ID =
TABLES
packing_list = objpack
object_header = objhead
contents_bin = objbin
contents_txt = objtxt
CONTENTS_HEX = objhex
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 'SO' TYPE 'S' NUMBER '023'
WITH docdata-obj_name.
ENDIF.
ENDFORM. "ml_customize
FORM
FORM ml_spooltopdf USING whatspoolid.
DATA : pdf LIKE tline OCCURS 0 WITH HEADER LINE.
Call Function
CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
EXPORTING
src_spoolid = whatspoolid
TABLES
pdf = pdf
EXCEPTIONS
err_no_otf_spooljob = 1
OTHERS = 12.
Convert
PERFORM doconv TABLES pdf objbin.
ENDFORM. "ml_spooltopdf
FORM
FORM doconv TABLES
mypdf STRUCTURE tline
outbin STRUCTURE solisti1.
Data
DATA : pos TYPE i.
DATA : len TYPE i.
Loop And Put Data
LOOP AT mypdf.
pos = 255 - len.
IF pos > 134. "length of pdf_table
pos = 134.
ENDIF.
outbin+len = mypdf(pos).
len = len + pos.
IF len = 255. "length of out (contents_bin)
APPEND outbin.
CLEAR: outbin, len.
IF pos < 134.
outbin = mypdf+pos.
len = 134 - pos.
ENDIF.
ENDIF.
ENDLOOP.
IF len > 0.
APPEND outbin.
ENDIF.
ENDFORM. "doconv
CODE FOR PROGRAM
5.
REPORT zam_temp147 .
INCLUDE zami_inclfor_mail.
DATA
DATA : itab LIKE tline OCCURS 0 WITH HEADER LINE.
DATA : file_name TYPE string.
data : path like PCFILE-PATH.
data : extension(5) type c.
data : name(100) type c.
SELECTION SCREEN
PARAMETERS : receiver TYPE somlreci1-receiver lower case.
PARAMETERS : p_file LIKE rlgrap-filename
OBLIGATORY.
AT SELECTION SCREEN
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
CLEAR p_file.
CALL FUNCTION 'F4_FILENAME'
IMPORTING
file_name = p_file.
START-OF-SELECTION
START-OF-SELECTION.
PERFORM ml_customize USING 'Tst' 'Testing'.
PERFORM ml_addrecp USING receiver 'U'.
PERFORM upl.
PERFORM doconv TABLES itab objbin.
PERFORM ml_prepare USING 'X' extension name.
PERFORM ml_dosend.
SUBMIT rsconn01
WITH mode EQ 'INT'
AND RETURN.
FORM
FORM upl.
file_name = p_file.
CALL FUNCTION 'GUI_UPLOAD'
EXPORTING
filename = file_name
filetype = 'BIN'
TABLES
data_tab = itab
EXCEPTIONS
file_open_error = 1
file_read_error = 2
no_batch = 3
gui_refuse_filetransfer = 4
invalid_type = 5
no_authority = 6
unknown_error = 7
bad_data_format = 8
header_not_allowed = 9
separator_not_allowed = 10
header_too_long = 11
unknown_dp_error = 12
access_denied = 13
dp_out_of_memory = 14
disk_full = 15
dp_timeout = 16
OTHERS = 17.
path = file_name.
CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
EXPORTING
complete_filename = path
CHECK_DOS_FORMAT =
IMPORTING
DRIVE =
EXTENSION = extension
NAME = name
NAME_WITH_EXT =
PATH =
EXCEPTIONS
INVALID_DRIVE = 1
INVALID_EXTENSION = 2
INVALID_NAME = 3
INVALID_PATH = 4
OTHERS = 5
ENDFORM. "upl
regards,
amit m.

Similar Messages

  • Send mail (Urgent)

    HI guys,
    Please look at the coding below..
    l_wa_recieve-receiver = '[email protected]'. " this is the distribution list id "with number of mail ids inside it
    l_wa_recieve-rec_type = 'C'. "shared dis list
    APPEND l_wa_recieve TO l_it_recieve.
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = "ERROR'
    document_type = 'DLI'
    put_in_outbox = c_x
    commit_work = c_x
    TABLES
    object_content = l_it_content "this table contains the body of email
    receivers = l_it_recieve " this is above
    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.
    Can you just tell me whether it works fine.. And if it is correct how much time will it take to get email in my respective email address..
    I have run this FM by just giving my mail id (not distribution list just giving doctype = 'RAW instead of DLI)
    The FM ran sucessfully without any errors , But I didnot receive any mail in my mail Inbox..
    Can you please help me how to sort it out getting mail in less time..
    Points will be rewarded
    regards,
    nazeer

    Hi Nazeer,
                   This will work fine.but If u are not getting mail just go through this documentation.This will help u find out the error.
    Functionality
    This function module enables you to send a new document, which has not yet been created, internally and externally. During the send process the document is created, along with the attributes and content that are to be transferred.
    Import parameters
    DOCUMENT_TYPE
    Default = 'RAW'.
    Document class. All classes are possible except for folders ('FOL') and distributions lists ('DLI').
    PUT_IN_OUTBOX
    Default = ' '.
    If this flag is activated ('X'), the newly created document is also placed in the outbox of the active user when it is sent.
    DOCUMENT_DATA
    This structure must contain the attributes of the document to be sent.
    OBJ_NAME
    Name of document.
    OBJ_DESCR
    Title (short description) of document.
    OBJ_LANGU
    Language of document.
    OBJ_SORT
    Sort field of document. You can search for this term using attribute search.
    OBJ_EXPDAT
    Expiry date of document. The document itself cannot expire, but each time the document is entered in a folder, this date is used as the default for the expiry date of the entry (field EXPIRY_DAT).
    SENSITIVTY
    Document sensitivity.
    A private document can have the following levels of sensitivity:
    'O' : Standard, normal sensitivity
    'F' : Functional, can be forwarded functionally
    'P' : Confidential, not visible to substitutes
    For documents in shared folders, only sensitivity level 'O' is permitted.
    OBJ_PRIO
    Recipient priority. The document itself does not have a priority level, but each time the document is entered in a folder, this value is used as the default for recipient priority for the entry (field PRIORITY).
    NO_CHANGE
    If this flag is activated ('X'), documents in shared folders can only be changed by the author. The author can change documents in private folders after they have been sent.
    PRIORITY
    Recipient priority for the folder entry. This value gives the priority, which was assigned to the document by the owner, after receipt.
    EXPIRY_DAT
    Expiry date of the folder entry. When the expiry date has been reached or passed, the entry is placed in private trash and can be retrieved from there if needed, up until the next time the trash is emptied. A new folder entry is initially given the expiry date of the document from field OBJ_EXPDT.
    PROC_TYPE
    If this field does not contain the default value (default is ' '), the document can be processed.
    The following entries are permitted:
    'D' : Dialog module
    'F' : Function module
    'R' : Report
    'S' : Report with transfer of values to global memory
    'T' : Transaction
    'U' : Transaction with transfer of values to global memory
    PROC_NAME
    Processing element. You must enter the name of the dialog module, function module, report or transaction in accordance with the entry in the field PROC_TYPE.
    PROC_SYST
    Name of sytem in which the document is to be processed. If no system is specified or '*' is entered, processing is possible in all systems.
    PROC_CLINT
    Client in which the document is to be processed. If no client is specified or '*' is entered, processing is possible in all clients.
    SKIP_SCREN
    If this flag is activated ('X'), the first screen is skipped during processing.
    TO_DO_OUT
    If this flag is activated ('X'), the document cannot be processed from the SAPoffice interface. You must use the API function module SO_DOCUMENT_SET_STATUS_API1.
    FREE_DEL
    If this flag is activated ('X'), you can delete the document from external folders using the API.
    DOC_SIZE
    Size of the document in bytes. For PC documents, the size of the relevant file should be entered, for RAW  and SCR documents the size is the "length of the last line" + "number of other lines multiplied by 255".
    Export parameters
    NEW_OBJECT_ID
    Object ID of the document created during the send process.
    SENT_TO_ALL
    If this flag is activated ('X'), the document was sent to all specified recipients or, in the case of external forwarding, the corresponding send requests were delivered to the subsystem. If sending or delivery failed in one or more cases, the flag is not activated.
    Table parameters
    OBJECT_HEADER
    This table must contain the document class-relevant data. For example, SAPscript documents store information here about forms and styles, Excel list viewer documents store, amongst other things, the number of rows and columns and PC documents store their original file names.
    LINE
    Requires class-relevant document information line by line.
    OBJECT_CONTENT
    This table must contain the actual content of the document.
    LINE
    Requires the content of the document line by line.
    OBJECT_PARA
    This table is used only by documents that are to be processed. It must contain the SET/GET parameter that is transferred to the processing element.
    NAME
    Name of the SET/GET parameter. Only the first three characters are used.
    OPTION
    This field is not used.
    LOW
    Requires the value of the parameter in NAME.
    HIGH
    This field is not used.
    OBJECT_PARB
    This table is only used by documents to which a particular processing type is assigned. The meaning of the table depends on the processing type. If the processing element is a report, or transaction with transfer of values to the global memory, the table content is interpreted as the quantity of parameters with the relevant values and exported to the memory ID taken from the first row. If the processing element is a function module or a dialog module, the table is transferred to this as table parameter MSGDIAL.
    NAME
    If the processing element is a report or a transaction with transfer of values to the global memory, the field of the first row of the table must contain the name of the memory ID used for the export. The fields of the other rows accommodate the parameter names. If the processing element is a function module or a dialog module, the fields must contain values corresponding to the use of the module.
    VALUE
    If the processing element is a report or a transaction with transfer of values to the global memory, the field for the first row of the table must remain empty. The fields for the other rows accommodate the values belonging to the parameters in NAME. If the processing element is a function or dialog module, the fields must contain values corresponding to the use of the modules.
    RECEIVERS
    This table must contain the document recipients.
    RECEIVER
    Name of recipient.
    The following entry categories are possible:
    SAP user name of the recipient
    SAPoffice name of the recipient
    Shared distribution list
    Fax number in the form of structure SADRFD
    Internet address in the form of structure SADRUD
    Remote SAP name in the form of structure SADR7D
    X.400 address in the form of structure SADR8D
    ADR_TYPE
    Type of RECEIVER entry.
    The following values are permitted:
    'B' : SAP user name
    ' ' : SAPoffice name
    'C' : Shared distribution list
    'F' : Fax number
    'U' : Internet address
    'R ' : Remote SAP name
    'X' : X.400 address
    REC_ID
    If the recipient is a SAPoffice user, the user ID, instead of the recipient name in RECEIVER, can be entered in this field.
    REPLY_DOC
    If there is a value in this field, the document is a reply to the folder entry identified by the specified ID. A correspondence history is automatically created/continued.
    REC_DATE
    The date on which the document is to reach the recipient. This date cannot be guaranteed for external recipients as it depends on connected products.
    PROXY_ID
    If automatic forwarding is active in the recipient's system, this field contains the SAP user ID or the address ID of the external address to which the document was ultimately sent.
    RETRN_CODE
    When the recipient has received the document, the function module enters the value '0' in this field. If the document is not successfully received, a value unequal to '0' is entered in the field.
    EXPRESS
    If this flag is activated ('X'), the document is sent with the attribute 'express'. If the recipient is a SAPoffice user who is logged on, he or she receive a message immediately, saying that he or she has received an express mail.
    COPY
    If this flag is activated ('X'), the document is sent with the attribute 'copy'.
    BLIND_COPY
    If this flag is activated ('X'), the document is sent with the attribute 'secret copy'. If the recipient is a SAPoffice user, he or she can neither print nor forward the document.
    NO_FORWARD
    If this flag is activated ('X') and the recipient is a SAPoffice user, he or she cannot forward the document.
    NO_PRINT
    If this flag is activated ('X') and the recipient is a SAPoffice user, he or she cannot print the document.
    TO_ANSWER
    If this flag is activated ('X') and the recipient is a SAPoffice user, the user must reply to the document before he or she can delete it from his or her inbox.
    TO_DO_EXPL
    If this flag is activated ('X') and the recipient is a SAPoffice user, the user must process the document before he or she can delete it from his or her inbox.
    TO_DO_GRP
    If this field contains a value between '1' and '9', a SAPoffice user in the recipient group indicated by this number must process the document before the recipients can delete it from their inboxes. If the value '0' is entered, the document does not need to be processed.
    COM_TYPE
    Communication method used to send the document. This field is only relevant if the recipient is an address number, that is, if the document is sent externally via address management. If the field is empty, the standard communication type specified in address management is used.
    The following values are permitted:
    'INT' : Send via Internet
    'FAX' : Send as a fax
    'X40' : Send via X.400
    'RML' : Send in another SAP system
    LFDNR
    Current number from address management. This field is only relevant if the recipient is an address number, that is, if the document is sent via address management. If the field is empty, the default current number in address management is used.
    FAX
    This field is not used.
    COUNTRY
    This field is not used.
    SPOOL_ID
    This field is not used.
    NOTIF_DEL
    If this flag is activated ('X'), the sender receives confirmation when the recipient receives the document. He or she also receives a message if the document could not be delivered. This flag should only be activated for external sending, since internal sending is synchronous. Confirmation is only supported by a small number of mail systems, however. For example: X.400 and SAP SAP.
    NOTIF_READ
    If this flag is activated ('X'), the sender is notified as soon as the recipient has read the document. This flag should only be activated for external sending, since internal sending is synchronous. Read notification is only supported by a small number of mail systems, however. For example: X.400 and SAP SAP.
    NOTIF_NDEL
    If this flag is activated ('X'), the recipient receives a message if the document could not be delivered to the recipient. This flag should only be activated for external sending, since internal sending is synchronous. The message is only supported by a small number of mail systems, however. For example: X.400 and SAP SAP.
    SAP_BODY
    If this flag is activated ('X'), SAP specific data is transferred to the document in an external body part when sending via X.400. This flag should only be activated if the target system is an SAP System.
    Exceptions
    TOO_MANY_RECEIVERS
    Too many recipients were specified. The active user does not have authorization to send to this number of recipients.
    DOCUMENT_NOT_SENT
    The document could not be sent. It was not delivered to any of the specified recipients.
    DOCUMENT_TYPE_NOT_EXIST
    The document class specified does not exist or is not permitted.
    OPERATION_NO_AUTHORIZATION
    The document was not allowed to be sent because one of the required authorizations did not exist.
    PARAMETER_ERROR
    The combination of parameter values transferred to the function module was not a permitted combination.
    X_ERROR
    Am internal error or a database inconsistency has occurred.
    ENQUEUE_ERROR
    A lock required for the send process could not be set. It is probable that another user is processing.
    Example
    Sending a confidential RAW document to an internal user and an Internet address. The new document is also placed in the sender's outbox.
    DATA: OBJCONT LIKE SOLISTI1 OCCURS 5 WITH HEADER LINE.
    DATA: RECLIST LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
    DATA: DOC_CHNG LIKE SODOCCHGI1.
    DATA: ENTRIES LIKE SY-TABIX.
    DATA: NAME(15).
    Fill the document
    DOC_CHNG-OBJ_NAME = 'URGENT'.
    DOC_CHNG-OBJ_DESCR = 'Read at once !'.
    DOC_CHNG-SENSITIVTY = 'P'.
    OBJCONT = 'Hey guys, time for lunch !!!'.
    APPEND OBJCONT.
    OBJCONT = 'Lets get going !'.
    APPEND OBJCONT.
    DESCRIBE TABLE OBJCONT LINES ENTRIES.
    READ TABLE OBJCONT INDEX ENTRIES.
    DOC_CHNG-DOC_SIZE = ( ENTRIES - 1 ) * 255 + STRLEN( OBJCONT ).
    Fill the receiver list
    CLEAR RECLIST.
    RECLIST-RECEIVER = SY-UNAME.  " replace with <login name>
    RECLIST-REC_TYPE = 'B'.
    RECLIST-EXPRESS = 'X'.
    APPEND RECLIST.
    CLEAR RECLIST.
    RECLIST-RECEIVER = '[email protected]'.
    RECLIST-REC_TYPE = 'U'.
    APPEND RECLIST.
    Send the document
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
         EXPORTING
              DOCUMENT_TYPE  = 'RAW'
              DOCUMENT_DATA  = DOC_CHNG
              PUT_IN_OUTBOX  = 'X'
         TABLES
              OBJECT_CONTENT = OBJCONT
              RECEIVERS      = RECLIST
         EXCEPTIONS
              TOO_MANY_RECEIVERS         = 1
                   DOCUMENT_NOT_SENT          = 2
                  OPERATION_NO_AUTHORIZATION = 4
                   OTHERS                     = 99.
        CASE SY-SUBRC.
          WHEN 0.
            LOOP AT RECLIST.
              IF RECLIST-RECEIVER = SPACE.
                NAME = RECLIST-REC_ID.
              ELSE.
                NAME = RECLIST-RECEIVER.
              ENDIF.
              IF RECLIST-RETRN_CODE = 0.
                WRITE: / NAME, ': succesfully sent'.
              ELSE.
                WRITE: / NAME, ': error occured'.
              ENDIF.
            ENDLOOP.
          WHEN 1.
            WRITE: / 'Too many receivers specified !'.
          WHEN 2.
            WRITE: / 'No receiver got the document !'.
          WHEN 4.
            WRITE: / 'Missing send authority !'.
          WHEN OTHERS.
            WRITE: / 'Unexpected error occurred !'.
        ENDCASE.
    Notes
    To send an existing document, you must use the function module SO_OLD_DOCUMENT_SEND_API1.
    If the active user is still to be able to process the document after it has been sent, it must be moved to the outbox when sent using the flag PUT_IN_OUTBOX. You can use the function module SO_FOLDER_READ_API1 to read the contents of the outbox and the object ID to find the document sent.
    It is not possible to use a user address name as the recipient since this may not be unique. To get around this problem, you can use the function module SO_NAME_CONVERT_API1. This provides a hit list in response to a specified name, for which a dialog is constructed with a choice of required values.
    Parameters
    DOCUMENT_DATA
    DOCUMENT_TYPE
    PUT_IN_OUTBOX
    COMMIT_WORK
    SENT_TO_ALL
    NEW_OBJECT_ID
    OBJECT_HEADER
    OBJECT_CONTENT
    CONTENTS_HEX
    OBJECT_PARA
    OBJECT_PARB
    RECEIVERS
    Exceptions
    TOO_MANY_RECEIVERS
    DOCUMENT_NOT_SENT
    DOCUMENT_TYPE_NOT_EXIST
    OPERATION_NO_AUTHORIZATION
    PARAMETER_ERROR
    X_ERROR
    ENQUEUE_ERROR
    U can use other FM also
    <b>SO_DOCUMENT_SEND_API1
    SO_NEW_DOCUMENT_ATT_SEND_API1
    SO_OLD_DOCUMENT_SEND_API1</b>
    Reward points if helpful.
    Regards,
    Hemant

  • Bold, Colors in mail - Urgent

    Hi all,
    I am using a function mod for mail alert. The  user wants cretain names as BOLD & Colors in the text.
    Is there any function mod which sends the mail with BOLD, COLORS & any other options?
    Pls urgent.
    Thanks in advance.
    Vijay

    Vijay,
    Interesting , It will work with my below code. If you don'nt want an attachment then just remove it from this program..
    Believe this will solve your problem.
    Cheers,
    Thomas.
    REPORT test.
    DATA: att_size TYPE i,        " att Size
          att_itab_size TYPE i,   " Attachment size
          mailtxt_size TYPE i.    " Text in mail size
    DATA:
    it_mailpack LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE, " Dist details
    it_mailhead LIKE solisti1   OCCURS  1 WITH HEADER LINE," Header data
    it_reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE,   " Rec List
    it_mailtxt LIKE solisti1 OCCURS 0 WITH HEADER LINE,    " Mail Text
    it_att_data LIKE solisti1 OCCURS 0 WITH HEADER LINE,   " Attachment data
    it_doc_att LIKE sodocchgi1.                          " Attri of new doc
    * Text in the mail.
    it_mailtxt-line  =
    '<BODY BGCOLOR="#FFFFCC">' &
    '<B> This is a test mail,  Line Number--1</B><BR>'
    APPEND it_mailtxt.
    it_mailtxt-line = '<I> This is a test mail,  Line Number--2' &
                      ' This is a test mail,  Line Number--2</I><BR>'.
    APPEND it_mailtxt.
    it_mailtxt-line = '<U> This is a test mail,  Line Number--3' &
                      ' This is a test mail,  Line Number--3' &
                      ' This is a test mail,  Line Number--3</U>'.
    APPEND it_mailtxt.
    DESCRIBE TABLE it_mailtxt LINES mailtxt_size.
    * Create the att File
    concatenate '<BODY><B>Attachment Line Number 1</B><BR>' space into
    it_att_data-line.
    APPEND it_att_data.
    concatenate '<I>Attachment Line Number 2</I><BR>' space into
    it_att_data-line.
    APPEND it_att_data.
    concatenate '<U>Attachment Line Number 3</U>' space into
    it_att_data-line.
    APPEND it_att_data.
    DESCRIBE TABLE it_att_data LINES att_itab_size.
    * Attributes of new doc
    CONCATENATE 'Attach' space 'mail'
                INTO it_doc_att-obj_descr SEPARATED BY space.
    it_doc_att-sensitivty = 'F'.
    it_doc_att-doc_size   = mailtxt_size * 255.
    * Create Pack to text in mail body.
    it_mailpack-transf_bin   = space.
    it_mailpack-head_start   = 1.
    it_mailpack-head_num     = 0.
    it_mailpack-body_start   = 1.
    it_mailpack-body_num     = mailtxt_size.
    it_mailpack-doc_type     = 'HTM'.
    APPEND it_mailpack.
    * Create Pack for Attach.
    it_mailpack-transf_bin   = 'X'.
    it_mailpack-head_start   = 1.
    it_mailpack-head_num     = 1.
    it_mailpack-body_start   = 1.
    it_mailpack-body_num     = att_itab_size.
    it_mailpack-doc_type     = 'HTM'.
    CONCATENATE 'My' space 'Attachment' INTO it_mailpack-obj_descr.
    it_mailpack-doc_size     = att_itab_size * 255.
    APPEND it_mailpack.
    it_reclist-receiver   = '[email protected]'.
    it_reclist-express    = 'X'.
    it_reclist-rec_type   = 'U'.
    *it_reclist-notif_del  = 'X'. " request delivery notification
    APPEND it_reclist.
    * Call FM to send email
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
         EXPORTING
              document_data              = it_doc_att
              put_in_outbox              = 'X'
         TABLES
              packing_list               = it_mailpack
              object_header              = it_mailhead
              contents_txt               = it_mailtxt
              contents_bin               = it_att_data
              receivers                  = it_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.
    ENDIF.

  • Send a mail - URGENT

    Hello,
    I'm wan't to send a mail from forms but i don't know how to do it.
    It's very urgent.
    Can you help me????

    Below is code that was sent to me that works on sending the e-mail. I am still looking for a way to add an attachment to the e-mail.
    SSgt Chris Kaelin, USAF
    -- Sample Code --
    PROCEDURE OUTLOOK_OLE IS
    v_to          VARCHAR2(50) := email-address;
    v_sub          VARCHAR2(50) := subject ;
    v_cc          VARCHAR2(50);
    v_body     VARCHAR2(2000);
    hApplication     OLEOBJ;
    hMailItem               OLEOBJ;
    CURSOR course_data IS
    SELECT stu_id,
         INITCAP( stu_first_name ||' '|| stu_mi ||' '|| stu_last_name) AS full_name,
         stu_last_name,
         stu_email,
         stu_org,
         cour_num_name
    FROM     ce_certificate_import;
    BEGIN
    FOR course_rec IN course_data
    LOOP
    v_body := 'This is a test message';
    hApplication := CREATE_OLEOBJ('Outlook.Application',TRUE);
    INIT_OLEARGS(1);
    ADD_OLEARG(0);
    hMailItem := CALL_OLE_OBJ( hApplication, GET_OLE_MEMBERID( hApplication, 'CreateItem'));
    SET_OLE( hMailItem, GET_OLE_MEMBERID( hMailItem,'To'), v_to);
    IF v_cc IS NOT NULL THEN
    SET_OLE(hMailItem, GET_OLE_MEMBERID( hMailItem, 'CC'), v_cc);
    END IF;
    SET_OLE( hMailItem, GET_OLE_MEMBERID( hMailItem, 'Subject'), v_sub||'-'||course_rec.full_name);
    SET_OLE( hMailItem, GET_OLE_MEMBERID( hMailItem, 'Body'), v_body);
    CALL_OLE( hMailItem, GET_OLE_MEMBERID( hMailItem, 'Display') );
    INIT_OLEARGS(0);
    -- Un-Comment these to automatically send the email
    -- CALL_OLE(hMailItem, GET_OLE_MEMBERID(hMailItem,'Save'));
    -- CALL_OLE(hMailItem, GET_OLE_MEMBERID(hMailItem,'Send'));
    END LOOP;
    END;

  • Error while sending email to external mail - Urgent

    Hi All,
    I am getting error while sending email with attachement. The Error code is 02.
    I am not able to identify the error. bold Please help me in solving this problem.
    Is it anything wrong with the code or Any Configuration with SCOT/SOST.bold
    the code i am using is :
    REPORT YVR_F MESSAGE-ID XX .
    TABLES : EDIDC, EDIDS, EDPAR.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.
    PARAMETERS : P_STATUS LIKE EDIDC-STATUS DEFAULT '51'.
    SELECT-OPTIONS : S_DIRECT FOR EDIDC-DIRECT,
                     S_MESTYP FOR EDIDC-MESTYP,
                     S_CREDAT FOR EDIDC-CREDAT.
    SELECTION-SCREEN END OF BLOCK B1 .
    PARAMETER: P_EMAIL LIKE SOMLRECI1-RECEIVER,
               P_SENDER LIKE SOMLRECI1-RECEIVER no-display,
               P_DELSPL  AS CHECKBOX,
               P_ONLINE NO-DISPLAY.
    DATA : TB_EDIDC LIKE STANDARD TABLE OF EDIDC INITIAL SIZE 0 WITH HEADER
    LINE.
    DATA : TB_EDPAR LIKE STANDARD TABLE OF EDPAR INITIAL SIZE 0 WITH HEADER
    LINE.
    DATA : TB_KNA1 LIKE STANDARD TABLE OF KNA1 INITIAL SIZE 0 WITH HEADER
    LINE.
    DATA : TB_ADRC LIKE STANDARD TABLE OF ADRC INITIAL SIZE 0 WITH HEADER
    LINE.
    DATA: INT_PDF TYPE TABLE OF TLINE WITH HEADER LINE.
    DATA : BEGIN OF TB_ED OCCURS 0,
             SNDPRN LIKE EDIDC-SNDPRN,
             LOC    LIKE ADRC-BUILDING,
             DOCNUM LIKE EDIDC-DOCNUM,
             IDOCTP LIKE EDIDC-IDOCTP,
             MESTYP LIKE EDIDC-MESTYP,
             DIRECT LIKE EDIDC-DIRECT,
             CREDAT LIKE EDIDC-CREDAT,
             STATUS LIKE EDIDC-STATUS,
           END OF TB_ED.
    DATA:   IT_MESSAGE TYPE STANDARD TABLE OF SOLISTI1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   IT_ATTACH TYPE STANDARD TABLE OF SOLISTI1 INITIAL SIZE 0
                    WITH HEADER LINE.
    Job Runtime Parameters
    DATA: GD_EVENTID LIKE TBTCM-EVENTID,
          GD_EVENTPARM LIKE TBTCM-EVENTPARM,
          GD_EXTERNAL_PROGRAM_ACTIVE LIKE TBTCM-XPGACTIVE,
          GD_JOBCOUNT LIKE TBTCM-JOBCOUNT,
          GD_JOBNAME LIKE TBTCM-JOBNAME,
          GD_STEPCOUNT LIKE TBTCM-STEPCOUNT,
          GD_ERROR    TYPE SY-SUBRC,
          GD_RECIEVER TYPE SY-SUBRC.
    DATA:  W_RECSIZE TYPE I,
           W_SPOOL_NR LIKE SY-SPONO.
          %_print LIKE pri_params.
    DATA: GD_SUBJECT   LIKE SODOCCHGI1-OBJ_DESCR,
          IT_MESS_BOD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
          IT_MESS_ATT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
          GD_SENDER_TYPE     LIKE SOEXTRECI1-ADR_TYP,
          GD_ATTACHMENT_DESC TYPE SO_OBJ_NAM,
          GD_ATTACHMENT_NAME TYPE SO_OBJ_DES.
    Spool to PDF conversions
    DATA: GD_SPOOL_NR LIKE TSP01-RQIDENT,
          GD_DESTINATION LIKE RLGRAP-FILENAME,
          GD_BYTECOUNT LIKE TST01-DSIZE,
          GD_BUFFER TYPE STRING.
    Binary store for PDF
    DATA: BEGIN OF IT_PDF_OUTPUT OCCURS 0.
            INCLUDE STRUCTURE TLINE.
    DATA: END OF IT_PDF_OUTPUT.
    DATA: GD_RECSIZE TYPE I.
    CONSTANTS: C_DEV LIKE  SY-SYSID VALUE 'DEV',
               C_NO(1)     TYPE C   VALUE ' ',
               C_DEVICE(4) TYPE C   VALUE 'LOCL'.
    DATA:   T_PACKING_LIST LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
            T_CONTENTS LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
            T_RECEIVERS LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
            T_ATTACHMENT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
            T_OBJECT_HEADER LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
            W_CNT TYPE I,
            W_SENT_ALL(1) TYPE C,
            W_DOC_DATA LIKE SODOCCHGI1.
    DATA : MSTR_PRINT_PARMS LIKE PRI_PARAMS,
           MC_VALID,
           P_REPID LIKE SY-REPID,
           WF_ID  LIKE TSP01-RQIDENT,
           LOC_BYTECOUNT TYPE I.
    *start-of-selection.
    MSTR_PRINT_PARMS-PDEST = 'LOCL'.
    P_REPID = SY-REPID.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING
        authority= ' '
       COPIES                       = '1'
       COVER_PAGE                   = SPACE
       DATA_SET                     = SPACE
       DEPARTMENT                   = SPACE
       DESTINATION                  = 'LP01'
       EXPIRATION                   = '1'
       IMMEDIATELY                  = 'X'
       LAYOUT                       = 'X_65_132'
       MODE                         = SPACE
       NEW_LIST_ID                  = 'X'
       NO_DIALOG                    = 'X'
       USER                         = SY-UNAME
    IMPORTING
       OUT_PARAMETERS               = MSTR_PRINT_PARMS
       VALID                        = MC_VALID
    EXCEPTIONS
       ARCHIVE_INFO_NOT_FOUND       = 1
       INVALID_PRINT_PARAMS         = 2
       INVALID_ARCHIVE_PARAMS       = 3
       OTHERS                       = 4.
         SUBMIT (P_REPID) TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                          SPOOL PARAMETERS MSTR_PRINT_PARMS.
                          AND RETURN.
    NEW-PAGE PRINT ON NO DIALOG PARAMETERS
    MSTR_PRINT_PARMS.
    perform data.
    NEW-PAGE PRINT OFF. "This marks the end of the screen for which the
    *SPOOL NO WAS GENERATED.
    WF_ID = SY-SPONO.
    *converting spool to pdf
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
         EXPORTING
              SRC_SPOOLID              = WF_ID  "SPOOL NUMBER
              NO_DIALOG                = SPACE
              PDF_DESTINATION          = 'X'
         IMPORTING
              PDF_BYTECOUNT =
                 LOC_BYTECOUNT "NUMBER OF BYTES TRANSFERRED
         TABLES
              PDF                      = INT_PDF  "TABLE FOR PDF REPORT
         EXCEPTIONS
              ERR_NO_ABAP_SPOOLJOB     = 1
              ERR_NO_SPOOLJOB          = 2
              ERR_NO_PERMISSION        = 3
              ERR_CONV_NOT_POSSIBLE    = 4
              ERR_BAD_DESTDEVICE       = 5
              USER_CANCELLED           = 6
              ERR_SPOOLERROR           = 7
              ERR_TEMSEERROR           = 8
              ERR_BTCJOB_OPEN_FAILED   = 9
              ERR_BTCJOB_SUBMIT_FAILED = 10
              ERR_BTCJOB_CLOSE_FAILED  = 11
              OTHERS                   = 12.
    *CALL FUNCTION 'DOWNLOAD'
    *EXPORTING
    *bin_filesize = loc_bytecount "NO. OF BYTES
    *filename = 'C:/EMAILPDF.PDF'
    *filetype = 'BIN'
    **IMPORTING
    **act_filename = loc_filename
    *TABLES
    *data_tab = int_pdf.
    IF P_DELSPL EQ 'X'.
      PERFORM DELETE_SPOOL.
    ENDIF.
    Transfer the 132-long strings to 255-long strings
    LOOP AT INT_PDF.
      TRANSLATE INT_PDF USING ' ~'.
      CONCATENATE GD_BUFFER INT_PDF 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.
    DESCRIBE TABLE IT_MESS_ATT LINES GD_RECSIZE.
    CHECK GD_RECSIZE > 0.
    PERFORM SENDMAIL USING P_EMAIL..
    *&      Form  sendmail
          text
    -->  p1        text
    <--  p2        text
    FORM SENDMAIL USING P_EMAIL.
      CHECK NOT ( P_EMAIL IS INITIAL ).
      REFRESH IT_MESS_BOD.
    Default subject matter
      GD_SUBJECT         = 'Subject'.
      GD_ATTACHMENT_DESC = 'IDOC LIST'.
    CONCATENATE 'attach_name' ' ' INTO gd_attachment_name.
      IT_MESS_BOD        = 'List Of Failed Idocs'.
      APPEND IT_MESS_BOD.
      IT_MESS_BOD        = 'List Of Failed Idocs'.
      APPEND IT_MESS_BOD.
    If no sender specified - default blank
      IF P_SENDER EQ SPACE.
        GD_SENDER_TYPE  = SPACE.
      ELSE.
        GD_SENDER_TYPE  = 'INT'.
      ENDIF.
    Send file by email as .xls speadsheet
      PERFORM SEND_FILE_AS_EMAIL_ATTACHMENT
                                   TABLES IT_MESS_BOD
                                          IT_MESS_ATT
                                    USING P_EMAIL
                                          'Document attachment'
                                          'PDF'
                                          GD_ATTACHMENT_NAME
                                          GD_ATTACHMENT_DESC
                                          P_SENDER
                                          GD_SENDER_TYPE
                                 CHANGING GD_ERROR
                                          GD_RECIEVER.
    ENDFORM.                    " sendmail
    *&      Form  DELETE_SPOOL
          text
    -->  p1        text
    <--  p2        text
    FORM DELETE_SPOOL.
      DATA: LD_SPOOL_NR TYPE TSP01_SP0R-RQID_CHAR.
      LD_SPOOL_NR = WF_ID.   "GD_SPOOL_NR.
      CHECK P_DELSPL <> C_NO.
      CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
           EXPORTING
                SPOOLID = LD_SPOOL_NR.
    ENDFORM.                    " DELETE_SPOOL
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
          text
         -->P_IT_MESS_BOD  text
         -->P_IT_MESS_ATT  text
         -->P_P_EMAIL  text
         -->P_0846   text
         -->P_0847   text
         -->P_GD_ATTACHMENT_NAME  text
         -->P_GD_ATTACHMENT_DESC  text
         -->P_P_SENDER  text
         -->P_GD_SENDER_TYPE  text
         <--P_GD_ERROR  text
         <--P_GD_RECIEVER  text
    FORM SEND_FILE_AS_EMAIL_ATTACHMENT TABLES   IT_MESSAGE
                                              IT_ATTACH
                                        USING P_EMAIL
                                              P_MTITLE
                                              P_FORMAT
                                              P_FILENAME
                                              P_ATTDESCRIPTION
                                              P_SENDER_ADDRESS
                                              P_SENDER_ADDRES_TYPE
                                     CHANGING P_ERROR
                                              P_RECIEVER.
      DATA: LD_ERROR    TYPE SY-SUBRC,
             LD_RECIEVER TYPE SY-SUBRC,
             LD_MTITLE LIKE SODOCCHGI1-OBJ_DESCR,
             LD_EMAIL LIKE  SOMLRECI1-RECEIVER,
             LD_FORMAT TYPE  SO_OBJ_TP ,
             LD_ATTDESCRIPTION TYPE  SO_OBJ_NAM ,
             LD_ATTFILENAME TYPE  SO_OBJ_DES ,
             LD_SENDER_ADDRESS LIKE  SOEXTRECI1-RECEIVER,
             LD_SENDER_ADDRESS_TYPE LIKE  SOEXTRECI1-ADR_TYP,
             LD_RECEIVER LIKE  SY-SUBRC.
      DATA:   T_PACKING_LIST LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
              T_CONTENTS LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
              T_RECEIVERS LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
              T_ATTACHMENT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
              T_OBJECT_HEADER LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
              W_CNT TYPE I,
              W_SENT_ALL(1) TYPE C,
              W_DOC_DATA LIKE SODOCCHGI1.
      LD_EMAIL   = P_EMAIL.
      LD_MTITLE = P_MTITLE.
      LD_FORMAT              = P_FORMAT.
      LD_ATTDESCRIPTION      = P_ATTDESCRIPTION.
      LD_ATTFILENAME         = P_FILENAME.
      LD_SENDER_ADDRESS      = P_SENDER.
      LD_SENDER_ADDRESS_TYPE = P_SENDER_ADDRES_TYPE.
    Fill the document data.
      W_DOC_DATA-DOC_SIZE = 1.
    Populate the subject/generic message attributes
      W_DOC_DATA-OBJ_LANGU = SY-LANGU.
      W_DOC_DATA-OBJ_NAME  = 'SAPRPT'.
      W_DOC_DATA-OBJ_DESCR = LD_MTITLE .
      W_DOC_DATA-SENSITIVTY = 'F'.
    Fill the document data and get size of attachment
      CLEAR W_DOC_DATA.
      READ TABLE IT_ATTACH INDEX W_CNT.
      W_DOC_DATA-DOC_SIZE =
         ( W_CNT - 1 ) * 255 + STRLEN( IT_ATTACH ).
      W_DOC_DATA-OBJ_LANGU  = SY-LANGU.
      W_DOC_DATA-OBJ_NAME   = 'SAPRPT'.
      W_DOC_DATA-OBJ_DESCR  = LD_MTITLE.
      W_DOC_DATA-SENSITIVTY = 'F'.
      CLEAR T_ATTACHMENT.
      REFRESH T_ATTACHMENT.
      T_ATTACHMENT[] = IT_ATTACH[].
    Describe the body of the message
      CLEAR T_PACKING_LIST.
      REFRESH T_PACKING_LIST.
      T_PACKING_LIST-TRANSF_BIN = SPACE.
      T_PACKING_LIST-HEAD_START = 1.
      T_PACKING_LIST-HEAD_NUM = 0.
      T_PACKING_LIST-BODY_START = 1.
      DESCRIBE TABLE IT_MESSAGE LINES T_PACKING_LIST-BODY_NUM.
      T_PACKING_LIST-DOC_TYPE = 'RAW'.
      APPEND T_PACKING_LIST.
    Create attachment notification
      T_PACKING_LIST-TRANSF_BIN = 'X'.
      T_PACKING_LIST-HEAD_START = 1.
      T_PACKING_LIST-HEAD_NUM   = 1.
      T_PACKING_LIST-BODY_START = 1.
      DESCRIBE TABLE T_ATTACHMENT LINES T_PACKING_LIST-BODY_NUM.
      T_PACKING_LIST-DOC_TYPE   =  LD_FORMAT.
      T_PACKING_LIST-OBJ_DESCR  =  LD_ATTDESCRIPTION.
      T_PACKING_LIST-OBJ_NAME   =  LD_ATTFILENAME.
      T_PACKING_LIST-DOC_SIZE   =  T_PACKING_LIST-BODY_NUM * 255.
      APPEND T_PACKING_LIST.
    Add the recipients email address
      CLEAR T_RECEIVERS.
      REFRESH T_RECEIVERS.
      T_RECEIVERS-RECEIVER = p_EMAIL.
      T_RECEIVERS-REC_TYPE = 'U'.
      T_RECEIVERS-COM_TYPE = 'INT'.
      T_RECEIVERS-NOTIF_DEL = 'X'.
      T_RECEIVERS-NOTIF_NDEL = 'X'.
      APPEND T_RECEIVERS.
      DATA: objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE.
    W_SENT_ALL = 'X'.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_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
                object_header              = objhead
                CONTENTS_BIN               = T_ATTACHMENT
                CONTENTS_TXT               = IT_MESSAGE
                RECEIVERS                  = T_RECEIVERS
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                OPERATION_NO_AUTHORIZATION = 4
                OTHERS                     = 99.
      IF SY-SUBRC NE 0.
        MESSAGE E000 WITH 'Error occurred while sending'.
      ELSE.
        MESSAGE I000 WITH 'The document was sent'.
      ENDIF.
    ENDFORM.                    " SEND_FILE_AS_EMAIL_ATTACHMENT
    *&      Form  data
          text
    -->  p1        text
    <--  p2        text
    FORM data.
    SELECT SNDPRN
             DOCNUM
             IDOCTP
             MESTYP
             DIRECT
             CREDAT
             STATUS
             FROM EDIDC
             INTO CORRESPONDING FIELDS
             OF TABLE TB_EDIDC
             WHERE STATUS = P_STATUS
             AND MESTYP IN S_MESTYP
             AND DIRECT IN S_DIRECT
             AND CREDAT IN S_CREDAT.
    SELECT KUNNR
           INPNR
           FROM EDPAR
           INTO CORRESPONDING FIELDS
           OF TABLE TB_EDPAR
           FOR ALL ENTRIES IN TB_EDIDC
           WHERE KUNNR = TB_EDIDC-SNDPRN.
    SELECT KUNNR
           ADRNR
           FROM KNA1
           INTO CORRESPONDING FIELDS
           OF TABLE TB_KNA1
           FOR ALL ENTRIES IN TB_EDPAR
           WHERE KUNNR = TB_EDPAR-INPNR.
    SELECT ADDRNUMBER
           BUILDING
           FROM ADRC
           INTO CORRESPONDING FIELDS
           OF TABLE TB_ADRC
           FOR ALL ENTRIES IN TB_KNA1
           WHERE ADDRNUMBER = TB_KNA1-ADRNR.
    LOOP AT TB_EDIDC WHERE STATUS = P_STATUS
                     AND MESTYP IN S_MESTYP
                     AND DIRECT IN S_DIRECT
                     AND CREDAT IN S_CREDAT.
      TB_ED-SNDPRN = TB_EDIDC-SNDPRN.
      TB_ED-DOCNUM = TB_EDIDC-DOCNUM.
      TB_ED-IDOCTP = TB_EDIDC-IDOCTP.
      TB_ED-MESTYP = TB_EDIDC-MESTYP.
      TB_ED-DIRECT = TB_EDIDC-DIRECT.
      TB_ED-CREDAT = TB_EDIDC-CREDAT.
      TB_ED-STATUS = TB_EDIDC-STATUS.
      READ TABLE TB_EDPAR WITH KEY KUNNR = TB_EDIDC-SNDPRN.
      READ TABLE TB_KNA1 WITH KEY KUNNR = TB_EDPAR-INPNR.
      READ TABLE TB_ADRC WITH KEY ADDRNUMBER = TB_KNA1-ADRNR.
      TB_ED-LOC = TB_ADRC-BUILDING.
      APPEND TB_ED.
    ENDLOOP.
    WRITE :/02 'CustomerNo',
            15 'Location Code',
            30 'Idoc Number',
            55 'Basic Type',
            70 'Message Type',
            95 'Direction',
            110 'Received Date',
            130 'Status'.
    ULINE.
    LOOP AT TB_ED.
      WRITE :/02 TB_ED-SNDPRN,
              15 TB_ED-LOC,
              30 TB_ED-DOCNUM,
              55 TB_ED-IDOCTP,
              70 TB_ED-MESTYP,
              95 TB_ED-DIRECT,
              110 TB_ED-CREDAT,
              130 TB_ED-STATUS.
    ENDLOOP.
    ENDFORM.                    " data
    Kindly help me in solving the issue.
    Thanks in advance.
    Suki.

    Hi,
    Check in transaction SCOT. If your mail is in error status in SCOT, you can assure that there is no problem with your code. If your message has not reached till SCOT, then the problem will be with the code.
    If the mail is there in scot with error status tell the BASIS to configure it. I feel this could be the problem.
    Regards,
    Renjith Michael.

  • Send Link of Display Purchase order in notification mail(Urgent)

    Hi Friends,
    When ever a PO is Approved, a notification mail is supposed to be send & in that mail ...the link of Display PO is to be added..
    Please help out in detail .....
    Thanks,
    Kartikey Rawat.

    Hi,
    If you are using Send Mail step associated with SELFITEM.SENDTASKDESCRIPTION to send mail from your workflow, to send attachments you need to do the following bindings to your send mail step.
    <your attachment object> -> &_Attach_Objects&
    <your attachment object> -> &Attachments&
    However, before this you should have your attachment as SOFM Object instance.

  • Sending mails (urgent!!!)

    Hi all!
    I�d like to send an email from inside the applet. For this reason I need to get the Systemproperties, don't I ?
    Properties props = System.getProperties();
    props.put("mail.smtp.host", mailhost);
    ... and set the mail.smtp.host Property my smtp-host.
    But as I try to get the systemproperties from the applet, I get the exception:
    com.ms.security.SecurityExceptionEx[Sendmsg.<init>]: Unable to access system properties.
    Can somebody tell me, how I can solve this problem? Which properties are needed to send mails?
    Does it work, if I just create my Properties, and set only the smtp.host?
    Pleeaaaase help, I have to hand in my project very soon!
    Thanks a lot,
    Gabor

    You're not allowed to set properties from an unsecure applet. Your applet is unsecure because it isn't signed. Therefore sign your applet.

  • Urgent related to message type structure and proxy

    Hello,
    My outbound interface related message type structure is like this....
    message type name : MSg1
    Msg1
    x
    y
    Z
    (under z)
    a
    b
    c
    ok,Now in generating the proxy how to populate this structure.
    For example ...
    if Msg type is emp_profile_msg
    Emp_name
    Empno
    Department_name
    we use this code
    REPORT zblog_abap_proxy.
    DATA prxy TYPE REF TO zblogco_proxy_interface_ob.
    CREATE OBJECT prxy.
    DATA it TYPE zblogemp_profile_msg.
    TRY.
    it-emp_profile_msg-emp_name = 'Sravya'.
    it-emp_profile_msg-empno = '80101'.
    it-emp_profile_msg-DEPARTMENT_NAME = 'NetWeaver'.
    CALL METHOD prxy->execute_asynchronous
    EXPORTING
    output = it.
    commit work
    CATCH cx_ai_system_fault .
    DATA fault TYPE REF TO cx_ai_system_fault .
    CREATE OBJECT fault.
    WRITE :/ fault->errortext.
    ENDTRY.
    if message type consists structure inside strucutre ..then how to populate those sructure

    Hi Sunil,
    Please don't mind, but I think I already have posted the answer for this query and have provided some links
    Please see the below mail.
    urgent related to Mesage types and proxy
    Please let me know if you need anything else than the given info.
    I have one sample program where we have deal with these kind of sub-sturctures
    Thanks
    Swarup

  • Formating the mail body

    Hi to all
    Is it possible to format the mail body that we create using FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' like a rich user interface?
    Kindly suggest.
    Thanks & Regards
    Vipin

    Its possible to give html tags in the body internal table thereby make it a rich user interface. For html you may need to use document type as HTM.
    I 've given an example in this link. Please have a look.
    Re: Bold, Colors in mail - Urgent
    Rgds,
    TM.

  • Some accounts don't retrieve mail

    Hi,
    I have 4 accounts in my mail settings. Only the first 2 (.mac and another) seem to be working fine. Mail does not retrieve mail from the other 2 accounts (2 different domains). When looking at the activity window during 'get mail' I see that it checks my first domain but doesn't even looks at the other two.
    I already deleted the 'envelope index' but the problems remains.
    Has any one a suggestion ? I need my mails urgently...
    Thank you

    For some reason Mail has put some accounts 'off line'... When putting the online again everything worked again. Sorry for the fuss.
    R.

  • Mail for Exchange: "Unknown Error"

    I don't wanna open new post about the problem with MfE so i will post here...
    So, I've donwloaded MfE, install it and now I'm trying to configure my account. First there is some Nokia privacy policy screen, Agree-->Check-->Next. Now there is Credentials screen, Email-typed, Domain-typed, Username-typed,Password-typed. My question here is next: are username and password the one from my Nokia account, or is it something else? Next screen is also Credentials, but now I have fields: Email-typed, Server-typed, Domain-typed, Username-typed (the one from Nokia account), Password-typed (the one from Nokia account), Use SSL-no --> Go -->Checking your credentials with the server --> UNKNOWN ERROR.
    Please can anyone help me to properly configure my mail acc, I need this for my buisness mail urgently!
    Moderator's note: we have created a new topic for your post so that other users can easily help you and we have edited its subject as well for it to be more related to your concern. 

    You've done a good job troubleshooting this and it seems like strange problem. First I've heard of this anyway.
    Can you tell me:
    - Are you using the servername only, without M-S-A, in the name, meaning only the "server" portion in https://server/Microsoft-Server-Activesync?
    If not, our client is appending another M-S-A, meaning it's looking for
    https://server/Microsoft-Server-Activesync/Microsoft-Server-Activesync
    which is not valid and will result in 404.
    - Also try not using the domain namein domain setting (leave it blank). This is optional in MfE. I've seen this solve problems in some unusual cases.

  • I cannot install office 2011 onto macbook pro?

    I have a macbook pro OSX mavericks or what ever it is called... I wish to install Microsoft office 11 but I can't because of this? http://i.imgur.com/FhUIDBw.png http://imgur.com/trpdOKO When I try to open up the application "pages" sometimes it quits unexpectedly. and I need office because I need to send documents via e-mail urgently and I can't seem to do that with pages. Also with my skype, it unexpectedly quits all the time as well and I am not sure why! I have tried installing the apps several times, I have been to the /user/library and went into the applicaiton support folder and the cookies and what ever else and deleted the files I had to from there. I went to disk utility and tried to see if i could repair things over there but still no help. I tried starting up the computer in safe mode several times. I have all the latest software and updates for everything on my macbook. My memory and RAM is fine. I think it has something to do with the hard drive, im not to sure... I believe maybe all of these are linked to the same problem and was wondering if anyone could help? Here is the skype crash report codes if that helps? Process:        Skype [8266] Path:            /Volumes/VOLUME/Skype.app/Contents/MacOS/Skype Identifier:      com.skype.skype Version:        6.19 (6.19.0.450) Code Type:      X86 (Native) Parent Process:  launchd [959] Responsible:    Skype [8266] User ID:        501 Date/Time:      2014-09-09 11:34:51.267 +1000 OS Version:      Mac OS X 10.9.4 (13E28) Report Version:  11 Anonymous UUID:  C9875D16-3466-5917-FE3D-C7BD3F9092CC Sleep/Wake UUID: 848FFC69-E2A4-4210-8281-1C6612A4ADDB Crashed Thread:  1 Exception Type:  EXC_CRASH (SIGBUS) Exception Codes: 0x0000000000000000, 0x0000000000000000 Thread 0:: Dispatch queue: com.apple.main-thread 0  libobjc.A.dylib              0x9a28780f classHash(void*, objc_class*) + 13 1  libobjc.A.dylib              0x9a2784e6 _read_images + 643 2  libobjc.A.dylib              0x9a2779f1 map_images_nolock + 1499 3  libobjc.A.dylib              0x9a2773fd map_images + 53 4  dyld                          0x8fe9b6ae dyld::notifyBatchPartial(dyld_image_states, bool, char const* (*)(dyld_image_states, unsigned int, dyld_image_info const*)) + 761 5  dyld                          0x8fe991d1 dyld::notifyBatch(dyld_image_states) + 23 6  dyld                          0x8fea5772 ImageLoader::link(ImageLoader::LinkContext const&, bool, bool, bool, ImageLoader::RPathChain const&) + 264 7  dyld                          0x8fe9b905 dyld::link(ImageLoader*, bool, bool, ImageLoader::RPathChain const&) + 176 8  dyld                          0x8fea31ef dlopen + 459 9  libdyld.dylib                0x99156b75 dlopen + 70 10  com.apple.CoreFoundation      0x9b58b967 _CFBundleDlfcnLoadBundle + 199 11  com.apple.CoreFoundation      0x9b58b129 _CFBundleLoadExecutableAndReturnError + 745 12  com.apple.Foundation          0x99a471bc _NSBundleLoadCode + 880 13  com.apple.Foundation          0x99a46c84 -[NSBundle loadAndReturnError:] + 245 14  com.skype.skype              0x002e0819 0x1000 + 3012633 15  com.apple.Foundation          0x99a6f95e -[NSBundle load] + 41 16  com.macromedia.Flash Player.plugin 0x10bedfce 0x10bec000 + 8142 17  com.macromedia.Flash Player.plugin 0x10bed30a 0x10bec000 + 4874 18  com.macromedia.Flash Player.plugin 0x10bed28a NP_Initialize + 42 19  com.apple.WebKit              0x9a5464de -[WebNetscapePluginPackage _tryLoad] + 862 20  com.apple.WebKit              0x9a546543 -[WebNetscapePluginPackage load] + 35 21  com.apple.WebKit              0x9a54c233 -[WebNetscapePluginDocumentView initWithFrame:pluginPackage:URL:baseURL:MIMEType:attributeKeys:attributeValues: loadManually:element:] + 403 22  com.apple.WebKit              0x9a4f455d WebFrameLoaderClient::createPlugin(WebCore::IntSize const&, WebCore::HTMLPlugInElement*, WebCore::KURL const&, ***::Vector const&, ***::Vector const&, ***::String const&, bool) + 3181 23  com.apple.WebCore            0x980dbd80 WebCore::SubframeLoader::loadPlugin(WebCore::HTMLPlugInImageElement*, WebCore::KURL const&, ***::String const&, ***::Vector const&, ***::Vector const&, bool) + 256 24  com.apple.WebCore            0x9801313f WebCore::SubframeLoader::requestPlugin(WebCore::HTMLPlugInImageElement*, WebCore::KURL const&, ***::String const&, ***::Vector const&, ***::Vector const&, bool) + 191 25  com.apple.WebCore            0x98012e44 WebCore::SubframeLoader::requestObject(WebCore::HTMLPlugInImageElement*, ***::String const&, ***::AtomicString const&, ***::String const&, ***::Vector const&, ***::Vector const&) + 404 26  com.apple.WebCore            0x98011aa3 WebCore::HTMLObjectElement::updateWidget(WebCore::PluginCreationOption) + 963 27  com.apple.WebCore            0x98014187 WebCore::FrameView::updateWidget(WebCore::RenderObject*) + 263 28  com.apple.WebCore            0x97e198cb WebCore::FrameView::updateWidgets() + 315 29  com.apple.WebCore            0x97e141ee WebCore::FrameView::performPostLayoutTasks() + 366 30  com.apple.WebCore            0x97f99f27 WebCore::Timer::fired() + 39 31  com.apple.WebCore            0x97d6de90 WebCore::ThreadTimers::sharedTimerFiredInternal() + 192 32  com.apple.WebCore            0x97d6ddb4 WebCore::ThreadTimers::sharedTimerFired() + 84 33  com.apple.WebCore            0x97d6dd40 WebCore::timerFired(__CFRunLoopTimer*, void*) + 64 34  com.apple.CoreFoundation      0x9b5aaea6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22 35  com.apple.CoreFoundation      0x9b5aa863 __CFRunLoopDoTimer + 1395 36  com.apple.CoreFoundation      0x9b62506d __CFRunLoopDoTimers + 349 37  com.apple.CoreFoundation      0x9b562353 __CFRunLoopRun + 1779 38  com.apple.CoreFoundation      0x9b5619ea CFRunLoopRunSpecific + 394 39  com.apple.CoreFoundation      0x9b56184b CFRunLoopRunInMode + 123 40  com.apple.HIToolbox          0x9a5f6b5d RunCurrentEventLoopInMode + 259 41  com.apple.HIToolbox          0x9a5f68e2 ReceiveNextEventCommon + 526 42  com.apple.HIToolbox          0x9a5f66bd _BlockUntilNextEventMatchingListInModeWithFilter + 92 43  com.apple.AppKit              0x93886349 _DPSNextEvent + 1602 44  com.apple.AppKit              0x93885870 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119 45  com.apple.AppKit              0x9387815c -[NSApplication run] + 727 46  com.apple.AppKit              0x93860ff8 NSApplicationMain + 1165 47  libdyld.dylib                0x99157701 start + 1 Thread 1 Crashed: 0  libsystem_kernel.dylib        0x903f3046 __workq_kernreturn + 10 1  libsystem_pthread.dylib      0x9931edcf _pthread_wqthread + 372 2  libsystem_pthread.dylib      0x99322cce start_wqthread + 30 Thread 2:: Dispatch queue: com.apple.libdispatch-manager 0  libsystem_kernel.dylib        0x903f3992 kevent64 + 10 1  libdispatch.dylib            0x9c1ae899 _dispatch_mgr_invoke + 238 2  libdispatch.dylib            0x9c1ae532 _dispatch_mgr_thread + 52 Thread 3: 0  libsystem_kernel.dylib        0x903f2802 __psynch_mutexwait + 10 1  libsystem_pthread.dylib      0x99320945 _pthread_mutex_lock + 404 2  libsystem_pthread.dylib      0x993207ac pthread_mutex_lock + 16 3  libobjc.A.dylib              0x9a27a232 look_up_class + 57 4  libobjc.A.dylib              0x9a27a1f0 objc_lookUpClass + 37 5  com.apple.CoreFoundation      0x9b572697 _CFRunLoopGet2 + 135 6  com.apple.Foundation          0x99a98a11 -[NSThread runLoop] + 58 7  com.apple.Foundation          0x99a986f1 __doThreadCleanup + 77 8  com.apple.Foundation          0x99a9823f __NSFinalizeThreadData + 537 9  com.apple.CoreFoundation      0x9b5c9b42 __CFTSDFinalize + 82 10  libsystem_pthread.dylib      0x9932187d _pthread_tsd_cleanup + 190 11  libsystem_pthread.dylib      0x9931e27e _pthread_exit + 108 12  libsystem_pthread.dylib      0x9931edd8 _pthread_wqthread + 381 13  libsystem_pthread.dylib      0x99322cce start_wqthread + 30 Thread 4: 0  libsystem_kernel.dylib        0x903edf7a mach_msg_trap + 10 1  libsystem_kernel.dylib        0x903ed16c mach_msg + 68 2  com.apple.CoreFoundation      0x9b562bf9 __CFRunLoopServiceMachPort + 169 3  com.apple.CoreFoundation      0x9b5621d1 __CFRunLoopRun + 1393 4  com.apple.CoreFoundation      0x9b5619ea CFRunLoopRunSpecific + 394 5  com.apple.CoreFoundation      0x9b56184b CFRunLoopRunInMode + 123 6  com.apple.AppKit              0x93a2fb88 _NSEventThread + 283 7  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 8  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 9  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 5: 0  libsystem_kernel.dylib        0x903edfb6 semaphore_wait_trap + 10 1  libdispatch.dylib            0x9c1b10a4 _dispatch_semaphore_wait_slow + 274 2  libdispatch.dylib            0x9c1b0f1f dispatch_semaphore_wait + 37 3  ???                          0x00f635f8 0 + 16135672 4  ???                          0x00f5308f 0 + 16068751 5  ???                          0x00f534fa 0 + 16069882 6  ???                          0x00f4b628 0 + 16037416 7  ???                          0x00f4b8d0 0 + 16038096 8  ???                          0x00f57c96 0 + 16088214 9  ???                          0x00f5927a 0 + 16093818 10  ???                          0x00f52f3b 0 + 16068411 11  ???                          0x00f62cf4 0 + 16133364 12  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 13  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 14  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 6: 0  libsystem_kernel.dylib        0x903edfb6 semaphore_wait_trap + 10 1  libdispatch.dylib            0x9c1b10a4 _dispatch_semaphore_wait_slow + 274 2  libdispatch.dylib            0x9c1b0f1f dispatch_semaphore_wait + 37 3  ???                          0x00f63776 0 + 16136054 4  ???                          0x00f557b0 0 + 16078768 5  ???                          0x00f559b1 0 + 16079281 6  ???                          0x00f52f3b 0 + 16068411 7  ???                          0x00f62cf4 0 + 16133364 8  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 9  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 10  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 7: 0  libsystem_kernel.dylib        0x903edf7a mach_msg_trap + 10 1  libsystem_kernel.dylib        0x903ed16c mach_msg + 68 2  com.apple.CoreFoundation      0x9b562bf9 __CFRunLoopServiceMachPort + 169 3  com.apple.CoreFoundation      0x9b5621d1 __CFRunLoopRun + 1393 4  com.apple.CoreFoundation      0x9b5619ea CFRunLoopRunSpecific + 394 5  com.apple.CoreFoundation      0x9b624221 CFRunLoopRun + 129 6  com.skype.skype              0x00323b83 0x1000 + 3287939 Thread 8: 0  com.skype.skype              0x007355d7 0x1000 + 7554519 Thread 9: 0  libsystem_kernel.dylib        0x903f3976 kevent + 10 1  com.skype.skype              0x003ed511 0x1000 + 4113681 2  com.skype.skype              0x0001ffff 0x1000 + 126975 Thread 10: 0  libsystem_kernel.dylib        0x903edf7a mach_msg_trap + 10 1  libsystem_kernel.dylib        0x903ed16c mach_msg + 68 2  com.apple.cmio.DAL.VDC-4      0x08da7d97 0x8da7000 + 3479 3  com.apple.cmio.DAL.VDC-4      0x08dc583e 0x8da7000 + 124990 4  com.apple.cmio.DAL.VDC-4      0x08dba272 0x8da7000 + 78450 5  com.apple.cmio.DAL.VDC-4      0x08db60e4 0x8da7000 + 61668 6  com.apple.CoreMediaIO        0x962f2060 CMIO::DAL::PlugIn::Initialize() + 30 7  com.apple.CoreMediaIO        0x962f359d CMIO::DAL::PlugInManagement::CreatePlugIn(CMIO::DAL::CFPlugIn const*) + 881 8  com.apple.CoreMediaIO        0x962f2a25 CMIO::DAL::PlugInManagement::Initialize() + 357 9  com.apple.CoreMediaIO        0x962f61f3 CMIO::DAL::System::InitializeDevices() + 11 10  com.apple.CoreMediaIO        0x962f64b6 CMIO::DAL::System::CheckOutInstance() + 440 11  com.apple.CoreMediaIO        0x96320403 CMIOObjectGetPropertyDataSize + 174 12  com.apple.avfoundation        0x9010557c +[AVCaptureDALDevice _refreshDevices] + 242 13  com.apple.avfoundation        0x901053eb +[AVCaptureDALDevice devices] + 54 14  com.apple.avfoundation        0x90102c72 +[AVCaptureDevice devices] + 311 15  com.apple.avfoundation        0x90108e1b +[AVCaptureDevice devicesWithMediaType:] + 56 16  ???                          0x011c13c8 0 + 18617288 17  ???                          0x011c12e2 0 + 18617058 18  ???                          0x0119b02f 0 + 18460719 19  ???                          0x0119a210 0 + 18457104 20  ???                          0x0123eeee 0 + 19132142 21  ???                          0x0123edb8 0 + 19131832 22  ???                          0x0123e98f 0 + 19130767 23  com.skype.skype              0x00541772 0x1000 + 5506930 Thread 11: 0  libsystem_kernel.dylib        0x903f27ca __psynch_cvwait + 10 1  libsystem_pthread.dylib      0x9931fd1d _pthread_cond_wait + 728 2  libsystem_pthread.dylib      0x99321bd9 pthread_cond_wait$UNIX2003 + 71 3  ???                          0x00f62c5f 0 + 16133215 4  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 5  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 6  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 12: 0  libsystem_kernel.dylib        0x903edfce semaphore_timedwait_trap + 10 1  libdispatch.dylib            0x9c1b1064 _dispatch_semaphore_wait_slow + 210 2  libdispatch.dylib            0x9c1b0f1f dispatch_semaphore_wait + 37 3  ???                          0x00f63776 0 + 16136054 4  ???                          0x00f575bb 0 + 16086459 5  ???                          0x00f576e1 0 + 16086753 6  ???                          0x00f52f3b 0 + 16068411 7  ???                          0x00f62cf4 0 + 16133364 8  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 9  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 10  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 13: 0  libsystem_kernel.dylib        0x903f3976 kevent + 10 1  ???                          0x00f5b40a 0 + 16102410 2  ???                          0x00f5dca9 0 + 16112809 3  ???                          0x00f52f3b 0 + 16068411 4  ???                          0x00f62cf4 0 + 16133364 5  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 6  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 7  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 14: 0  libsystem_kernel.dylib        0x903edfb6 semaphore_wait_trap + 10 1  libdispatch.dylib            0x9c1b10a4 _dispatch_semaphore_wait_slow + 274 2  libdispatch.dylib            0x9c1b0f1f dispatch_semaphore_wait + 37 3  ???                          0x00f635f8 0 + 16135672 4  ???                          0x00f4bce8 0 + 16039144 5  com.skype.skype              0x003e90c6 0x1000 + 4096198 Thread 15: 0  libsystem_kernel.dylib        0x903f27ca __psynch_cvwait + 10 1  libsystem_pthread.dylib      0x9931fd1d _pthread_cond_wait + 728 2  libsystem_pthread.dylib      0x99321bd9 pthread_cond_wait$UNIX2003 + 71 3  ???                          0x0116500f 0 + 18239503 4  ???                          0x01017f38 0 + 16875320 5  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 6  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 7  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 16: 0  libsystem_kernel.dylib        0x903ee082 syscall_thread_switch + 10 1  libsystem_platform.dylib      0x975596b0 _OSSpinLockLockSlow + 58 2  com.apple.CoreFoundation      0x9b5c9dfe _CFRunLoopGet0b + 142 3  com.apple.Foundation          0x99a986d4 __doThreadCleanup + 48 4  com.apple.Foundation          0x99a9823f __NSFinalizeThreadData + 537 5  com.apple.CoreFoundation      0x9b5c9b42 __CFTSDFinalize + 82 6  libsystem_pthread.dylib      0x9932187d _pthread_tsd_cleanup + 190 7  libsystem_pthread.dylib      0x9931e27e _pthread_exit + 108 8  libsystem_pthread.dylib      0x9931edd8 _pthread_wqthread + 381 9  libsystem_pthread.dylib      0x99322cce start_wqthread + 30 Thread 17: 0  libsystem_kernel.dylib        0x903f3046 __workq_kernreturn + 10 1  libsystem_pthread.dylib      0x9931edcf _pthread_wqthread + 372 2  libsystem_pthread.dylib      0x99322cce start_wqthread + 30 Thread 18: 0  libsystem_kernel.dylib        0x903edfb6 semaphore_wait_trap + 10 1  libdispatch.dylib            0x9c1b10a4 _dispatch_semaphore_wait_slow + 274 2  libdispatch.dylib            0x9c1b0f1f dispatch_semaphore_wait + 37 3  ???                          0x00f635f8 0 + 16135672 4  ???                          0x00f4bce8 0 + 16039144 5  ???                          0x00ed0bdb 0 + 15535067 6  ???                          0x00e8efcb 0 + 15265739 7  ???                          0x00ed1092 0 + 15536274 8  ???                          0x00f52f3b 0 + 16068411 9  ???                          0x00f62cf4 0 + 16133364 10  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 11  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 12  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 19:: com.apple.NSURLConnectionLoader 0  libsystem_kernel.dylib        0x903edf7a mach_msg_trap + 10 1  libsystem_kernel.dylib        0x903ed16c mach_msg + 68 2  com.apple.CoreFoundation      0x9b562bf9 __CFRunLoopServiceMachPort + 169 3  com.apple.CoreFoundation      0x9b5621d1 __CFRunLoopRun + 1393 4  com.apple.CoreFoundation      0x9b5619ea CFRunLoopRunSpecific + 394 5  com.apple.CoreFoundation      0x9b56184b CFRunLoopRunInMode + 123 6  com.apple.Foundation          0x99a72095 +[NSURLConnection(Loader) _resourceLoadLoop:] + 381 7  com.apple.Foundation          0x99a71f0e -[NSThread main] + 45 8  com.apple.Foundation          0x99a71e66 __NSThread__main__ + 1426 9  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 10  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 11  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 20:: JavaScriptCore::BlockFree 0  libsystem_kernel.dylib        0x903f27ca __psynch_cvwait + 10 1  libsystem_pthread.dylib      0x9931fd1d _pthread_cond_wait + 728 2  libsystem_pthread.dylib      0x99321bd9 pthread_cond_wait$UNIX2003 + 71 3  com.apple.JavaScriptCore      0x9095eae4 JSC::BlockAllocator::blockFreeingThreadMain() + 276 4  com.apple.JavaScriptCore      0x90955e1c ***::threadEntryPoint(void*) + 76 5  com.apple.JavaScriptCore      0x90955db0 ***::wtfThreadEntryPoint(void*) + 16 6  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 7  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 8  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 21:: JavaScriptCore::Marking 0  libsystem_kernel.dylib        0x903f27ca __psynch_cvwait + 10 1  libsystem_pthread.dylib      0x9931fd1d _pthread_cond_wait + 728 2  libsystem_pthread.dylib      0x99321bd9 pthread_cond_wait$UNIX2003 + 71 3  com.apple.JavaScriptCore      0x9095f4eb JSC::GCThread::waitForNextPhase() + 123 4  com.apple.JavaScriptCore      0x9095f378 JSC::GCThread::gcThreadMain() + 88 5  com.apple.JavaScriptCore      0x90955e1c ***::threadEntryPoint(void*) + 76 6  com.apple.JavaScriptCore      0x90955db0 ***::wtfThreadEntryPoint(void*) + 16 7  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 8  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 9  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 22:: JavaScriptCore::Marking 0  libsystem_kernel.dylib        0x903f27ca __psynch_cvwait + 10 1  libsystem_pthread.dylib      0x9931fd1d _pthread_cond_wait + 728 2  libsystem_pthread.dylib      0x99321bd9 pthread_cond_wait$UNIX2003 + 71 3  com.apple.JavaScriptCore      0x9095f4eb JSC::GCThread::waitForNextPhase() + 123 4  com.apple.JavaScriptCore      0x9095f378 JSC::GCThread::gcThreadMain() + 88 5  com.apple.JavaScriptCore      0x90955e1c ***::threadEntryPoint(void*) + 76 6  com.apple.JavaScriptCore      0x90955db0 ***::wtfThreadEntryPoint(void*) + 16 7  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 8  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 9  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 23:: JavaScriptCore::Marking 0  libsystem_kernel.dylib        0x903f27ca __psynch_cvwait + 10 1  libsystem_pthread.dylib      0x9931fd1d _pthread_cond_wait + 728 2  libsystem_pthread.dylib      0x99321bd9 pthread_cond_wait$UNIX2003 + 71 3  com.apple.JavaScriptCore      0x9095f4eb JSC::GCThread::waitForNextPhase() + 123 4  com.apple.JavaScriptCore      0x9095f378 JSC::GCThread::gcThreadMain() + 88 5  com.apple.JavaScriptCore      0x90955e1c ***::threadEntryPoint(void*) + 76 6  com.apple.JavaScriptCore      0x90955db0 ***::wtfThreadEntryPoint(void*) + 16 7  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 8  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 9  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 24:: WebCore: LocalStorage 0  libsystem_kernel.dylib        0x903f27ca __psynch_cvwait + 10 1  libsystem_pthread.dylib      0x9931fd1d _pthread_cond_wait + 728 2  libsystem_pthread.dylib      0x99321bd9 pthread_cond_wait$UNIX2003 + 71 3  com.apple.JavaScriptCore      0x9095eec3 ***::ThreadCondition::timedWait(***::Mutex&, double) + 67 4  com.apple.WebCore            0x9899ac88 ***::PassOwnPtr > ***::MessageQueue >::waitForMessageFilteredWithTimeout*)>(***::MessageQueueWaitResult&, bool (&)(***::Function*), double) + 120 5  com.apple.WebCore            0x9899a474 WebCore::StorageThread::threadEntryPoint() + 212 6  com.apple.JavaScriptCore      0x90955e1c ***::threadEntryPoint(void*) + 76 7  com.apple.JavaScriptCore      0x90955db0 ***::wtfThreadEntryPoint(void*) + 16 8  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 9  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 10  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 25: 0  libsystem_kernel.dylib        0x903f27ca __psynch_cvwait + 10 1  libsystem_pthread.dylib      0x9931fd1d _pthread_cond_wait + 728 2  libsystem_pthread.dylib      0x99321bd9 pthread_cond_wait$UNIX2003 + 71 3  ???                          0x0116500f 0 + 18239503 4  ???                          0x01065117 0 + 17191191 5  ???                          0x010652c6 0 + 17191622 6  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 7  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 8  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 26: 0  libsystem_kernel.dylib        0x903f27ca __psynch_cvwait + 10 1  libsystem_pthread.dylib      0x9931fd1d _pthread_cond_wait + 728 2  libsystem_pthread.dylib      0x99321bd9 pthread_cond_wait$UNIX2003 + 71 3  ???                          0x0116500f 0 + 18239503 4  ???                          0x01156b4e 0 + 18180942 5  ???                          0x0115a291 0 + 18195089 6  ???                          0x01153ae6 0 + 18168550 7  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 8  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 9  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 27: 0  libsystem_kernel.dylib        0x903edfb6 semaphore_wait_trap + 10 1  libdispatch.dylib            0x9c1b10a4 _dispatch_semaphore_wait_slow + 274 2  libdispatch.dylib            0x9c1b0f1f dispatch_semaphore_wait + 37 3  ???                          0x00f635f8 0 + 16135672 4  ???                          0x00f4bce8 0 + 16039144 5  ???                          0x0147cd04 0 + 21482756 6  ???                          0x0147e5b4 0 + 21489076 7  ???                          0x01484aa4 0 + 21514916 8  ???                          0x01484f61 0 + 21516129 9  ???                          0x00f52f3b 0 + 16068411 10  ???                          0x00f62cf4 0 + 16133364 11  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 12  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 13  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 28:: com.apple.CFSocket.private 0  libsystem_kernel.dylib        0x903f2ace __select + 10 1  com.apple.CoreFoundation      0x9b5b2ae6 __CFSocketManager + 1158 2  libsystem_pthread.dylib      0x9931d5fb _pthread_body + 144 3  libsystem_pthread.dylib      0x9931d485 _pthread_start + 130 4  libsystem_pthread.dylib      0x99322cf2 thread_start + 34 Thread 29: 0  libsystem_kernel.dylib        0x903ee082 syscall_thread_switch + 10 1  libsystem_platform.dylib      0x975596b0 _OSSpinLockLockSlow + 58 2  com.apple.CoreFoundation      0x9b5c9dfe _CFRunLoopGet0b + 142 3  com.apple.Foundation          0x99a986d4 __doThreadCleanup + 48 4  com.apple.Foundation          0x99a9823f __NSFinalizeThreadData + 537 5  com.apple.CoreFoundation      0x9b5c9b42 __CFTSDFinalize + 82 6  libsystem_pthread.dylib      0x9932187d _pthread_tsd_cleanup + 190 7  libsystem_pthread.dylib      0x9931e27e _pthread_exit + 108 8  libsystem_pthread.dylib      0x9931edd8 _pthread_wqthread + 381 9  libsystem_pthread.dylib      0x99322cce start_wqthread + 30 Thread 30:: Dispatch queue: com.apple.root.default-priority 0  libsystem_kernel.dylib        0x903f1f5e __fcntl + 10 1  ???                          0x00f6072c 0 + 16123692 2  com.skype.skype              0x00405ce0 0x1000 + 4213984 Thread 31:: Dispatch queue: com.apple.root.default-priority 0  libsystem_kernel.dylib        0x903ee082 syscall_thread_switch + 10 1  libsystem_platform.dylib      0x975596b0 _OSSpinLockLockSlow + 58 2  com.apple.CoreFoundation      0x9b53c0ce _CFRunLoopGet0 + 142 3  com.apple.Foundation          0x99a38aec threadRunLoop + 45 4  com.apple.Foundation          0x99a38805 -[NSThread _nq:] + 196 5  com.apple.Foundation          0x99a3864c -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 698 6  com.apple.Foundation          0x99a382a5 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 159 7  ???                          0x01567144 0 + 22442308 8  ???                          0x01560e74 0 + 22417012 9  com.skype.skype              0x007470e6 0x1000 + 7626982 Thread 1 crashed with X86 Thread State (32-bit):   eax: 0x00100170  ebx: 0x00001103  ecx: 0xb0080f9c  edx: 0x903f3046   edi: 0x9931ec69  esi: 0xb0081000  ebp: 0xb0080fc8  esp: 0xb0080f9c   ss: 0x00000023  efl: 0x00000282  eip: 0x903f3046  cs: 0x0000000b   ds: 0x00000023  es: 0x00000023  fs: 0x00000023  gs: 0x0000000f   cr2: 0x0b166ffe   Logical CPU:    0 Error Code:      0x00100170 Trap Number:    132 Binary Images:     0x1000 -  0xa75fff +com.skype.skype (6.19 - 6.19.0.450) /Volumes/VOLUME/Skype.app/Contents/MacOS/Skype 0x1da5000 -  0x1dbdff7  com.apple.ScriptingBridge (1.3.1 - 63) /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge 0x1f00000 -  0x1f41ffd +net.hockeyapp.sdk.mac (2.1.0 - 24) /Volumes/VOLUME/Skype.app/Contents/Frameworks/HockeySDK.framework/Versions/A/Ho ckeySDK 0x7bd6000 -  0x7bdaffd  com.apple.audio.AppleHDAHALPlugIn (2.6.3 - 2.6.3f4) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn 0x8da7000 -  0x8dcffff  com.apple.cmio.DAL.VDC-4 (408.0 - 4570) /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/ MacOS/VDC 0x8f00000 -  0x8f7dffa  com.apple.xquery (1.3.1 - 30) /System/Library/PrivateFrameworks/XQuery.framework/XQuery 0xa584000 -  0xa58dff2  com.apple.CaptiveNetworkSupport (13.0 - 1) /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork 0xaf14000 -  0xaf15ff5 +cl_kernels (???) cl_kernels 0xaf22000 -  0xaf23fff +cl_kernels (???) cl_kernels 0xc000000 -  0xc0ebff7  unorm8_bgra.dylib (2.3.58) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib 0xc163000 -  0xc176ffb  com.apple.webcontentfilter.framework (5.1 - 5.1) /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is 0xc186000 -  0xc1a9fff  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping 0x10bec000 - 0x10befff6 +com.macromedia.Flash Player.plugin (14.0.0.176 - 14.0.0.176) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player 0x11002000 - 0x121e1ffb +com.macromedia.FlashPlayer-10.6.plugin (14.0.0.176 - 14.0.0.176) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6 0x8fe97000 - 0x8fec9417  dyld (239.4) /usr/lib/dyld 0x90008000 - 0x900d6ff7  com.apple.backup.framework (1.5.4 - 1.5.4) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x900d7000 - 0x90204ff3  com.apple.avfoundation (2.0 - 651.12.1) /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x9022f000 - 0x902fffef  libvDSP.dylib (423.32) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib 0x90300000 - 0x90336fff  com.apple.IconServices (25 - 25.17) /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s 0x90337000 - 0x9033effe  com.apple.agl (3.2.3 - AGL-3.2.3) /System/Library/Frameworks/AGL.framework/Versions/A/AGL 0x9033f000 - 0x9033ffff  libkeymgr.dylib (28) /usr/lib/system/libkeymgr.dylib 0x90340000 - 0x90340fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib 0x90341000 - 0x90341ffe  com.apple.AOSMigrate (1.0 - 1) /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate 0x90342000 - 0x9034cff2  com.apple.AppSandbox (3.0 - 1) /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox 0x903af000 - 0x903daff7  libpcap.A.dylib (42) /usr/lib/libpcap.A.dylib 0x903db000 - 0x903f8ff4  libsystem_kernel.dylib (2422.110.17) /usr/lib/system/libsystem_kernel.dylib 0x903f9000 - 0x90407fff  libxar.1.dylib (202) /usr/lib/libxar.1.dylib 0x90408000 - 0x90411fff  libsystem_notify.dylib (121) /usr/lib/system/libsystem_notify.dylib 0x90412000 - 0x9047bfff  com.apple.SystemConfiguration (1.13.1 - 1.13.1) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration 0x9047c000 - 0x904d1fff  libc++.1.dylib (120) /usr/lib/libc++.1.dylib 0x904d2000 - 0x90906ff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x90907000 - 0x9091eff4  com.apple.CoreMediaAuthoring (2.2 - 947) /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring 0x9091f000 - 0x9092afff  libcsfde.dylib (380) /usr/lib/libcsfde.dylib 0x9092b000 - 0x90932fff  libMatch.1.dylib (19) /usr/lib/libMatch.1.dylib 0x90933000 - 0x9094cfff  libAVFAudio.dylib (32.2) /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib 0x9094d000 - 0x90c74ffb  com.apple.JavaScriptCore (9537 - 9537.77.1) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x90c75000 - 0x90c88ff7  com.apple.idsfoundation (10.0 - 1000) /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion 0x90c89000 - 0x90cd9ff7  libcorecrypto.dylib (161.1) /usr/lib/system/libcorecrypto.dylib 0x90cda000 - 0x90f56fe7  com.apple.QuickTime (7.7.3 - 2826.19) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime 0x91060000 - 0x9109eff7  com.apple.NavigationServices (3.8 - 215) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices 0x9109f000 - 0x9109ffff  libodfde.dylib (20) /usr/lib/libodfde.dylib 0x910a0000 - 0x910a4ffa  libGIF.dylib (1043) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x910a5000 - 0x910c9fff  libJPEG.dylib (1043) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x910ca000 - 0x91107ff7  libauto.dylib (185.5) /usr/lib/libauto.dylib 0x91108000 - 0x91164ffa  com.apple.print.framework.PrintCore (9.0 - 428) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore 0x91165000 - 0x9116fff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce 0x91170000 - 0x91170fff  com.apple.quartzframework (1.5 - 1.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x91171000 - 0x911a9fff  com.apple.LDAPFramework (2.4.28 - 194.5) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 0x911aa000 - 0x911ffff7  com.apple.framework.internetaccounts (2.1 - 210) /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts 0x91200000 - 0x91204ffa  libcache.dylib (62) /usr/lib/system/libcache.dylib 0x912ba000 - 0x912c5ffb  libcommonCrypto.dylib (60049) /usr/lib/system/libcommonCrypto.dylib 0x912c6000 - 0x91350ff7  com.apple.CoreSymbolication (3.0.1 - 141.0.5) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication 0x91351000 - 0x913e9ff7  com.apple.Metadata (10.7.0 - 800.28) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata 0x913ea000 - 0x9143efff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x9143f000 - 0x91445ffb  libunwind.dylib (35.3) /usr/lib/system/libunwind.dylib 0x91446000 - 0x9149cff6  com.apple.ScalableUserInterface (1.0 - 1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface 0x9149d000 - 0x914ceffa  libsystem_m.dylib (3047.16) /usr/lib/system/libsystem_m.dylib 0x914cf000 - 0x914cffff  com.apple.ApplicationServices (48 - 48) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services 0x914d0000 - 0x91525ff3  com.apple.ImageCaptureCore (5.0 - 5.0) /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re 0x91526000 - 0x9152dff7  com.apple.XPCService (2.0 - 1) /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService 0x9152e000 - 0x9152ffff  liblangid.dylib (117) /usr/lib/liblangid.dylib 0x91530000 - 0x91955fe3  com.apple.VideoToolbox (1.0 - 1273.54) /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x91956000 - 0x91957fff  libDiagnosticMessagesClient.dylib (100) /usr/lib/libDiagnosticMessagesClient.dylib 0x91958000 - 0x91a56fff  libJP2.dylib (1043) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x91a57000 - 0x91b8efff  com.apple.desktopservices (1.8.3 - 1.8.3) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv 0x91b8f000 - 0x91be0ff1  libstdc++.6.dylib (60) /usr/lib/libstdc++.6.dylib 0x91be1000 - 0x91d43ffb  com.apple.CFNetwork (673.4 - 673.4) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x92505000 - 0x92507fff  libsystem_configuration.dylib (596.15) /usr/lib/system/libsystem_configuration.dylib 0x92508000 - 0x925ebff7  libcrypto.0.9.8.dylib (50) /usr/lib/libcrypto.0.9.8.dylib 0x925ec000 - 0x929e4ffb  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x929e5000 - 0x92a65ff7  com.apple.CoreServices.OSServices (600.4 - 600.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices 0x92a66000 - 0x92ad1fff  com.apple.Heimdal (4.0 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x92ad2000 - 0x92ad5ff9  com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x92ad6000 - 0x92d55ff7  com.apple.imageKit (2.5 - 774) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit 0x92d56000 - 0x92d9cff7  libFontRegistry.dylib (127) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x92da4000 - 0x92da9ff6  com.apple.ServerInformation (2.1.1 - 1) /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information 0x92daa000 - 0x92daefff  libheimdal-asn1.dylib (323.92.1) /usr/lib/libheimdal-asn1.dylib 0x92daf000 - 0x92db8fff  com.apple.DiskArbitration (2.6 - 2.6) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x92db9000 - 0x92e4afff  com.apple.ColorSync (4.9.0 - 4.9.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync 0x92e4b000 - 0x92e73ff7  libRIP.A.dylib (599.25.10.1) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib 0x92e82000 - 0x92ed7ff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x92f47000 - 0x92f4ffee  libcldcpuengine.dylib (2.3.58) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib 0x92f50000 - 0x92f54fff  com.apple.CommonPanels (1.2.6 - 96) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels 0x92f55000 - 0x92f56fff  libSystem.B.dylib (1197.1.1) /usr/lib/libSystem.B.dylib 0x92f57000 - 0x92f57ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x92f58000 - 0x92f63fff  com.apple.CrashReporterSupport (10.9 - 539) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport 0x92f64000 - 0x92f68ff7  libmacho.dylib (845) /usr/lib/system/libmacho.dylib 0x92f69000 - 0x92f99ff3  libtidy.A.dylib (15.12) /usr/lib/libtidy.A.dylib 0x92f9f000 - 0x9308bff7  libxml2.2.dylib (26) /usr/lib/libxml2.2.dylib 0x9308c000 - 0x9311eff9  libsystem_c.dylib (997.90.3) /usr/lib/system/libsystem_c.dylib 0x9311f000 - 0x9338eff2  com.apple.security (7.0 - 55471.14.8) /System/Library/Frameworks/Security.framework/Versions/A/Security 0x9338f000 - 0x933adff5  com.apple.frameworks.preferencepanes (16.0 - 16.0) /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes 0x933ae000 - 0x933c2ff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport 0x933c3000 - 0x933d1ff3  com.apple.opengl (9.6.1 - 9.6.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x933d2000 - 0x934adff7  com.apple.LaunchServices (572.28 - 572.28) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices 0x934ae000 - 0x93501fff  com.apple.htmlrendering (77 - 1.1.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering 0x936a5000 - 0x936b4fff  libGL.dylib (9.6.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x936b5000 - 0x936bffff  com.apple.bsd.ServiceManagement (2.0 - 2.0) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment 0x936c0000 - 0x9370fff9  com.apple.HIServices (1.23 - 468) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices 0x93710000 - 0x9373eff3  com.apple.DebugSymbols (106 - 106) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s 0x9373f000 - 0x9375aff5  com.apple.openscripting (1.4 - 157) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting 0x9375b000 - 0x93782fff  com.apple.CoreVideo (1.8 - 117.2) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x93783000 - 0x9385dff6  com.apple.QuickLookUIFramework (5.0 - 622.7) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI 0x9385e000 - 0x9447cff3  com.apple.AppKit (6.9 - 1265.21) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x9447d000 - 0x9458fffc  libsqlite3.dylib (158) /usr/lib/libsqlite3.dylib 0x9462b000 - 0x94691fff  com.apple.corelocation (1486.17 - 1486.24) /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation 0x94692000 - 0x948f6ff7  com.apple.CoreData (107 - 481.3) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x948f7000 - 0x949e2ff4  com.apple.DiskImagesFramework (10.9 - 371.1) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages 0x949e3000 - 0x94a08ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters 0x94a09000 - 0x94a0cff3  com.apple.AppleSystemInfo (3.0 - 3.0) /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo 0x94a0d000 - 0x94bd3ffb  libicucore.A.dylib (511.34) /usr/lib/libicucore.A.dylib 0x94bd4000 - 0x94c05ff4  com.apple.securityinterface (9.0 - 55047) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face 0x94c06000 - 0x94c0efff  libsystem_dnssd.dylib (522.92.1) /usr/lib/system/libsystem_dnssd.dylib 0x94c0f000 - 0x94c3eff1  com.apple.frameworks.CoreDaemon (1.3 - 1.3) /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon 0x9559a000 - 0x95600ff4  com.apple.ISSupport (1.9.9 - 57) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport 0x95601000 - 0x959c6ff6  libLAPACK.dylib (1094.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib 0x959fa000 - 0x95ba6fff  com.apple.QuartzCore (1.8 - 332.3) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x95ba7000 - 0x95bbfff7  libsystem_malloc.dylib (23.10.1) /usr/lib/system/libsystem_malloc.dylib 0x95bc0000 - 0x95bdbff6  libPng.dylib (1043) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x95bdc000 - 0x95be6ff0  libCGInterfaces.dylib (271) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/Resources/libCGInterfaces.dylib 0x95be7000 - 0x95c29fff  libGLU.dylib (9.6.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x95fb4000 - 0x9601eff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x9601f000 - 0x96038fff  com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x96039000 - 0x9603aff7  com.apple.diagnosticlogcollection (10.0 - 1000) /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection 0x9608a000 - 0x960dbffb  com.apple.CoreMedia (1.0 - 1273.54) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x960ff000 - 0x9610aff6  com.apple.NetAuth (5.0 - 5.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x9610b000 - 0x9610cfff  com.apple.marco (10.0 - 1000) /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco 0x9610d000 - 0x96116fff  com.apple.audio.SoundManager (4.1 - 4.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound 0x96117000 - 0x96146ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration 0x961f3000 - 0x96232ff5  com.apple.ids (10.0 - 1000) /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS 0x96233000 - 0x962deff5  com.apple.imcore (10.0 - 1000) /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore 0x962df000 - 0x962e7fff  liblaunch.dylib (842.92.1) /usr/lib/system/liblaunch.dylib 0x962e8000 - 0x9633bff3  com.apple.CoreMediaIO (408.0 - 4570) /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x9633c000 - 0x964acfff  com.apple.QTKit (7.7.3 - 2826.19) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x964ad000 - 0x96523ff3  com.apple.securityfoundation (6.0 - 55122.3) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation 0x96524000 - 0x96825ff1  com.apple.AOSKit (1.06 - 176) /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit 0x9682f000 - 0x96d9cfff  com.apple.QuartzComposer (5.1 - 319) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer 0x96d9d000 - 0x96dfbffd  com.apple.AE (665.5 - 665.5) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE 0x96dfc000 - 0x9716bfff  com.apple.MediaToolbox (1.0 - 1273.54) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x9716c000 - 0x9720cff7  com.apple.Bluetooth (4.2.6 - 4.2.6f1) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x9720d000 - 0x97212ff6  libcompiler_rt.dylib (35) /usr/lib/system/libcompiler_rt.dylib 0x97213000 - 0x97214fff  com.apple.AddressBook.ContactsData (8.0 - 1371) /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a 0x97215000 - 0x97239ff3  libc++abi.dylib (49.1) /usr/lib/libc++abi.dylib 0x9723a000 - 0x97240ff7  com.apple.AddressBook.ContactsFoundation (8.0 - 1371) /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation 0x97241000 - 0x9726bfff  libsandbox.1.dylib (278.11.1) /usr/lib/libsandbox.1.dylib 0x9726c000 - 0x97278ff7  com.apple.OpenDirectory (10.9 - 173.90.1) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x97279000 - 0x972eeff1  com.apple.ApplicationServices.ATS (360 - 363.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS 0x972ef000 - 0x97462ffb  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x97463000 - 0x974b8ff7  com.apple.QuickLookFramework (5.0 - 622.7) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 0x974b9000 - 0x9751bff3  com.apple.imfoundation (10.0 - 1000) /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n 0x9751c000 - 0x97554ff7  com.apple.MediaKit (15 - 709) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 0x97555000 - 0x97555fff  com.apple.Cocoa (6.8 - 20) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x97556000 - 0x9755bff3  libsystem_platform.dylib (24.90.1) /usr/lib/system/libsystem_platform.dylib 0x9755c000 - 0x97579ffb  libresolv.9.dylib (54) /usr/lib/libresolv.9.dylib 0x9757a000 - 0x9757cff2  com.apple.EFILogin (2.0 - 2) /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 0x976fc000 - 0x9772effb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x9772f000 - 0x97a24ffc  com.apple.CoreImage (9.4.0) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage 0x97a25000 - 0x97d0ffd2  com.apple.vImage (7.0 - 7.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage 0x97d10000 - 0x97d11ffc  com.apple.TrustEvaluationAgent (2.0 - 25) /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent 0x97d12000 - 0x97d16ffe  libCoreVMClient.dylib (58.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib 0x97d17000 - 0x97d18fff  libremovefile.dylib (33) /usr/lib/system/libremovefile.dylib 0x97d19000 - 0x97d43fff  libxslt.1.dylib (13) /usr/lib/libxslt.1.dylib 0x97d44000 - 0x98be5ffb  com.apple.WebCore (9537 - 9537.77.4) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore 0x98be6000 - 0x98be6ffd  libOpenScriptingUtil.dylib (157) /usr/lib/libOpenScriptingUtil.dylib 0x98be7000 - 0x98e83fff  com.apple.RawCamera.bundle (5.06 - 751) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x98e84000 - 0x98eddffa  libTIFF.dylib (1043) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x98ede000 - 0x98f47ffa  com.apple.datadetectorscore (5.0 - 354.5) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore 0x98f48000 - 0x98f74ff7  com.apple.DictionaryServices (1.2 - 208) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices 0x98f75000 - 0x98ffaffc  com.apple.CorePDF (4.0 - 4) /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 0x98ffb000 - 0x98ffcffd  libunc.dylib (28) /usr/lib/system/libunc.dylib 0x98ffd000 - 0x9905eff7  com.apple.Symbolication (1.4 - 129.0.2) /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion 0x9905f000 - 0x9906fff7  libsasl2.2.dylib (170) /usr/lib/libsasl2.2.dylib 0x99070000 - 0x99078ffe  libGFXShared.dylib (9.6.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib 0x99079000 - 0x990c5ff7  libcups.2.dylib (372.4) /usr/lib/libcups.2.dylib 0x990c6000 - 0x99103ffb  libGLImage.dylib (9.6.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib 0x99104000 - 0x99117fff  com.apple.ImageCapture (9.0 - 9.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture 0x99118000 - 0x9911cffc  com.apple.IOSurface (91.1 - 91.1) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x9911d000 - 0x9911fffe  libCVMSPluginSupport.dylib (9.6.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib 0x99120000 - 0x9912eff7  com.apple.Sharing (132.2 - 132.2) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x9912f000 - 0x9914ffff  com.apple.facetimeservices (10.0 - 1000) /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices 0x99150000 - 0x99153ff7  com.apple.help (1.3.3 - 46) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help 0x99154000 - 0x99157ff7  libdyld.dylib (239.4) /usr/lib/system/libdyld.dylib 0x99158000 - 0x99159fff  libsystem_blocks.dylib (63) /usr/lib/system/libsystem_blocks.dylib 0x9915a000 - 0x99240ff7  com.apple.coreui (2.1 - 231) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x99241000 - 0x99257ff9  com.apple.aps.framework (4.0 - 4.0) /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService 0x99258000 - 0x9931bff1  com.apple.CoreText (367.20 - 367.20) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x9931c000 - 0x99323ffb  libsystem_pthread.dylib (53.1.4) /usr/lib/system/libsystem_pthread.dylib 0x99324000 - 0x99326fff  libquarantine.dylib (71) /usr/lib/system/libquarantine.dylib 0x99327000 - 0x99343fff  libCRFSuite.dylib (34) /usr/lib/libCRFSuite.dylib 0x99344000 - 0x993a2fff  com.apple.ViewBridge (1.0 - 46.2) /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x993a3000 - 0x993acfff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition 0x993ad000 - 0x993bffff  libbsm.0.dylib (33) /usr/lib/libbsm.0.dylib 0x993c0000 - 0x993e4ff7  libxpc.dylib (300.90.2) /usr/lib/system/libxpc.dylib 0x993e5000 - 0x994acff7  com.apple.DiscRecording (8.0 - 8000.4.6) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 0x994ad000 - 0x994b5fff  libcopyfile.dylib (103.92.1) /usr/lib/system/libcopyfile.dylib 0x994b6000 - 0x994b6fff  com.apple.CoreServices (59 - 59) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x994b7000 - 0x994f3ff4  com.apple.RemoteViewServices (2.0 - 94) /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices 0x994f4000 - 0x995e4ffb  libiconv.2.dylib (41) /usr/lib/libiconv.2.dylib 0x995e5000 - 0x99691ffb  libvMisc.dylib (423.32) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib 0x99692000 - 0x9969effc  libbz2.1.0.dylib (29) /usr/lib/libbz2.1.0.dylib 0x9969f000 - 0x996a7ff7  libCGCMS.A.dylib (599.25.10.1) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib 0x996a8000 - 0x996f0fff  com.apple.PerformanceAnalysis (1.47 - 47) /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis 0x996f1000 - 0x99a04fef  com.apple.CoreAUC (6.25.00 - 6.25.00) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x99a05000 - 0x99d30ffe  com.apple.Foundation (6.9 - 1056.13) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x99d31000 - 0x99d36fff  com.apple.MediaAccessibility (1.0 - 43) /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility 0x99d37000 - 0x99d6cffd  libssl.0.9.8.dylib (50) /usr/lib/libssl.0.9.8.dylib 0x99d6d000 - 0x99d6effa  libsystem_sandbox.dylib (278.11.1) /usr/lib/system/libsystem_sandbox.dylib 0x99d6f000 - 0x99ec5ff0  libBLAS.dylib (1094.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib 0x99ec6000 - 0x99f39fff  com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit 0x99f3a000 - 0x99f3effc  libpam.2.dylib (20) /usr/lib/libpam.2.dylib 0x99f3f000 - 0x99f48ffc  com.apple.CommonAuth (4.0 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x99f49000 - 0x99f63ff7  com.apple.GenerationalStorage (2.0 - 160.3) /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage 0x99f67000 - 0x9a1d3ff5  com.apple.AddressBook.framework (8.0 - 1371) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook 0x9a1d7000 - 0x9a275ff5  com.apple.PDFKit (2.9.2 - 2.9.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit 0x9a276000 - 0x9a41e4af  libobjc.A.dylib (551.1) /usr/lib/libobjc.A.dylib 0x9a41f000 - 0x9a486ffc  com.apple.framework.CoreWLAN (4.3.3 - 433.48) /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x9a487000 - 0x9a4b2ff7  libsystem_network.dylib (241.3) /usr/lib/system/libsystem_network.dylib 0x9a4b3000 - 0x9a5caffb  com.apple.WebKit (9537 - 9537.77.4) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0x9a5cb000 - 0x9a940ff9  com.apple.HIToolbox (2.1.1 - 698) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox 0x9a941000 - 0x9aa51fed  com.apple.MediaControlSender (2.0 - 200.34.4) /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender 0x9aa52000 - 0x9aa71ff9  com.apple.framework.Apple80211 (9.4 - 940.60) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x9aa72000 - 0x9ab66fff  libFontParser.dylib (111.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib 0x9ab67000 - 0x9ac03fff  com.apple.QD (3.50 - 298) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD 0x9ac04000 - 0x9ac14ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis 0x9ac15000 - 0x9ac1cff2  com.apple.NetFS (6.0 - 4.0) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x9ac1d000 - 0x9ac1dfff  libffi.dylib (18.1) /usr/lib/libffi.dylib 0x9ac1e000 - 0x9ac3aff9  com.apple.Ubiquity (1.3 - 289) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity 0x9ac3b000 - 0x9ac6bff7  com.apple.CoreServicesInternal (184.9 - 184.9) /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal 0x9ac6c000 - 0x9ac79fff  com.apple.AppleFSCompression (56.92.1 - 1.0) /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression 0x9ac7a000 - 0x9ac86ffc  libkxld.dylib (2422.110.17) /usr/lib/system/libkxld.dylib 0x9ac87000 - 0x9ac8affe  com.apple.LoginUICore (3.0 - 3.0) /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore 0x9ac8b000 - 0x9ac91ff7  com.apple.AOSNotification (1.7.0 - 760.3) /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication 0x9ac94000 - 0x9ac9eff3  com.apple.DisplayServicesFW (2.8 - 360.8.14) /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices 0x9ac9f000 - 0x9acb4ff3  com.apple.AppContainer (3.0 - 1) /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r 0x9acb5000 - 0x9acc8ff7  com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth 0x9acc9000 - 0x9acd7ff7  libz.1.dylib (53) /usr/lib/libz.1.dylib 0x9acd8000 - 0x9acdbffa  libCGXType.A.dylib (599.25.10.1) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib 0x9acdc000 - 0x9ad53ffb  com.apple.framework.IOKit (2.0.1 - 907.100.13) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x9ad54000 - 0x9ad54fff  com.apple.Carbon (154 - 157) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x9ad55000 - 0x9ad5cff1  com.apple.phonenumbers (1.1.1 - 105) /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s 0x9ad5d000 - 0x9ad75ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory 0x9ad76000 - 0x9ad80ff7  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x9ad81000 - 0x9af4bffd  com.apple.GeoServices (1.0 - 702.15.12) /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices 0x9af4c000 - 0x9af55fff  com.apple.AppleSRP (5.0 - 1) /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x9af56000 - 0x9af63fff  com.apple.Librarian (1.2 - 1) /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian 0x9af91000 - 0x9b292ffb  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore 0x9b293000 - 0x9b2a5fff  libsystem_asl.dylib (217.1.4) /usr/lib/system/libsystem_asl.dylib 0x9b2a6000 - 0x9b345ff7  libCoreStorage.dylib (380) /usr/lib/libCoreStorage.dylib 0x9b346000 - 0x9b3acffb  com.apple.CoreUtils (2.0 - 200.34.4) /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x9b3ad000 - 0x9b4baff7  com.apple.ImageIO.framework (3.3.0 - 1043) /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x9b4ec000 - 0x9b6eefff  com.apple.CoreFoundation (6.9 - 855.17) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x9b6ef000 - 0x9b6effff  com.apple.Accelerate (1.9 - Accelerate 1.9) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x9b6f0000 - 0x9b736ff7  libcurl.4.dylib (78.94.1) /usr/lib/libcurl.4.dylib 0x9c05e000 - 0x9c086fff  libsystem_info.dylib (449.1.3) /usr/lib/system/libsystem_info.dylib 0x9c087000 - 0x9c11eff7  com.apple.ink.framework (10.9 - 207) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink 0x9c11f000 - 0x9c14aff5  com.apple.ChunkingLibrary (2.0 - 155.1) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library 0x9c14b000 - 0x9c150ff7  com.apple.print.framework.Print (9.0 - 260) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print 0x9c151000 - 0x9c1a1fff  com.apple.opencl (2.3.59 - 2.3.59) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x9c1a2000 - 0x9c1a4fff  com.apple.SecCodeWrapper (3.0 - 1) /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper 0x9c1a5000 - 0x9c1a7fff  com.apple.securityhi (9.0 - 55005) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI 0x9c1a8000 - 0x9c1aaffb  libRadiance.dylib (1043) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib 0x9c1ab000 - 0x9c1c3ffd  libdispatch.dylib (339.92.1) /usr/lib/system/libdispatch.dylib 0x9c1c4000 - 0x9c204ff7  com.apple.bom (14.0 - 193.1) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x9c205000 - 0x9c20ffff  com.apple.ProtocolBuffer (1 - 182.1.3) /System/Library/Priv

    Based on the messages in your initial screenshot, you appear to be trying to install the UPDATE, and it is complaining that it cannot find the already-installed Office software to be updated.
    Individual Application crashes are Huge and are only helpful to the Application developer

  • Acrobat 9 Pro issues with printing and now updating  !!! :(

    hello
    I had an issues with printing from my gmail account or from windows live mail
    so I made a complete re-installation
    now I am stuck with version 9.3.0 and when I check for updates I get a message
    UPDATER IS ALREADY RUNNING
    only... it's not running and nothing is updating !
    I made a restart... just in case... it did not change anything
    as to the printing issue, in case some of you have met it and cleared it...(hope)
    this was with version 9.5.0
    I get no error message but no pdf is created, only a text document with this :
    %%[ ProductName: Distiller ]%%
    %%[Page: 1]%%
    72gmvi not found, using Courier.
    44dcmta not found, using Courier.
    %%[ Error: invalidfont; OffendingCommand: xshow ]%%
    Stack:
    [96 96 97 72 96 42 64 0]
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    not a good start for my week... I hope yours is nicer
    I'm running Win7 Ultimate x64

    thanks Mylenium
    the font association problem is something recent though, since I used acrobat to print mails directly from my gmail account previously...
    it's galling but I installed a free pdf printer which does the job, I needed copies of these mails urgently !
    as to the update issue, I see no aum.exe, msiexec.exe or setup.exe running... but that's quite above my head... do I look for those exact processes or are they generic names for processes ?
    does my question make sense ????

  • Acrobat 9 Form Issues - Font, URL, and Print Issues

    Hello folks,
    We are developing an Acrobat PDF (I have Pro updated to 9.4.5) with about 30 fields. Some of them contain a default label name, others are blank, and all fields have a unique name. The blank fields on the form are being filled via an automated web services API from Aspose. All info is entered and the PDF is then flattened by the web service.
    The document fully populates with all expected data but we are running into three issues:
    1) A field that gets populated with a URL by the script properly becomes clickable if the font is set to Helvetica, but when set to Verdana or Arial fails to be recognized by Acrobat.
    2) When I create a new form field, and assign a font face/size/color and input a default value, if I go back and try and change the size the default content seems to hold it's original size unless I do a full cut/paste of the value back into the box.
    3) We are getting the notorious "An Error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem"
    The odd part is we were not getting that error at first - even with data populated. It was only once we started working on getting the fields horizontally and vertically aligned that the error presented itself.
    Any thoughts? I have closed and opened Acrobat, tried opening from Acrobat instead of double clicking the PDF but nothing seems to help.

    thanks Mylenium
    the font association problem is something recent though, since I used acrobat to print mails directly from my gmail account previously...
    it's galling but I installed a free pdf printer which does the job, I needed copies of these mails urgently !
    as to the update issue, I see no aum.exe, msiexec.exe or setup.exe running... but that's quite above my head... do I look for those exact processes or are they generic names for processes ?
    does my question make sense ????

  • Acrobat 9 Pro issues with thumbnails.

    I've noticed the following issues in Acrobat 9 Pro. Any ideas on these would be helpful.
    In the thumbnails view, for larger documents, the last page (thumbnail) is always out of view and I can't scroll down any further to see it.
    In previous versions, to replace a page, I could drag a page from another PDF and hover over the thumbnail page number. When the thumbnail was highlighted, that page would be replaced with the new one.

    thanks Mylenium
    the font association problem is something recent though, since I used acrobat to print mails directly from my gmail account previously...
    it's galling but I installed a free pdf printer which does the job, I needed copies of these mails urgently !
    as to the update issue, I see no aum.exe, msiexec.exe or setup.exe running... but that's quite above my head... do I look for those exact processes or are they generic names for processes ?
    does my question make sense ????

Maybe you are looking for

  • How can i delete my nokia music account?

    i want to delete my nokia music account, is this possible? Greece Nokia X6 RM-559 v40.0.002 Solved! Go to Solution.

  • Ressource file LM00    99 does not exist

    Hi all, I am getting an error while running LM00 in internet service in tcode se80. The error is : "Ressource file LM00      99 does not exist" I have done all the settings in SICF, as given in Raja's blog: Running your first  ITS WebGUI application

  • Can validation check can be set for vendor master record .

    Hi Experts , User wants to remove two existing payment methods,instead of removing i think to set validation for the vendor master record . can validation can be set for vendor master record ? PLease suggest me with advice. Thanks Pardha

  • Unicode character not displaying when PDF is created using PDFMaker

    Using Adobe Acrobat Pro 9 Our company letterhead contains a special character (Unicode 25AA "Black Small Square"). When a PDF is created of a Microsoft Word document (2003 or 2007) using the PDFMaker, that character is not displayed in Acrobat (shows

  • Transaction variant for vf02

    Hi Ajali here. I created a transaction variant for VF02. Using this tx varinat I have disabled several fields in the first screen of VF02.However when I hit a back from the screen 2 of this transaction variant it takes me to the initial screen of the