How to ask apple to send verification mail to different address? kindly reply!

Verification email

If there is no native ability within Mail to do this, does anyone know of any plugins that would allow me to do this? Ant tips would be welcomed.
(Regarding why mail needs to be checked every minute: it's connected with business here in Japan where email is the standard way to send instant messages from / to mobile phones, unlike elsewhere where SMS is the norm.)

Similar Messages

  • HT5312 I don't remember the answer to the security question, but after i have asked apple to send the verification mail; there is still no email from Apple. What should I do? :( :(

    I don't remember the answer to the security question, but after i have asked apple to send the verification mail; there is still no email from Apple. What should I do?

    You've checked the spam folder on your rescue email account and tried clicking the reset link again to re-request it ? You could also contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699

  • I need help with Apple iCloud verification. I don't have the email and I can't figure out how to get Apple to send me a new one.

    So, in order to back up my music and stuff to the cloud I need to verify my Apple ID and I don't have the verification e-mail. If someone out there could help me out by telling me how to get Apple to send another one, or if they can, I would appreciate it alot. Thank you!!!!!

    Apple ID: Associating and verifying email addresses with your Apple ID

  • How to change Apple ID if e-mail (on which Apple ID was created) was deleted?

    How to change Apple ID if e-mail (on which Apple ID was created) was deleted?

    Perhaps this may assist:
    https://appleid.apple.com

  • HT5312 when you forget your security question how do you ask  apple to send u the answer

    If I forgot my security question how can i let apple send me the answer on my email

    You need to ask Apple to reset your security questions; ways of contacting them include phoning AppleCare and asking for the Account Security team, clicking here and picking a method for your country, and filling out and submitting this form.
    (104086)

  • How Sapscript form can be send by mail

    Hello all,
    I want to send a Sapscript form by mail.
    I think it should first be converted to PDF form and than need to be send by mail.
    I have created a z form which is a copy of standard for medruck and also have changed the standard program SAPFM06P. So I need to add functionality in z program so that i can send the sapscript form by mail.
    Can any body let me know the complete process how can i do it?
    Thanks

    Hi,
    Just follow the below code . I am giving the code which starts from OPEN_FORM. After that one submit program is there u can see the code.
    *&      Form  display_layout
          text
    -->  p1        text
    <--  p2        text
    FORM display_layout.
      CALL FUNCTION 'OPEN_FORM'
       EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
         device                            = 'PRINTER'
      DIALOG                            = 'X'
         form                              = 'YFIL_DUNN_01'
      LANGUAGE                          = SY-LANGU
       options                           = itcpo
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
       EXCEPTIONS
         canceled                          = 1
         device                            = 2
         form                              = 3
         options                           = 4
         unclosed                          = 5
         mail_options                      = 6
         archive_error                     = 7
         invalid_fax_number                = 8
         more_params_needed_in_batch       = 9
         spool_error                       = 10
         OTHERS                            = 11
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      LOOP AT i_tab INTO wa_tab.
        CALL FUNCTION 'WRITE_FORM'
         EXPORTING
           element                     = '531'
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
           window                      = 'MAIN'
    IMPORTING
       pending_lines                  = wa_tab.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDLOOP.
      CALL FUNCTION 'CLOSE_FORM'
       IMPORTING
         result                         = itcpp
        RDI_RESULT                     =
      TABLES
        OTFDATA                        =
         EXCEPTIONS
           unopened                       = 1
           bad_pageformat_for_print       = 2
           send_error                     = 3
           spool_error                    = 4
           OTHERS                         = 5.
      IF sy-subrc = 0.
        IF ( itcpp-userexit IS INITIAL AND
            NOT itcpp-tdspoolid IS INITIAL ).
          p_spool = itcpp-tdspoolid.
          SUBMIT yfir_mailsend_pdf_attachment WITH p_spool = p_spool
                                              WITH p_kunnr = p_kunnr.
        ENDIF.
      ENDIF.
    ENDFORM.                    " display_layout
    *&      Form  modify_duedate
          text
    -->  p1        text
    <--  p2        text
    FORM modify_duedate.
      SELECT SINGLE mat_rec_no
                    mat_rec_date FROM yfi_matno
                    INTO (v_mat_rec_no, v_mat_rec_date)
                    WHERE vbeln = wa_tab-vbeln.
      CHECK sy-subrc EQ 0.
      SELECT SINGLE zterm
                    FROM vbrk INTO  v_zterm
                    WHERE vbeln EQ wa_tab-vbeln.
      CHECK sy-subrc EQ 0.
      SELECT SINGLE zdays
                    FROM yfi_payment INTO v_zdays
                    WHERE zterm EQ v_zterm.
      IF sy-subrc EQ 0.
        wa_tab-zfbdt_due = ( v_mat_rec_date + v_zdays ).
        wa_tab-due_days = ( sy-datum - wa_tab-zfbdt_due ).
       IF wa_tab-due_days LE 0.
         wa_tab-due_days = 'N/A'.
       ENDIF.
        IF ( wa_tab-umskz = 'A' AND wa_tab-shkzg = 'H' ).
          wa_tab-zfbdt = ' '.
          wa_tab-zfbdt_due = ''.
          wa_tab-due_days = ''.
        ENDIF.
        MODIFY i_tab FROM wa_tab INDEX sy-tabix.
        CLEAR: v_mat_rec_no, v_mat_rec_date, v_zterm, v_zdays.
      ENDIF.
    ENDFORM.                    " modify_duedate
    SUBMIT PROGRAM :
    REPORT yfir_mailsend_pdf_attachment MESSAGE-ID yf.
    *& Program Name   : *
    & Author         :
    *& Creation Date  : *
    *& Program Type   :                                                   *
    *& SAP Release    : *
    *& Description    :     *
    *& Transport No   :                                                   *
    *& Transaction    :                                                   *
    *&  Send document with OTF/ALI attachment from spool to externalreci-
    *&  pient. OTF/ALI document is converted to PDF/HTML format duringthe
    *&  SAPconnect send process.
    *&  This report serves as example documentation for the function
    *&  modules SO_NEW_DOCUMENT_ATT_SEND_API1 and SO_DOCUMENT_SEND_API1.
    *&  Following this example you should be able to develop your own
    *&  report to send documents with all kinds of attachments.
    Creation of the entry for the compressed document
    *& TABLES:
    TABLES : kna1,
            adr6.
    *& INTERNAL TABLES:
    ***********PDF Declaration*******
    DATA: BEGIN OF i_spool OCCURS 0,
            rqident  LIKE tsp01-rqident,
            rqo1name LIKE tsp01-rqo1name,
            rqclient LIKE tsp01-rqclient,
          END   OF i_spool.
    *& VARIABLES :
    DATA: client LIKE tst01-dclient,
          name LIKE tst01-dname,
          objtype LIKE rststype-type,
          type LIKE rststype-type.
    DATA: spoolno LIKE tsp01-rqident,
         download TYPE c VALUE 'X', "AS CHECKBOX DEFAULT 'X',
         p_file LIKE rlgrap-filename
                         VALUE 'C:\Invoice.pdf',               "#EC NOTEXT
          otf LIKE itcoo OCCURS 100 WITH HEADER LINE,
         cancel,
          pdf LIKE tline OCCURS 100 WITH HEADER LINE,
          doctab LIKE docs OCCURS 1 WITH HEADER LINE,
          numbytes TYPE i,
          arc_idx LIKE toa_dara,
          pdfspoolid LIKE tsp01-rqident,
          jobname LIKE tbtcjob-jobname,
          jobcount LIKE tbtcjob-jobcount,
          is_otf.
    Data Declaration
    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.
    *objpack-head_start = 1.
    *objbin = '  |  '. APPEND objbin.
    *DATA: listobject LIKE abaplist   OCCURS  1 WITH HEADER LINE.
    DATA: tab_lines  TYPE i,
          doc_size   TYPE i,
          att_type   LIKE soodk-objtp.
    objpack-head_start = 1.
    *& PARAMETERS:
    PARAMETERS : p_spool LIKE tsp01-rqident NO-DISPLAY,
                 p_kunnr LIKE kna1-kunnr NO-DISPLAY.
    *& M A I N   P R O C E S S
    *& START OF SELECTION.
    START-OF-SELECTION.
      SELECT SINGLE
      adr6~addrnumber
      adr6~smtp_addr
      FROM adr6
      INNER JOIN kna1
      ON kna1~adrnr = adr6~addrnumber
      INTO CORRESPONDING FIELDS OF adr6
      WHERE kna1~kunnr = p_kunnr.
      IF sy-subrc = 0.
    Create receiver list
        reclist-receiver = adr6-smtp_addr. "<-- customer address
        reclist-rec_type = 'U'.
        APPEND reclist.
      ENDIF.
    ***Convert Spool request to PDF
      PERFORM pdf_convert.
      docdata-obj_name  = 'MAIL_AEIW'.
      docdata-obj_descr = 'Dunning'.
      Main Text
      objtxt = 'Hi,'.
      APPEND objtxt.
      objtxt = 'Dunning'.
      APPEND objtxt.
      objtxt = 'Regards'.
      APPEND objtxt.
      Write Packing List (Main)
      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   = 'RAW'.
      APPEND objpack.
    Create Message Attachment
      Write Packing List (Attachment)
      att_type = 'PDF'.
      DESCRIBE TABLE objbin LINES tab_lines.
      READ     TABLE objbin INDEX tab_lines.
    *objpack-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objbin ).
      objpack-doc_size = tab_lines * 255.
      objpack-transf_bin = 'X'.
      objpack-head_start = 1.
      objpack-head_num   = 1.
      objpack-body_start = 1.
      objpack-body_num   = tab_lines.
      objpack-doc_type   = att_type.
      objpack-obj_name   = 'ATTACHMENT'.
      objpack-obj_descr  = 'Attached Document'.
      APPEND objpack.
    *check for not maintaining customer address
      IF reclist IS INITIAL.
        MESSAGE e000 WITH 'Please Maintain Customer e-Mail ID'.
        LEAVE LIST-PROCESSING.
      ELSE.
    Send Message
        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.
        ELSE.
          WRITE 'Mail sent successfully'.
        ENDIF.
      ENDIF.
      WRITE: / 'End of Program'.
    *&      Form  pdf_convert
          text
    -->  p1        text
    <--  p2        text
    FORM pdf_convert.
      DATA: date1   LIKE sy-datum,
            time1   LIKE sy-uzeit,
            period1 LIKE tsp01-rqcretime.
      date1 = sy-datum.
      time1 = sy-uzeit.
      date1 = date1 - 1.
      CONCATENATE date1 time1 INTO period1.
      SELECT rqident
             rqo1name
             rqclient FROM tsp01 INTO TABLE i_spool
                            WHERE rqowner   = sy-uname AND
                                  rqclient  = sy-mandt AND
                                  rqident   = p_spool.
      IF sy-subrc <> 0.
        WRITE: / 'No Spool Request created today'(003)
                COLOR COL_NEGATIVE.
        EXIT.
      ENDIF.
      SORT i_spool DESCENDING BY rqident.
      READ TABLE i_spool INDEX 1.
      CALL FUNCTION 'RSTS_GET_ATTRIBUTES'
             EXPORTING
                authority     = 'SP01'
                client        = i_spool-rqclient
                name          = i_spool-rqo1name
                part          = 1
             IMPORTING
              CHARCO        =
              CREATER       =
              CREDATE       =
              DELDATE       =
              MAX_CREDATE   =
              MAX_DELDATE   =
              NON_UNIQ      =
              NOOF_PARTS    =
              RECTYP        =
              SIZE          =
              STOTYP        =
                  type          = type
                  objtype       = objtype
             EXCEPTIONS
                  fb_error      = 1
                  fb_rsts_other = 2
                  no_object     = 3
                  no_permission = 4.
      CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid                    = i_spool-rqident
            no_dialog                      = ' '
          DST_DEVICE                     =
          PDF_DESTINATION                =
          IMPORTING
            pdf_bytecount                  = numbytes
            pdf_spoolid                    = pdfspoolid
          OTF_PAGECOUNT                  =
            btc_jobname                    = jobname
            btc_jobcount                   = jobcount
          TABLES
            pdf                            = pdf
          EXCEPTIONS
            err_no_otf_spooljob            = 1
            err_no_spooljob                = 2
            err_no_permission              = 3
            err_conv_not_possible          = 4
            err_bad_dstdevice              = 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.
      CASE sy-subrc.
        WHEN 0.
        WHEN 1.
          WRITE: / 'Error On Spool Job'(002)
                COLOR COL_NEGATIVE.
          EXIT.
        WHEN 2.
          WRITE: / 'No Permission'(003)
                COLOR COL_NEGATIVE.
          EXIT.
        WHEN 3.
          WRITE: / 'Conversion Not Possible'(004)
                COLOR COL_NEGATIVE.
          EXIT.
        WHEN OTHERS.
          WRITE: / 'Incorrect Destination Device'(005)
                    COLOR COL_NEGATIVE.
          EXIT.
      ENDCASE.
      CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
           EXPORTING
                line_width_src              = 134
                line_width_dst              = 255
           TABLES
                content_in                  = pdf
                content_out                 = objbin
           EXCEPTIONS
                err_line_width_src_too_long = 1
                err_line_width_dst_too_long = 2
                err_conv_failed             = 3
                OTHERS                      = 4.
    ENDFORM.                    " pdf_convert

  • How to set up delayed sending with Mail ?

    Since I am not allways internet connected, I would like in Mail to send my mail only when I am connected, or to decide by myself when to send mails.
    How to set up this fonction ?
    Or how to do with Mail when I am not permanently conncetd to internet ?
    Than You

    If you are not connected to the internet when selecting Send for a message, you will receive the following error message.
    Error
    This message could not be delivered and will remain in your Outbox until it can be delivered.
    The server "the account's SMTP server here" cannot be contacted on port 25 (or whatever Server Port is used by the account's SMTP server).
    When connected to the internet and launching Mail, all messages that remain in the Outbox mailbox will be sent automatically.
    No other setting is required but if you select Send for a message when not connected to the internet, you cannot prevent any messages from being sent that remain in the Outbox when connected to the internet and launching Mail.
    If you want to decide when to send messages that were composed when not connected to the internet, save the messages as a Draft. Open the saved Draft message and select Send.

  • How to ask Apple to support new phone models?

    Dear reader,
    I have a SonyEricsson K850i and a W890i, the first is a year old now and still isn't supported by iSync.
    How can I ask Apple to support these 'new' phones? Will they be added to the www.apple.com/isync/devices.html list automatically?
    Thanks and greetings, Levi.

    Both of these phone are already supported by iSync since their release via an iSync Phone Plugin from here.
    It's unlikely that Apple will add support for these phones. As you have noticed, they are anything from a few months to many years behind with their support for 'new' phones. (Maybe they want you to buy the iPhone!)
    That's why Apple created the iSync Plugin architecture for third-party developers to add support for new phones, without waiting for iSync updates from Apple.
    Julian
    Aluminium 20" iMac 2.4Ghz, 2GB RAM Mac OS X (10.5.2)
    Apple Required Disclaimer: "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • How can I send mail mail as different address using iCloud?

    I have setup Mail in OSX Lion to use my iCloud account ([email protected]) succesfully. When I compose a new message I would like to be able to send from an email address other than [email protected] (eg. [email protected] which is an email account I have set to forward to [email protected])
    In Mail > Preferences > iCloud (IMAP) > Email Address I have entered: '[email protected], [email protected]'
    which enables the "From" drop list. When I select  [email protected] and hit send, the message is not sent and Mail informs me that I have entered the wrong username and password. If I select [email protected] the message is sent without a problem.
    Why is this happening? What's the point of allowing me to select a different email address without being able to actually send email with that email address?
    Please help.

    Try looking at the following post...
    http://forum.java.sun.com/thread.jspa?threadID=329816

  • How to stop letting people send me mails?

    Hello,
    I'm receiving a lot of mails from diffferent companies for sales.... How is it possible to stop receiving mails from them?

    Your email provider usually has some sort of spam filter. Make sure you are using it correctly to avoid getting promotion emails.

  • Sending mail with different address with iPhone with account gmail

    Hi there! I'm a new customer of the big and amazing world Apple! I'm very excited but as you can imagine I have some problem to use my new iPhone. I have an e-mail address [email protected] and I have associated in gmail this addres with [email protected] I have put some parameters that allow me to send e-mail from gmail on the pc as if I send it from [email protected] Can I do the same when I send the mails from my iPhone? How can I configure this? For me this is a very big problem. I hope to solve. Thanks a lot! Have a good day! Max

    Read last paragraph:
    http://readwrite.com/2012/03/20/how_to_be_a_happy_gmail_user_on_iphone_or_ipad#a wesm=~oc85GgWROJ7MSp

  • How do I change primary login e-mail to an address previously used as recovery e-mail?

    Hi all,
    I'm moving away from my former ISP and is trying to change my primary login e-mail (supplied from the ISP in question) for my Apple ID to a Gmail address.
    The problem is that I have registered the Gmail address as one of my recovery e-mail addresses and now the system prohibits me from using it as primary login address, even though I have removed the Gmail address from the list of recovery addresses.
    So, how should I do to change my primary login to the Gmail address? How do I remove the Gmail adress from my recovery addresses?
    (Sorry if I'm posting to the wrong forum, but I couldn't find any forum for AppleID support.)
    Thanks for any advice,
    Ulf

    If you want to change your email, this is something that can be done from the eprint center website. Once you get to the website follow these steps:
    Log into your eprint center account
    Click change next to your email in the box that says eprint
    Enter a new customized email in the box that pops up (the end automatically defaults to @hpeprint.com)
    Click save
    Don't forget after changing your email address to write it down so you will have a copy of it.
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP

  • HT202304 Can't send e-mails using iCloud address on either my iPhone or Macs ?

    Hi guys and gals,
    I can't seem to be able to send e-mails using my iCloud address.
    No idea why that is. I don't get any error message, the e-mails 'get sent' without any fuss or ending in the outbox folder and they simply do not reach their destinations. There doesn't seem to exist any issues with Apple either. Perhaps my e-mails are being blocked, out of the blue (not by my ISP though, I'm having this problem with whatever network I'm connected to or using  internet data on my mobile). ?
    Any help would be appreciated, thanks !

    Hello,
    Is the e-mail account in question a .Mac or .Me account at all?

  • Code eo send e-mail to multiple addresses

    Hi,
    I need to send an e-mail to multiple addresses.
    Can the Function module SO_NEW_DOCUMENT_SEND_API1
    be used to send email to MULTIPLE e-mail addresses ?

    Hi,
      Yes you can..You can add any no. of  email ids  to the table parameter 'RECEIVERS' of the function module. You can create a distribution list and then add the ids to that dist. list.. use so23 to create the dist. list..
    eg..
    Receiver details
    The distribution list has the email ids.
      wa_reclist-receiver = p_dist.
    Receiver type is 'internet mail'.
      wa_reclist-rec_type = 'C'.
    Express mail activated
      wa_reclist-express  = 'X'.
      APPEND wa_reclist TO it_reclist.
      CLEAR  wa_reclist.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                  = wa_docdata
      PUT_IN_OUTBOX                    = ' '
      IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
        TABLES
          packing_list                   = it_objpack
      OBJECT_HEADER                    =
      CONTENTS_BIN                     =
         contents_txt                    =  it_objtxt
      CONTENTS_HEX                     =
      OBJECT_PARA                      =
      OBJECT_PARB                      =
          receivers                      = it_reclist

  • Sending e-mail to external addresses from business activities

    Hi Experts,
    I’m customizing CRM 5.0 and I want to send e-mails to other employees, when I’m maintaining a business activity.
    These employees can have no SAP user, so I need this e-mail to go to the address maintained in BP transaction (e.g. alda.lobato@enterprises’sname.net).
    So, I tried to customize in trx. CRMC_ACTION_CONF, the following data / conditions:
    Tab “Overview” – "Partner Determination"
    - Partner Function: 00000014
    - Description: Employee Responsible
    - Partner Number: blank
    Tab “Processing Details” – "Details of Selected Processing" – "Recipient(s)"
    - Recipient Type: U Internet address
    - Address: blank
    - Archive Mode: 1 Mail Only
    However, all the e-mails remain to being sent to the Employee Business Workplace (trx. SBWP), as we were sending the email to his SAP user.
    Please advise.
    Many thanks.
    Alda Lobato

    Hi Patrik,
    First of all, thanks for your quick answer.
    I maintained the Email address in “Communication” area (as already maintained) and in “Address-Independent Communication” area, but the Emails remain to being sent to Employee Business Workplace (trx. SBWP).
    The “Standard Address” area that you indicated, only have the fields “Street/House number”, “Postal code/City”, “Country”, “Region” and Time zone” - I don’t have the field Email address – so I figured out that you talking about the “Address-Independent Communication” area.
    After this, I did another test, which was maintaining the Email address only in “Address-Independent Communication” area. When I sent the Email through the business activity, appears the error message “Action could not be successfully executed”.
    This mean that the Email address must be maintained in “Communication” area but it seems that independently the Email address maintained here, the Email is always sent to Employee Business Workplace.
    Please advise.
    Many thanks,
    Alda Lobato

Maybe you are looking for

  • How do find standard report for

    Please help me my client asked me to look for standard report but am lost am new  cleint's easy access dont not have these so how do i find these reports AR Deposit Report Costs charged to Warranty orders Costs Of Goods Sold Report (by Market Busines

  • Video Out not working on Ipod Classic 80gb

    I can't get video out to work on anything. I have a relatively new Onkyo home theater with an iPod dock that has video out cables, and I can't get a picture to show up on the TV. Also, my gym has StarTrac cardio equipment which has video connectivity

  • Contact pictures not showing on iPhone in iMessage

    Hello, my contact picture and my mother-in-law's contact picture does not show in iMessage on our iPhones. The pictures show up on our iPads though. How would we fix this?

  • BEx Analyzer in different language

    Hi Experts, i got my Bex analyzer menus in a different language. How can i change it  ? regards Abhi

  • Event when creating a document?

    Hi everyone, With Sap B1 SDK, is there a way to catch an event when creating a document? I want to execute some actions every time an Invoice is created. Have anyone a  solution for that? Thank you!