0Employee/Vendor/Customer Email Address

Hello,
Does anyone know how to get the email address into BW for an employee, vendor, or customer?  The email address resides in the R/3 table ADR6, however, the email address is not referenced by the employee/vendor/customer number.  So I'm not sure how to make the link from employee/vendor/customer master data to the corresponding email address.  Any suggesstions would be greatly appreciated.  Thanks!

Hi Shelly,
Create a generic funciton module on tables KNA1,.LFA1..with ADRC..
Example:-
For customers go to KNA1 table..for a customer number..and get the field <b>ADRNR</b>.. Retrieve the email info from table ADRC field <b>FLAGCOMM6</b> based on the address number <b>ADDRNUMBER</b>. Check if the SMTP info is populated in this field for given address number..
Same is the case with vendors..
Go to KNA1 get the addressnumber and retrive the mail info from ADRC table based on address number
Regards
Manga(Assign points if it helps!!)

Similar Messages

  • Possible to use custom email address for eprint?

    I have recently picked up an e-print capable printer. From what i see, i have to use the randomly generated @hpeprint.com address. Is it possible to use a custom email address for this printer? If not, will a feature like this be added in the future?
    I would prefer to have it connect to my smtp server to recieve mails from an address of my chosing rather that using the hpeprint domain.

    The best that can be hoped for right now is to set up a secondary email address such as gmail that you keep private and use only for eprint emails. Set up your new email account to forward all received emails to the ePrint email address of your printer. I am in the process of testing this myself after reading another thread here suggesting it.
    Edit: I had hopes for this, but no luck! Get message in Eprint center about too many recipients.Wish HP could fix this.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • CATT - vendor/customer master address field length over

    Dear all,
       when use CATT to record vendor/customer master,the address some fields length are over recorded field length(ex. ADDR1_DATA-NAME4,ADDR1_DATA-STR_SUPPL3...etc)
    is there any config in CATT to solve this kind of problem?

    When you are doing your LSMW batch input recording, on selection screen (where you specify the sales org, distribution channel, division, account group, etc) please put a flag on "Use central address management" checkbox (SAPMF02D 0100 >  USE_ZAV).
    In this case you should be able to see and fill the desired fields.

  • Custom email address doesn't work in Maverick

    Configured Apple Mail on a new iMac running Maverick 10.9.1 but my email is custom for business purposes rather than gmail, yahoo, etc.  I'm not able to send or receive on this custom address though others work fine.  Get an error that it can't connect to the internet despite identical settings to my MacBook Pro which works.  Nothing turned up on the web domain side.  Help! 

    jaydog69 wrote:
    Hi, I've been assigned a new BT Yahoo email address and password, but they won't work. Does that get activated when my broadband becomes active? I go live with BT on Monday but surely if a yahoo email has been setup I should be able to log in now?
    Also, do I have to use this email account? Will BT email me at the address I have refisted with My BT if they need to contact me?
    Thanks
    Hi.
    Indeed, the email account tends to become active on the day the BB starts to work. However it may not be until late in the day. If the email address can't be accessed on the go live day, check the day after - and if it still fails, you can contact a moderator who should be able to unlock the email account.
    You don't have to use the email account, but it may get sent service emails from BT.
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • Customer Email Address

    Hi All,
    I need to fetch the email address of the destination customer in case of an Internal Order. Could anyone provide the tables and joins for this. Let me know in case anyone needs more info.

    HI Umesh,
    1) This address data where you wan to print if you want to print on smartform please use address window .
    From  KNA1  take ADRNR  and pass this value to  ADR6  you will get the complete address.
    Post if need more help in this.
    Regards,
    Madhu.

  • Amending Vendor Contact Email Address

    Can anyone tell me how to change the email address of a vendor contact.
    I am trying all I can but the field is always just read only so therefore cannot be changed.
    Any ideas on this one ?

    Hi Keith
    Please reconstruct the following steps to see, if you are able to change the email address in the SAP E-Sourcing vendor Master
    1) Login to SAP E-Sourcing buyer
    2) Navidate to Vendor Management -> Vendor -> All Vendors
    3) Select the vendor by clicking on the vendor
    4) Click on the edit button (Looks like you have not selected this)
    5) Navigate to the contacts Tab
    6) Click on the vendor that you have added in the Add vendor in the contacts tab
    7) Click on the pencil icon (you will get message "open this contact for editing)
    8) Replace this with a new email address
    9) Click save
    Note that to do the above you need to have the :Buyer Administrator privilage for your account
    Let me know if you were able to resolve the issue
    REgards
    Tridip

  • Customer Email Address Update

    Hi People,
    Could anyone let me know how can Cusomter Email Address be updated in R/3 without using BDC and LSMW? Is there any function module specifically to update email address of a customer?
    Cheers

    Hi,
    Use the below BAPI
    'BAPI_CUSTOMER_CHANGEFROMDATA1'
    Regards
    Sudheer

  • PayPal and Customer Email Address

    Ok ive got the whole paypal system working and coldfusion,
    the IPN works perfectly.
    But I want to record a customers email address before sending
    the informatiton to paypal, I have a simple form with email address
    and an onto paypal button.
    How can I pass the email address to my database then the rest
    of paypal info to paypal.
    Thought of passing it to another cfm page, which would
    automatically then goto paypal, but how do I get the pay to
    automatically send a form.

    This could be a bit trick since you basically want to actions
    for you
    submit. Leaving out an Ajax solution which you could possibly
    capture
    the e-mail field and post it to a page separately from the
    form submit.
    Without bringing in another buzz word I see two options which
    may work.
    Submit to a CFML Action page that captures the email field
    and then
    ONE: uses cfhttp and cfhttpparameter tags to build a request
    and send it
    to the paypal action url.
    TWO: creates a new <form ...></form> block but
    with all hidden fields.
    Then on the onload event trigger a JavaScript submit of the
    form.
    Either of these could have problems, but it's the best I can
    come up
    with off the top of my head.
    stuart1231 wrote:
    > Ok ive got the whole paypal system working and
    coldfusion, the IPN works
    > perfectly.
    >
    > But I want to record a customers email address before
    sending the informatiton
    > to paypal, I have a simple form with email address and
    an onto paypal button.
    >
    >
    > How can I pass the email address to my database then the
    rest of paypal info
    > to paypal.
    > Thought of passing it to another cfm page, which would
    automatically then goto
    > paypal, but how do I get the pay to automatically send a
    form.
    >

  • Enforce custom email address, field cannot be blank

    I am preparing forms and want to require only the school email is entered. I am currently using the default javascript for email validation, but would like to enforce the email end with @school name.edu, and field cannot be left blank. 
    I am using the onblur action. Here is what I currently have which gives a fill-in box if they try to leave the field empty, but still allows them to put in a personal email address and they can hit the cancel key and move to the next field leaving the email field blank. I know I am missing something.  Am new to javascript so any help would be appreciated.  Using Acrobat XI Pro
    // report error if there is an invalid email address when the field is not empty.
    if (! eMailValidate(event.value) && event.value != "")
    event.rc = false;
    app.alert({
    cMsg: "Invalid email address - Please try again",
    nIcon: 0,
    nType: 1
    } // end if validation test
    var t = event.target;
    var cResponse = app.response({
    cQuestion: "Type your University email address",
    cTitle: "Universityemail",
    cDefault: "email not added",
    cLabel: "Type your University email"});
    if (cResponse == null) { //if cancel is selected
    app.alert ("You cancelled adding your email?");
    cResponse = "";
    else
    app.alert ("You typed your email as: \""+cResponse+"\" \n\n Tab out of the field to register your email",2);
    t.value = cResponse; //places the data from the dialog to the target field

    You can easily check it by using something like this as one of the conditions in your if-statement:
    /@schoolname\.edu$/.test(event.value)
    I would suggest getting rid of the pop up message, as you're just making your work more difficult, since you now need to validate that email address as well.

  • Possible?: Send OS X Error Report to custom email address?

    Hi,
    I was wondering is it possible to somehow tweak OS X so that instead of sending software error reports to Apple, it would send them to my email?
    I would use this as a part of our helpdesk ticketing system.

    Hi,
    I was wondering is it possible to somehow tweak OS X so that instead of sending software error reports to Apple, it would send them to my email?
    I would use this as a part of our helpdesk ticketing system.

  • F.27(Statement should be emailed if customer master contains email address)

    Hi All,
    I am working for the tcode f.27. A standard form F140_ACC_STAT_01 is assigned to tcode. Here my requirement is i need to do some changes in the form and output should be in pdf format and statement should be emailed if customer master contains email address.
    Can any body please help me how to send the email if the customer master contains email address.
    Please reply.
    Thanks,
    Nagendra

    Hi Nagendra
    change the customer email address on home and bussiness email field first and then make following changes to function module 'Z_CORR_PROCESS_00002310' or whatever name you  have got , this is working for us, let me know if y ou have any problem, You might have to tweak a code a bit , here we are decide whether to send customer statements to two email or not based on customer group selection
    data: w_output_type(10).  "Output type
       data: w_kunnr like i_kna1-kunnr.
       data: w_ktokd like i_kna1-ktokd.
       data: l_addressdtls type zaddressdtls.
       data: l_atype(1).  " Address type
    DATA: w_mailtxt TYPE finaa-namep VALUE 'ZCITY_STATEMENT_MAIL_BODY'.
    * Variables are imported - set in ZFKORD10_STUD
    * Import variable w_output_type from memory
       clear: w_output_type.
       IMPORT w_output_type FROM MEMORY ID 'ZOUTPUT_TYPE'.
       move 'B' to  l_atype.      "Business e-mail
       if w_output_type = 'EMAIL'. "Email option chosen
         c_finaa-nacha = 'I'.
         c_finaa-tdfaxuser = sy-uname.
          c_finaa-namep = w_mailtxt.
    * Get the Relevant e-mail address
         move I_KNA1-KUNNR to w_kunnr.
         clear: l_addressdtls, c_finaa-intad.
         call function 'Z_GET_CUSTOMER_ADDRESS'
              EXPORTING
                   kunnr                   = w_kunnr
                   atype                   = l_atype  "B Business H Home
              IMPORTING
                   addressdtls             = l_addressdtls
              EXCEPTIONS
                   invalid_customer_number = 1
                   no_customer_partner     = 2
                   invalid_address_type    = 3
                   others                  = 4.
         if sy-subrc eq 0.
           if l_atype = 'H'.  "Home e-mail address
             c_finaa-namep = w_mailtxt.
             c_finaa-intad = l_addressdtls-home_email.
           else.
             c_finaa-namep = w_mailtxt.
             c_finaa-intad = l_addressdtls-business_email.
           endif.
         endif.
         concatenate i_kna1-kunnr
                     'Account statement from City University'
                      into c_itcpo-tdtitle separated by space.
         c_itcpo-tdfaxuser = sy-uname.
         if ( c_finaa-intad is initial            " No email address
              and c_itcpo-tdpreview is initial ). " and not print preview
           c_finaa-nacha = '1'.        "Print output type
           c_itcpo-tdgetotf = 'X'.     "Do not print
           c_itcpo-tdpreview = space.  "No print preview
           c_itcpo-tdnoprev = 'X'.     "No print preview
         endif.
       endif.
    if w_ktokd = 'stud'.
        move 'H' to  l_atype.      "Business e-mail
       if w_output_type = 'EMAIL'. "Email option chosen
         c_finaa-nacha = 'I'.
         c_finaa-tdfaxuser = sy-uname.
         c_finaa-namep = w_mailtxt.
      "Get the Relevant e-mail address
         move I_KNA1-KUNNR to w_kunnr.
         clear: l_addressdtls, c_finaa-intad.
         call function 'Z_GET_CUSTOMER_ADDRESS'
              EXPORTING
                   kunnr                   = w_kunnr
                   atype                   = l_atype  "B Business H Home
              IMPORTING
                   addressdtls             = l_addressdtls
              EXCEPTIONS
                   invalid_customer_number = 1
                   no_customer_partner     = 2
                   invalid_address_type    = 3
                   others                  = 4.
         if sy-subrc eq 0.
           if l_atype = 'H'.  "Home e-mail address
             c_finaa-namep = w_mailtxt.
             c_finaa-intad = l_addressdtls-home_email.
           else.
             c_finaa-namep = w_mailtxt.
             c_finaa-intad = l_addressdtls-business_email.
           endif.
         endif.
         concatenate i_kna1-kunnr
                     'Account statement from City University'
                      into c_itcpo-tdtitle separated by space.
         c_itcpo-tdfaxuser = sy-uname.
         if ( c_finaa-intad is initial            " No email address
              and c_itcpo-tdpreview is initial ). " and not print preview
           c_finaa-nacha = '1'.        "Print output type
           c_itcpo-tdgetotf = 'X'.     "Do not print
           c_itcpo-tdpreview = space.  "No print preview
           c_itcpo-tdnoprev = 'X'.     "No print preview
         endif.
    endif.
    endif.

  • Delete/Re-Use Custom Printer EMail Address

    I have a LaserJet Pro CM1514fnw. I successfully connected and personalized my printer's email address and it was working great for about 2years! Last night my printer auto rebooted during initalization when I was forced to do a NVRAM Initialization. When the initalization finished my printer when back to the defaults and assigned a new printer code. When I logged back into ePrintCenter, my "past custom email address & printer" was gone! I was able to reconnect the the printer code however it said my customized email address was in use! Of course it was because I was the one using it. How am I able to delete and my old email address so I can reassign the same one to my new printer code?

    Hi QDeath,
    I understand that you want to keep your ePrint email address.  Once the reset was done on your printer your current ePrint settings was lost.   The ePrint email address that you were using is unavailable for six months.

  • Vendor / Customer Master Report

    Dear Experts,
    Would you please inform me if there is any standard report in SAP which generates master for all the customer / vendors created, having below mentioned fields:
    SAP Code
    Vendor / Customer Name
    Address
    Contact Details
    Telephone no
    Mobile No
    E-Mail id
    Company Code
    Date of code creation
    Nature of vendor / customer
    Date of Birth / Incorporation
    PAN No.
    TAN No.
    Service Tax Registration No
    Bank Details
    Tax code attached to them
    Thanks & Regards,
    Ripon Paul

    dear friend,
    please try S_ALR_87012179 (customer list) and S_ALR_87012086 (vendor list)
    you would also try to build sap queries based on KNA1 , LFA1 tables
    good luck!

  • How do I use a previous email address with my printer?

    How do I use a previous email address with my printer?  I reset my printer and want to use the same email address as before.Thanks

    At this time the printer's email address will not be available for for re-use for 6 months. This is a security measure once an email has been disabled. After that time, one can go into their account and then change the customized email address for the printer. 
    I am a former employee of HP...
    How do I give Kudos?| How do I mark a post as Solved?

  • Installed LasrJet P1102w Registration and creation of eprint account I type the wrong email address

    I have just completed installing my HP LasrJet P1102w and when the installation was complete it printed a Test Page. However, during the registration of the product I messed up on the Email address account to include eprint account. Now I cannot do an eprint on my new HP LaserJet P1102w nor can I Log In to my account to change the screw up. Need help. Thank you. If there is a Tel Phone # that I can call it would be appreciated. again thanks.

    Hi WBL49,
    Thank you for being a member of the HP Support Forums.  I see that you setup the ePrint feature of your Laserjet P1102W printer in an account with an email address that you don’t have access to. No worries WBL49,  if you don’t remember the email address that you accidentally used there are two options available. 
    The first one is to disable the web services of the printer and then re-enable the web services.  This will allow you to go through the ePrint setup process again allowing you to create your account with the email address you wish to use.  I’ve included the Remove ePrint and HP Printables in HP Connected document.  Please follow the steps in the Remove ePrint section for Laserjet printers.  Once you have completed that step, please follow the steps in Getting the Printer Claim Code to get a new web services information sheet with the claim code.  Once you have the claim code, please follow the steps in Setting Up a Custom Email Address for ePrint to reclaim the printer.  If you had created a customized ePrint email address earlier, please be aware that ePrint email address is no longer available and you will need to create a new ePrint email address for the printer.
    The second option is to call HP.  Please call HP’s Cloud Services at 1-855-785-2777 if you live in the USA/Canada region. If you live outside the USA/Canada region please click here to find the Technical Support number for your country/region.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

Maybe you are looking for

  • How to Call web service operation by creating plain SOAP message in client?

    Hi Thank you for reading my post. I have some questions about using web methods of a web service which i would be very gratfull if you could answer. I should implement a web service that should receive a file with some other parameters from client an

  • In Completed InDesign document - Text reflows automatically

    We are one problem in InDesign file. We have completed composing a document in InDesign file. After re-open the same file to do some text correction, but while re-opening the line ending gets changed automatically in some paragraphs. Because of this,

  • Problem of showing image in opera

    hi, I have used following code for for showing image with jsp: <img src="<%=image%>"> height="100" width="100">When i open this with Internet Explorer then it can show image. But whwn open it in Opera then it cannot show images. What's the problem of

  • Capture ED in import PO

    In import purchase, I have made G.R and I.R without capture Duty. Now need to capture DUTY by J1IEX. It donu2019t consider if enter PO and material document number and invoice number. How to capture the duty?

  • Please help create the query

    I have table which has 4 columns (A,B,C,D) Table t1 A B C D 1 - - - - 2 - - - - 3 - - - - 4 5 - - - - 6 - - - - 7 - - - - 8 the required output is Table T2 A B C D 1 2 3 4 5 6 7 8 How can i come up with this output