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.

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**

  • 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

  • 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!!)

  • 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.

  • 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

  • Script to populate email address in Order Header attachment

    Hi Experts,
    I need a help for inserting Order header attachment. We have email address of the customer stored in Order Header attachment in Short text / Long Text under the Category: Customer Email Address.
    I need a PLSQL script which created the email address in the header attachment.
    Thanks in Advance.
    Yuvaraaj.

    Figured out. It can be done using the API oe_atchmt_util.add_attachment
    Thanks,
    Yuvaraaj.

  • Setting up email addresses in a text field.

    Hi.
    Can anyone help me.
    I am using Adobe Designer 7.0 and would like to know if there is a way of linking a email address in a text field box to a submit email button.
    As far as I can tell you can only put one email address in the object field and thats it.
    What i am trying to do is let people select a email address from a drop down list and then click the submit email button and it would use the address from the drop down list.
    Thanks
    Mike.

    I set up a form with a hidden "Email submit button" with a default email address.
    I placed another visible button on the page and put in the "click" event the following javascript:
    > EmailSubmitButton1.resolveNode("#event").submit.target = "mailto:[email protected]";
    > EmailSubmitButton1.execEvent("click");
    change the "mailto:[email protected]" to whatever you want, as long as it has "mailto:" in front of it, or else it defaults to a HTTP submit.
    For example, if you want to set the email address to a value from a drop down list:
    > var emailAddress = "mailto:" + DropDownList1.rawValue;
    When the user clicks on the visible button, it's sets the email address on the hidden email button and causes a click event on the button - bingo - email sent to a custom email address.
    Regards
    Anthony Jereley
    Indigo Pacific Pty Ltd
    www.indigopacific.com

  • My email address is rejected as invalid when i try to sign up for eprint

    i am  connected to internet have printer code but cannot connect to eprintcenter.com to enter printer code. is the code the same as the email address for the printer? Very confusing instructions with this hp all in one j611 printer..also this printer is listed for eprint capabilities.the set up for wireless on my home network has been a real trip connecting to windows vista..thanks for any help or advice....joan

    Hey joanpc,
    HP ePrint Setup Steps
    1. Enable Web (Cloud) Services on your ePrint enabled HP printer.
    a. For assistance navigate to www.hp.com/support and enter your printer’s model number.
    2. When the printer connects to the ePrint servers, shortly after, a HP ePrint Mobile Printing page will
    print.
    a. A Product Update may be needed in order to continue to enable Web Services.
    3. Bring the ePrint page mentioned in step 2 to a Web connected computer.
    4. Open an Internet Browser on the Internet connected computer.
    5. Navigate to www.eprintcenter.com in the Internet Browser.
    6. Select the Blue button that reads “Sign In” on the Home Page at ePrintcenter.com.
    7. After selecting “Sign In” a window will open. Select “Sign Up” in Blue letters at the top of the window.
    8. After selecting “Sign Up” a window will open allowing you to enter information to create an account.
    9. When your account has been created successfully, the account owner will be prompted to “Add
    Printer”.
    10. On the ePrint Page, from step 2, you will find a Printer Code just right of the Blue number 2. Use this
    Printer Code to “Add Printer”.
    11. Once the Printer has been added successfully you will be given the option to setup.
    12. In the Setup options you have the option to enter a Custom email address.
    a. Erase the original Printer code from the custom email address field and enter the customized
    email address of your choice.
    b. You will not have to enter the domain, @hpeprint.com.
    c. Example: [email protected]
    d. Click “Check” to confirm that the custom email address is available for use.
    13. In the Setup options you can select a security type: Allow Everyone or Authorized users only.
    a. Note: No ePrint jobs will print on your printer unless you give the customized email address to
    someone. Allowing everyone simply allows whomever you give the printer email address to
    send ePrint jobs to your printer.
    14. At the top of your home page confirm that your printer name is displayed and there are green check
    marks beside “Connected” & “Ready”.
    15. Congratulations you have done an Outstanding Job! Now you should be able to send ePrint jobs to
    your printer!
    Your printer code will be the printer's email address. (e.g. [email protected])
    Although I am an HP employee, I am speaking for myself and not for HP.
    If I have resolved your issue, feel free to provide Kudos and make sure you mark this thread as solution provided.

Maybe you are looking for

  • How do I airplay to apple TV when using Cellular network?

    I want to be able to send my netflix video to my apple tv when im using the cellular network. Can this be done? I have an out of town property that I stay at sometimes and I do not have internet access there except on my iphone. So if I bring my appl

  • How do i set up a separate itunes library for my wife so her synch doesn't pick up my library

    I want to set up a separate library so that my wife's ipod doesn't try to synch with my existing library. Can it be done or is it possible to install two versions of itunes on the same PC?

  • Time bar on calendar is off by one hour

    So I notised this problem this morning. The time is correct, all the events are at the correct times. The only problem is that the "progress bar" itself is showing up in the wrong hour block. I have turned on time-zone support and I have turned the i

  • Slideshow with audio

    Hi, 1st time to use forums. I'm using idvd5.0.1 and iphoto 5.0.4 and trying to made a dvd of slideshow with music. If you make the slideshow in idvd it will only let you use 99 slides, and the music repeats itself (which is what I want). I have 234 s

  • ECCS : Proportional consolidation data selection

    Hello Guys, I want to include items into the consolidated statement using proportional consolidation (transcation CX26). My problem is that with this tool i cannot select any item or apply any restricton to my source data : the standard program propo