Customer contact. email

Hi gurus,
I want get a list of all customer master data with customer contact. I have gone to table: KNVK, but I can't get see if they have an email or not. How could I get a list with email?
Thanks a lot.

Hi Sam,
ABAP Query can be written with T-codes SQ01, SQ02 , SQ03 and also SQVI.
Search the forum and you will get many documents on step by step instruction to create a query.
End User can also create query on their own if tables are known to them..
Regards,
SAPFICO

Similar Messages

  • Emailing packing list to the customer contact

    Hi,
    Our business process needs emailing of packing list to the customer.
    The packing list output form has been developed using SMARTFORM to print bar codes on it.
    We would like to utilize contact person functionality, which is available in the customer master, to store the email id of the packing list recipient.
    Can you provide the details of how to send the packing list output to the customer contact using SAP email functionality? Should I need to create a separate output condition type for it?
    Thanks in advance.
    Regards,
    Shiva

    Hi Shiva,
                 Is this through the SMARTFORM print program.
    If so...
    After calling a SMARTFORM function module. get the spool number from sy-spono.
    SMARTFORM output would be in OTF format. then convert this OTF Spool to pdf format using call  fm CONVERT_OTFSPOOLJOB_2_PDF or
    CONVERT_OTF_2_PDF (Check the fm, I am not sure which one is best).
    Output from this fm would be PDF table type tline
    Send this pdf file to  customer email id using fm 'SO_NEW_DOCUMENT_ATT_SEND_API1'.
    Let me know if u need further help.
    Reward points.
    Thanks
    Sampath.

  • Webform Customer Contact field only adds email

    Hi,
    Our customers enter their information via a webform which automatically adds them to our CRM and creates a new case. Yay! Great and easy function.
    Here's the thing though, the customer also enters their Cell Phone as a mandatory field in our webform, however the record is not entered into the customer contact field and only their email address is added.
    Can anyone help?

    Hey there,
    At a guess you made a custom field for the cell phone number which will only go into the case. In the form builder you should select and use the cell phone number field, not a custom field. This will then go into the CRM entry.
    If you feel you have done that you need to ensure you have not renamed the input field name paramater as it needs to he the same as what it spits out in the system so it knows where to store it.
    If that is ok then it could be that you have changed the ID etc or changed the form to break the javascript of the form so people are leaving it blank and the script to run it is not working.

  • Can anyone give me a contact email address for apple customer services?, Can anyone give me a contact email address for apple customer services?

    Can anyone give me a contact email for Apple Customer services?
    I would rather not rant on here!

    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Apple - Support - Contact Apple Support.
    For Mac App Store: Apple - Support - Mac App Store.
    For iTunes: Apple - Support - iTunes.

  • New Infinity customer, btinternet email not recogn...

    Hi,
    As with
    http://community.bt.com/t5/BB-Speed-Connection-Issues/BTinternet-email-address-not-recognised/m-p/96...
    http://community.bt.com/t5/BB-in-Home/btinternet-email-account-email-not-reconised/m-p/74077#M44042
    http://community.bt.com/t5/BB-Speed-Connection-Issues/New-BT-Broadband-customer-with-email-problem-n...
    the btinternet.com emil address that I asked for and was sown in the registration email when I applied for BT Broadband has not yet been set up.
    When I try to login in I get "This ID is not yet taken." or when I try to get e new password it says that the email does not exist.
    We registered on 2nd August, got a new line on 10th, Infinity on the 15th due to a delay, and then our old number was restored on the 24th. When we called the help desk on the 18th or so, we were told that it was because the order was open ( for the number restoration). That is now closed.
    The broadband service is amazing by the way.
    I appreciate that the services provided by BT are divided amongst several companies, but there seems to be a teeny break in communications somewhere that stops the email accounts being set up on schedule.
    I tried calling 0800 111 4567 but couldn't break the IVR maze to get to someone to talk to.
    What is the best way forward please, I want to set up BTFON and check out the security software!
    Regards
    Solved!
    Go to Solution.

    Hi i suggest you contact the forum mods they should be able to get that sorted for you this is a link to them
    http://bt.custhelp.com/app/contact_email/c/4951
    they normally reply by email or phone within 72 hours maybe slightly longer due to the bank holiday they are a UK based specialist team who have a good record at getting problems solved
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Send Sale Quotation to customer by email

    Can i send out sale quotation to customer by email in B1.
    Can you help me! Thank you

    Hi.
    In 2004C
    You ought to have SBO Mailer from SBO Service Manager installed. Then open document and choose File - Send - E-mail. If contact person has e-mail it will put in automatically, if no type or In window Send message choose Add recipient - Contact Person. Check E-mail. type here. Fill Subject and press Send.
    With regards
    Maxim Groonis

  • Custom Alert Email Templates Issue - List Alerts emails not using customized XML alert template

    I have recently customized the XML alerts template (AlertTemplates.xml) for our site collection in SharePoint 2010 to exclude specific fields in the email when users who have subscribed to a list using the "Alert Me" feature.  I
    have renamed the custom alerts XML file and loaded the custom template in the following directory (%ProgramFiles%\Common Files\Microsoft Shared\Web server extensions\14\TEMPLATE\XML) and
    restarted IIS.  Once users subscribe to the alerts using the list using the "alert me" function they received the customized email as intended. 
    We needed to auto-subscribe users to the email alerts so what I did was used a powershell script to add users to the alert subscriptions using the script shown in below:
    Import-Csv D:\Temp\filename.csv | ForEach-Object{
    $webUrl=$_.WebUrl
    $listTitle=$_.List
    $alertTitle=$_.AlertTitle
    $subscribedUser=$_.SubscribedUser
    $alertType=$_.AlertType
    $deliveryChannel=$_.DeliveryChannel
    $eventType=$_.EventType
    $frequency=$_.Frequency
    $oldAlertID=$_.ID
    $web=Get-SPWeb $webUrl
    $testAlert = $web.Alerts | WHERE { $_.ID -eq $oldAlertID }
    IF ($testAlert) {
    $web.Alerts.Delete([GUID]$oldAlertID)
    Write-Host Old alert $oldAlertID deleted. -Foregroundcolor Cyan
    $list=$web.Lists.TryGetList($listTitle)
    $user = $web.EnsureUser($subscribedUser)
    $newAlert = $user.Alerts.Add()
    $newAlert.Title = $alertTitle
    $newAlert.AlertType=[Microsoft.SharePoint.SPAlertType]::$alertType
    $newAlert.List = $list
    $newAlert.DeliveryChannels = [Microsoft.SharePoint.SPAlertDeliveryChannels]::$deliveryChannel
    $newAlert.EventType = [Microsoft.SharePoint.SPEventType]::$eventType
    $newAlert.AlertFrequency = [Microsoft.SharePoint.SPAlertFrequency]::$frequency
    if($frequency -ne "Immediate"){
    $AlertTime=$_.AlertTime
    $newAlert.AlertTime=$AlertTime
    $newAlert.Update()
    Write-Host Created $newAlert.Title for $subscribedUser . -Foregroundcolor Cyan
    } ELSE {
    Write-Host Alert $alertTitle for $subscribedUser already done. Moving on. -Foregroundcolor Magenta
    When I ran the script and added the users and restarted the service, all users who were auto-subscribed via this method would get the email without the customizations that were done in the custom template.  All users who manually subscribed to the list
    using the "Alert Me" function would get the customized email. 
    Does anyone know why users who manually subscribe would get the custom email alert and why users who were auto-subscribed using the powershell script do not get the custom email alert?

    Hi  ,
    According to your description, my understanding is that users who were auto-subscribed using the PowerShell script do not get the custom email alert.
    For your issue, it can be caused by the auto-subscribed alert email which is generated by PowerShell script is  using OOTB alert template. You can add the following script into your script for setting
    the alerts’ alert email template:
    $contentService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
    $AlertsTemplateCollection =new-object Microsoft.SharePoint.SPAlertTemplateCollection($contentService)
    $newAlert.AlertTemplate = $AlertsTemplateCollection["YOUR_UNIQUE_TEMPLATE_NAME_VALUE"]
    Reference:
    http://sadomovalex.blogspot.com/2012/03/one-problem-with-updating-alert.html
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • What is the standard API for Customer Contact creation in R12

    Hi All,
    What is the standard API for Customer Contact creation in R12. my requirement is I need to create contact against Customer(Person/Organization).
    I need to develop pl/sql package for create Contact using the following fields
    First name , Last name , Email, Phone no, Ph ext,Mobile no,Contact no,Job title, Job title code,Country,Address1,Address2,Address3,Address4,
    City,State,Postalcode.
    Please help me.
    Thanks,
    K.Murugesan

    Hi All,
    Please update if you have any solution.
    Thanks
    Maanasa

  • R12: How to create Customer contact at party/account-site level

    Hello,
    I am working on a customer conversion where the legacy system stores customer contact at the address id (i.e. party site) level.
    Using various HZ APIs I have been able to create a party, customer account, location, party site, account site and account site use.
    Now, I want to create contacts at the party site or account site level. Which API is used to create a contact? (I found a note 985500.1 but it shows creation of contact point such as a phone number or email but not the contact itself).
    Any pointers appreciated.
    Manish

    HZ_PARTY_CONTACT_V2PUB

  • How to Create Customer Contact data in SAP CRM

    Hi All,
    Would want to create Customer Contact data in SAP CRM, could please guide me step by step that how can i create the customer contact data in SAP CRM?
    Regards
    Avinav

    Hello Avinav,
    In CRM 6.0 and 7.0 GUI is no more used, you can use WEB UI and login using SALESPRO role to create a contact.
    1. Logon to CRM web UI
    2. Choose Create Contact from the Navigation bar
    3. Enter all the data - Title, first name, last name, account id,
    street, stree2, street3, street4, street5, city, postal code, email,
    mobile no and website.
    4. Press the Save key.
    Hope it will help! Please award points in case this helps!
    Best Regards
    Lata

  • I have one apple ID for multiple devices in my family.  I'd like to keep it that way for itunes/app purchases.  I would like a simple step 1, step 2, step 3 response on what I need to do to separate all other features like imessage, contacts, emails, etc.

    I have one apple ID for multiple devices in my family.  I'd like to keep it that way for itunes/app purchases.  I would like a simple step 1, step 2, step 3 response on what I need to do to separate all other features like imessage, contacts, emails, etc.
    I have been reasearching how to do this on the internet, but I haven't found an easy explanation yet.  My family is going crazy over each others imessages being sent to others in the family and not being able to use FaceTime because of conflicting email addresses.  I have read that if each person gets their own iCloud account, this would work.  However, I need to know what to do after I set everyone up with their own iCloud account.  Do I make that the default email address to be contacted or can they still use their hotmail email addresses.  Any help- with easy explanation- would be much appreciated!!

    We do this in my family now.  We have one account for purchases, so it is used to share music and apps (I think that is in Settings/iTunes & App Stores).  Each iDevice has this configured.
    Then, each of us has our own iCloud account that is configured under Settings/iCloud.  That then allows us to have our own Mail/Contacts/Calendars/Reminders/Safari Bookmarks/Notes/Passbook/Photo Stream/Documents & Data/Find My iPhone/and Backup.  That Backup piece is pretty sweet and comes in handly if you replace your iDevice.  You can just restore from it.
    So we all share the Apple Store account but we all have our own iCloud accounts to keep the rest seperate or things like you mentioned are a nightmare.
    In answer to what iCloud does for you: http://www.apple.com/icloud/features/
    Think of it as an internet based ("cloud") area for all of those items listed in my response.  What you need to remember is photo stream only maintans the last 1000 pictures so don't count it as a complete backup solution for your pictures.  Even though I rarely sync with a computer these days, I do still try to sync my phone with iPhoto (I have an iMac) so that I have copies of all of my pictures.  1000 may not stretch as far as it sounds.
    Message was edited by: Michael Pardee

  • I have an iPhone 4 which is synced with a non apple laptop and wish to sync it with my new iMac.  I have backed the phone up with the laptop and am not sure how to sync it with the iMac without loosing any contacts, emails or photos from my phone.

    I have an iphone 4 which is currently synced with a non apple laptop and I wish to sync it with my new imac.  I have just backed the phone up on my laptop but am not sure what I need to do now.  I do not want to loose any contacts, emails or photos from my phone when I change sync computers.  Can anyone assist with a step by step guide as to how to achieve this oucome?  Thanks in advance.

    Have you read this?
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    The Apple web site has lots of other guidance, for example if you are migrating from Windows to Mac, read this.
    Switch 101: Migrate your Windows files or system to your Mac
    http://support.apple.com/kb/HT2518

  • How to update Activity of Customer/Contact

    Hi All..
    I am Abap Consultant and i need develop a report to Update Activity for customer/contact using bapi FM.
    can you please tell me what is Activity of customer ? is it similar like Partner Functions?? where we menstioned this PF for a perticular Customer? any t code to change this partner function for a customer? is it my changes are update the table KNVP (customer Partner function table)?....
    any bapi function module is there to change/update the activity of customer?
    thank you in advance,
    Madhu.

    bapi function module is there to change/update the activity of customer?
    Edited by: madhubabu rao on Jan 29, 2009 12:13 PM

  • Business activity  and customer contact

    I have a requirement , When we create a Business activity in CRM that should should create and maintain in ISU( R3)  as Customer contact with the same number range ..
    Like wise if I create a customer contact in ISU that should create in CRM as Business contact with same number range..
    Please suggest me what all the customizations required for this ?
    Thanks  & Regards,
    Rahul D

    Hi,
    If this is a Characterstic defined - definitely this will be getting populated from Billing document in SD Module. Secondly, there could be a derivation rule defined as per your configuration. Derivation rules can be checked in Transaction code - KEDR.
    Thanks
    Murali.

  • Customer contact and business activity

    Hi,
    I have a requirement , When we create a Business activity in CRM that should should create and maintain in ISU( R3) as Customer contact with the same number range ..
    Like wise if I create a customer contact in ISU that should create in CRM as Business contact with same number range..
    Please suggest me what all the customizations required for this ?
    Thanks & Regards,
    Rahul D

    Hi Shaughterdm,
    Welcome to Numbers discussions.
    When spreadsheets first appeared, I'm going back to the original Lotus 123, they were used by many folks and organizations as flat file databases so the short answer is yes you could do it.
    After reading your request a better answer would be to look at a relational database such as File Maker Pro and their new Beneto perhaps. Of course it depends on your needs, type of data recorded etc. Based on your reporting desires personally I'd lean towards database not a spreadsheet.
    Do evaluate your needs, what you want out of your data now and down the road. I wouldn't want to start with a spreadsheet then realize months, years later it should have been in a database—been there done that got that tee shirt and scars. I've worked with many that this happened to. UGH!
    I'm sure others will jump in here with other more helpful suggestions.
    Sincerely,
    RicD

Maybe you are looking for