Sending from Business workplace to External mail ID

Hi,
Please Some help me on this issue am getting below error  when am trying to send mail from Business Workplace to External Mail
Cannot process message , no route from SAPUSER TO abc123 at gmail dot com
I done configuration by refereeing below.
Please follow these steps:
1.) tcode = SCOT
2.) double click SMTP
3.) under "SMTP Connection" section, fill in your mail host IP(ex: webmail.sap.com) and the port number(25) and code page = No conversion.
4.) under "Supported address types", make sure Internet is checked, and click on "Set". The Address area has to be *
5.) To test route,
SCOT -->Utilities --> Routing test
RecipientAddr.type = INT
Recipient addr. = abc.xyz at sap dot com
6.) You also need to set the Default Domain.
SCOT --> Settings --> Default Domains (webmail.sap.com)
7.)Now go to tcode SBWP,compose a mail and in the recipient address,enter abc.xyz at sap dot com and send.
8.) Come back to SCOT and click on Utilities-->Start send process(CtrlF7) and execute.+
Thanks,
GAL

Hi
Same problem with me.
Mails are not sending to external mail id.
Pls help me out!
Regards.

Similar Messages

  • Sending sapscript form to an external mail

    i need to send sapscript form to an external mail like for example a yahoo mail from SAP. i need an ABAP code that performs this function. its urgent, please

    1) REPORT PROGRAM  - RSTXPDFT4 ,
    FIRST GENERATE SPOOL REQUEST THEN DOWNLOAD SAPSCRIPT TO PDF FILE ON LOCAL PC.
    2) copy this code to send this downloaded form to external mail -
    *& Report  ZGILL_SENDMAIL_PDF                                          *
    REPORT  ZGILL_SENDMAIL_PDF                      .
    INCLUDE ZGILL_INCMAIL.  "SEE BELOW FOR INCLUDE PROGRAM CODE.
    * 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 DEFAULT '[email protected]'.
    PARAMETERS : p_file LIKE rlgrap-filename
    OBLIGATORY DEFAULT 'C:TEMPSALARY_SLIP1.PDF'.
    * 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
    **********************iNCLUDE pROGRAM*********************************************
    *&  Include           ZGILL_INCMAIL                                    *
    * 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
    ***********************INCLUDE END*********************************

  • Disabling or Removing Forward icon(option) from business workplace

    Hai All,
    My user is asking to remove or disable the forward icon from business workplace. Is there any config setting to do this. Please let me know how to solve this problem,
    Thanks & Regards,
    H.K.Hayath Basha.

    Hi,
    I don't know if the icon will disapear, but what you could try is that you change the autorisations for the user. Check object s_wf_wi and remove the activity 25.
    As fas as i know, the user can't forward an item.
    Also check object s_oc_role, make sure that the value isn't administrator.
    I hope it helps,
    Kind regards,
    Maarten.

  • Add an e-mail adress to send from - not a new e-mail acount.

    Hi!
    How do I add an e-mail adress to send from in Mail? I do not want to add a new acount, just an e-mail adress that is shown to the reciver that the e-mail was sent from a specific adress. You can choose in the menu of a new e-mail which adress you want to send from - and I had that earlier. But now suddenly my icloud-adress appears as an option instead of the e-mail adress I want to use. So how can I add a new one?
    Best regards,
    Jenny

    Please don't post the same question multiple times!  Instead answer the questions in your original topic.

  • No Reply Function in ESS Business Workplace for SAP Mail

    Hi ESS Experts,
    We sent a short message using ESS Business Workplace. The receiver of the message was able to read the message but is not able to reply to it. We need to make sure this is not just a settings issue since replying to short message is allowed in R/3 Business Workplace. Is this expected behavior? Is there a way to enable a reply for ESS Business Workplace?
    Thanks in advance for your help.
    -Vlad

    hi vlad,
    please check the following user role is there are not SAP_BC_SRV_GBT_USER. and also further doucumentation please refer this [link|http://help.sap.com/saphelp_47x200/helpdata/en/1e/31a40415b711d4a39200a0c943858e/content.htm]
    letme know how much i understood u rproblem
    ravindra

  • How to configure business workplace via external email

    Hi all,
        Please help me,  Iam in learning stage,how to configure outlook setting in business work place.If you send the any documentation for mail configuration  that wil be great,this is my mail id ([email protected]).

    Hello, Cornelius:
    Thank You, for Your kindly responce, here are the info on my eMac:
    eMac Model No: A1002, EMC No: 1903 DHHS Code: G8
    Mac OS X Ver. 10.4 , processor 700 Mhz. Power PC G4 ( 2.1 )
    Boot ROM ver: 4.4.2f1 serial No. G8224C5JLRX
    My new Apple USB Modem, is a new one minisized, recently I bought in an Apple Store in Tucson Arizona, with no software or drives, I bought because we CaNot put to work neither with the built-in Ethernet, not with the Internal Dial-up Serial Modem either, Do Not Work.
    This is others info I get, on Contents: Software Extension, on Network:
    Built-in Ethernet, Type: Ethernet, Hardware: Ethernet, BSD Device Name: en0
    IPv4: Config. method: DHCI , IPv6: Config. Method: Automatic.
    Proxies: Proxy Config. method: Manual, ExcludeSimpleHostname: 0
    FTP Passive Mode: YES, Auto Discovery Enabled: NO.
    Internal Modem:
    Type: PPP ( PPP Serial ), Hardware: Modem, BSP Device Name: Modem.
    IPv4: Config. Method: PPP , IPv6: Config. Meyhod: Automatic.
    Proxies: Proxy Config. Method: Manual, ExcludeSimplrHostname: 0
    FTP Passive: YES, Auto Discovery Enable: NO
    Dear Cornelius, any idea ?
    May be I need some drivers ?
    Thank You Again, any help will be very appressiated: electson

  • Can't send from my .mac account through mail 2.11

    All of a sudden, the server rejects mail sendt through my .mac account although all other mail works fine in Mail 2.11

    It happens no matter where I am, whether at home or somewhere else. Incoming mail is just fine
    The spinning circle in the 'sending' folder continues to spin. Now if I have the wrong password in there, I will get an immediate notice that I have the wrong password.
    the error message says:
    Cannot send mail using mail server mail.mac.com
    some authentication is: mds challenge response or password. both work
    Outgoing server mail.mac.com:[email protected]
    incoming server:mail.mac.com

  • Message are sending from Business Process take a lot of time

    Hallo,
    in my BP there is the problem that the sending takes a lot of time. I see for example that mapping are not going. How can find the problem; the queues are empty. This seams a generell problem because all processes are effected.
    Thanks in advance,
    Frank

    Frank,
    Can ou give more details?
    Are you using a BPM? What are the steps in the BPM? What is the step that is taking a lot of time etc?
    Meanwhile, this tuning guide will prove handy,
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70ada5ef-0201-0010-1f8b-c935e444b0ad">SAP Exchange Infrastructure Tuning Guide XI 3.0</a>
    Regards
    Bhavesh

  • Copy of notifications (mails) not received in business workplace

    Hi,
    The users stopped receiving a copy of the notifications in their business workplaces sent via mail step in a workflow.
    The WF is using the SAP username to send the mails in the mail step of the workflow (we are not using the e-mail address, just the user name so the e-mail is obtained from SU01D).
    Do you know if there is any custimization particular of the user or in general where you can set up if a copy of the e-mail can be received in the business workplace as unread document?
    Thanks!

    Sorry, I was a bit confused that you said "The users stopped receiving a copy of the notifications". So did they receive them before? Did they get both 1) email and 2) notification in business workplace?
    At least I don't know a way to get notifications in business workplace if you have the above-mentioned "forwarding" setting on in SO16. I assume that if you turn it on, it simply forward everything to the email address and notifications are not coming to business workplace anymore. But if you said that it was working before, then I don't know how did you manage to get it working .
    I would understand that you have to steps in workflow One sends notfication and one sends email. But if you somehow get this working with only one step and then get a "copy" into business workplace and email both, that is great. I would be interested to know about how to achieve this.
    Regards,
    Karri

  • Send Workitem to external mail ID and Execute?

    Hi all,
    I have requirement to send a WorkItem to Approvers External Mail ID and executes there.I have tried to send text mail to Approver's external mail id using Fm SO_NEW_DOCUMENT_SEND_API1.
    It is working fine but how to send WI to external mail id?
    Is there any way?
    Regards,
    Arpita

    Hi AC,
    there is a way out for the problem which you have where the user doesnt want to put his SAP userid and pwd and wants him to take directly to the SAP screen.
    For this you need to create a shortcut in your SAP logon pad for the transaction.
    and since you want him/her to go directly to the tcode, you need to put an entry in your sapshortcut.ini
    -pw "password"
    So what this entry does is the moment user clicks the workitem in Outlook, it would directly take him to the t-code for which you have created the shortcut, without asking him/her credentials.
    For your second issue, yes if 2 users get workitem, if any one reserves or executes the workitem, it automatically deletes from the other users SAP inbox.
    Hope it helps.
    Aditya

  • How to send "SPOOL" on SAP MAil or external mail in background???

    I tried using 'SO_DOCUMENT_REPOSITORY_MANAGER' function but it failed when I run it in background. I learned that it calls a screen at the middle of the process which needs user input to go on with the process.
    Is there other way that I could send spool on SAPMail or external Mail in background??? Any suggesstions will be greatly appreciated.. thanx...

    see below sample function module, you can use in backgroud also
    FUNCTION Z_SEND_MAIL_FOR_SPOOLLIST.
    ""Local interface:
    *"       IMPORTING
    *"             VALUE(SPOOLNUMBER) LIKE  SY-SPONO DEFAULT SY-SPONO
    *"             VALUE(MAILNAME) LIKE  SOOD1-OBJNAM DEFAULT 'NOTE'
    *"             VALUE(SUBJECT) LIKE  SOOD1-OBJDES
    *"             VALUE(RECEPIENT) LIKE  SY-UNAME OPTIONAL
    *"             VALUE(DLI) LIKE  SOOS1-DLINAM OPTIONAL
    *"       TABLES
    *"              TEXT STRUCTURE  SOLI OPTIONAL
    *"       EXCEPTIONS
    *"              ERROR
    DATA: OBJECT_HD_CHANGE LIKE SOOD1 OCCURS 0 WITH HEADER LINE,
          OBJPARA          LIKE SELC  OCCURS 0 WITH HEADER LINE,
          RECEIVERS        LIKE SOOS1 OCCURS 0 WITH HEADER LINE.
    OBJECT_HD_CHANGE-OBJLA  = SY-LANGU.
    OBJECT_HD_CHANGE-OBJNAM = MAILNAME.
    OBJECT_HD_CHANGE-OBJDES = SUBJECT.
    OBJECT_HD_CHANGE-OBJSNS = 'F'.
    OBJECT_HD_CHANGE-VMTYP  = 'T'.
    OBJECT_HD_CHANGE-SKIPS  = 'X'.
    OBJECT_HD_CHANGE-ACNAM  = 'SP01'.
    OBJECT_HD_CHANGE-OBJCP  = 'X'.
    RECEIVERS-RCDAT  = SY-DATUM.
    RECEIVERS-RCTIM  = SY-UZEIT.
    IF DLI IS INITIAL.
        RECEIVERS-RECNAM = RECEPIENT.
        RECEIVERS-RTUNAM = RECEPIENT.
    ELSE.
        RECEIVERS-RECNAM = DLI.
        RECEIVERS-ADR_NAME = DLI.
        RECEIVERS-RECESC = 'C'.
    ENDIF.
    RECEIVERS-SNDEX  = 'X'.     " Express-Mail
    APPEND RECEIVERS.
    OBJPARA-NAME = 'SPI'.
    OBJPARA-LOW  = SPOOLNUMBER.
    APPEND OBJPARA.
    CALL FUNCTION 'SO_OBJECT_SEND'
          EXPORTING
               OBJECT_HD_CHANGE           = OBJECT_HD_CHANGE
               OBJECT_TYPE                = 'RAW'
               OWNER                      = SY-UNAME
          TABLES
               OBJCONT                    = TEXT
               OBJPARA                    = OBJPARA
               RECEIVERS                  = RECEIVERS
          EXCEPTIONS
               OTHERS                     = 01.
    IF SY-SUBRC NE 0.
       RAISE ERROR.
    ENDIF.
    ENDFUNCTION.

  • Document Distribution for External Mails ids

    Dear Expert Consultants,
    I would like to know how to send Docuemnts as link from Document Distribution to external Mails. Also i  want to know Mass printing functionality in DMS Documents.
    Regards,
    Deviprasad.P

    Hi,
    In the standard case you need to folow below procedure
    1. Use TC SOCP to create external recipients. you may need BASIS help in this. 
    2. Create recipient list using TC CVI1.
    2. Assign the documents to be distributed to this list. Document should be created before this step.
    3. Assign External recipients to this list.
    4. Distribute the document using CVI8.
    5. TC CVI9 will help you to know the status of distribution.
    Most important factor is that your SAP standard workflow which drives the distribution to external mail ids should be working. Please contact BASIS team if it has any problem. Without this distribution is not possible.
    Hope it will help you.
    Regards,
    Atul

  • Access to Business Workplace Inbox

    Hello,
    I use SAP Netweaver Gateway with ODATA protocol.
    Into Workflow Services metadata I cannot find which service offering the possibility to access to "Document" part of the "Inbox" coming from "Business Workplace":
    Is it possible to access to theses information from the workflow services ?
    Thanks in advance
    Best regards.

    Do we need to have "Task Gateway" installed and enabled to access to Inbox content ?
    According to SAP NG documentation below it seems to be the case:
    Task Gateway
    Thanks in advance

  • Send apple email - how do I set the - send FROM account?

    found this nice script to auto create and send apple email...
    Q: how do I set the : send from account?
    tell application "Mail"
    set theMessage to make new outgoing message with properties {visible:true, subject:"My Subject", content:"My Body"}
    tell theMessage
    make new to recipient at end of to recipients with properties {name:"test", address:"[email protected]"}
    end tell
    send theMessage
    end tell
    nice info here:
    http://www.mactech.com/articles/mactech/Vol.21/21.09/ScriptingMail/index.html

    I've been using the following which may be more complicated than necessary but it does work:
    -- SCRIPT SEGMENT --
    tell application "Mail"
    activate
    set listOfSenders to {}
    set everyAccount to every account
    repeat with eachAccount in everyAccount
    set everyEmailAddress to email addresses of eachAccount
    if (everyEmailAddress is not equal to missing value) then
    repeat with eachEmailAddress in everyEmailAddress
    set listOfSenders to listOfSenders & {(full name of eachAccount & " <"Mail"
    set newMessage to make new outgoing message with properties {subject:theSubject, content:theBody & return & return}
    tell newMessage
    set visible to true
    set sender to theSender
    make new to recipient at end of to recipients with properties {name:theName, address:theAddress}
    set font to "Lucinda Sans"
    set size to 14
    end tell
    activate
    --send newMessage
    end tell
    -- END SCRIPT SEGMENT --
    I have commented the actual "send message" line so that I can read the message before clicking the send button as I often will add a comment.
    Al

  • 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

  • To: Field in Outlook Express duplicating email address set up in Iweb.

    Hi I've setup a button on my website so people can email me. I used the inspector to add the hyperlink - email message in the to field i put entered infoatexample.com once Now when i use my dads computer which has outlook express to send an email fro

  • Help with Mac Dreamweaver PHP

    Well, I finally have PHP embedded within HTML working however the directory structure is totally confusing me.  I place files is /MAMP/htdocs and yet nothing works unless I add /MAMP/htdocs/htdocs and place the index and other php files ALSO in there

  • Every thing is red in ST02

    Hi to all In our production system we have 16 GB of ram and 9 GB of swap memory, OS is suse linux 10 DB is DB2 SAP version is  ECC 6.0, the problem is that the performence is very slow, i gone lot of notes and othe help documents but i got puzzeled,

  • Not able to update any apps from new apple id.. Old id im not using anymore., cannot access the old one

    Not able to update any apps from new apple id.. Old id im not using anymore., cannot access the old one.. But during update time asking for same old password of old apple id

  • Export RAW files from iPad to NAS

    Hello everyone, I've been a while wondering if it is possible to quit personal computers for my Photo Workflow, that involves RAW file formats. The ideal workflow should be like this: Take a photo in RAW+JPEG. Import the photo in an iPad Air 2 with i