Please tell me the table where customer contact persons mail id is stored

Hi,
Can any body please tell me where the Please tell me the table where customer contact persons mail id is stored .
That we are maintaing in the XD02 transaction in the E-Mail option for the customer.
Please tell me as it is very urgent.
Thanks

Hi
pls check ADR6 <b>SMTP </b>
Customer Master Data Tables
KNA1 - Customer Master
KNB1 - Customer / Company Master
KNVV - Customer Sales Data
KNBK - Bank Details Master
KNVH - Customer hierarchy Master
KNVP - Customer partners Master table
KNVS - Shipment data for customer table
KNVK - Contact persons Master table
KNVI - Customer master tax indicator table
Message was edited by:
        SHESAGIRI.G

Similar Messages

  • Sum1 Please tell me the Table to extract Cost element category (SAP ). Cost

    Sum1 Please tell me the Table to extract Cost element category (SAP ). Cost element category should be unique key?

    Hi,
    I don't see the cost element categ in CSKA (chart of account based).
    Better try CSKB (controlling area based.
    The Domain is KATYP and you can find cost element categ description in its value range
    [genereic extraction possible for these texts...]
    hope that helps...
    Olivier.
    Message was edited by:
            Olivier Cora

  • Need the TABLE where SALES TEXT of a material is stored

    I need the table where the sales text of a material is stored. This can be onbtained from MM03 --> SALES TEXT. Here we can pick it up from the language.I need the table where it is stored.

    Hi Gurpreet
    Please follow the below steps:
    1. Go to MM02.
    2. Select View: <b>Sales Text</b>
    3. When you are in the editor, use menupath: Goto->Header
    Here we can get the details of Text-ID, Text Name, Language, Text Object.
    Use these details for FM: READ_TEXT.
    We can retreive all text in the output of the FM.
    Hope this helps you.
    Kind Regards
    Eswar

  • Table that stores the customer contact person email id

    hI ALL,
    Can any body please tell me the table name where <b>customer conatct person mail id is stored.</b>
    Please revert for any clarification on this.
    its urgent .
    good points will be given on the orrct solution.
    thanks
    Message was edited by:
            Prabhudutta ......

    Hi Prabhu
    for Contact person -
    KNVK
    For email id -
    SZA1_D0100
    For customer --- RF02D
    Reward if useful to u

  • We are apply to join MFI program .Could you please tell me the contact means of dedicated person at Apple Beijing Office ?, We are apply to join MFI program .Could you please tell me the contact means of dedicated person at Apple Beijing Office ?

    Dear Whom it may concern ,
    I am Coco Lao , I come from Dong Guan Data Target Electronic Limited.
    We are applying to join MFI program . September 26,2013, you ask us to join the facing to facing meeting at Apple Beijing Office . You just give us the address . Could you please tell us the date of meeting ?Could you please tell me the contact means of dedicated person at Apple Beijing Office ?
    I  am looking forward to your early reply .
    Best Regards,
    Coco Lao
    <E-mail Edited by Host>

    You are not talking to Apple here only other users like yourself. No one here will be able to help ypu with this.
    You will need to contact the person who sent you this information.

  • Please tell me the functionality of this piece of code

    vl_faedn = sy-datum - 15.
    All amount fields are 0.00 initially.
    Please tell me the functionality of this code.What is the purpose of each query?
    YD = Commission Advance
    AB = Automatic Clearing Doc
    Y4 = Commission Invoice
    X4 = Commission Credit Memo
    K1 = Commission Adj. Invoice
    K2 = Commission Adj.Credit Memo
      Retrieve the YD document type total for a Customer
              SELECT WRBTR SHKZG
                 INTO (VL_WRBTR, VL_SHKZG)
                 FROM BSID
                 WHERE BUKRS = VL_BUKRS AND
                       KUNNR = VL_KUNNR AND
                       UMSKS = 'C' AND
                       UMSKZ = 'C' AND
                       BLART = 'YD' AND
                       ZFBDT <= VL_FAEDN.
                IF VL_SHKZG = 'H'.
                  VL_WRBTR = VL_WRBTR * -1.
                ENDIF.
                VL_YD_AMNT = VL_YD_AMNT + VL_WRBTR.
              ENDSELECT.
      Retrieve the AB document type total for a Customer
              SELECT WRBTR SHKZG
                 INTO (VL_WRBTR, VL_SHKZG)
                 FROM BSID
                 WHERE BUKRS = VL_BUKRS AND
                       KUNNR = VL_KUNNR AND
                       UMSKS = 'G' AND
                       UMSKZ = 'G' AND
                       BLART = 'AB' AND
                       ZFBDT <= VL_FAEDN.
                IF VL_SHKZG = 'H'.
                  VL_WRBTR = VL_WRBTR * -1.
                ENDIF.
                VL_AB_AMNT = VL_AB_AMNT + VL_WRBTR.
              ENDSELECT.
      Retrieve the Y4 document type total for a Vendor
              SELECT WRBTR SHKZG
                INTO (VL_WRBTR, VL_SHKZG)
                FROM BSIK
                WHERE BUKRS = VL_BUKRS AND
                      LIFNR = VL_LIFNR AND
                    ( blart = 'Y4' OR blart = 'X4' OR blart = 'K1'                OR                 blart = 'K2' ). 
                IF VL_SHKZG = 'H'.
                  VL_WRBTR = VL_WRBTR * -1.
                ENDIF.
                VL_Y4_AMNT = VL_Y4_AMNT + VL_WRBTR .
              ENDSELECT.
              VL_Y4_AMNT = -1 * VL_Y4_AMNT.
      Retrieve the YD document type total for a Vendor
              SELECT WRBTR SHKZG
                INTO (VL_WRBTR, VL_SHKZG)
                FROM BSIK
                WHERE BUKRS = VL_BUKRS AND
                      LIFNR = VL_LIFNR AND
                     blart = 'YD'.
                ( BLART = 'YD' OR  BLART = 'K1' OR
                        BLART = 'K2' ).  " Insert
                IF VL_SHKZG = 'H'.
                  VL_WRBTR = VL_WRBTR * -1.
                ENDIF.
                VL_YD_AMNT1 = VL_YD_AMNT1 + VL_WRBTR.
              ENDSELECT.
              VL_YD_AMNT1 = -1 * VL_YD_AMNT1 .
              IF VL_Y4_AMNT = 0.
                VL_TOT_AMOUNT = VL_YD_AMNT1 - VL_AB_AMNT.
              ELSE.
                VL_TOT_AMOUNT = VL_Y4_AMNT - ( VL_YD_AMNT + VL_AB_AMNT ).
              ENDIF.

    Hi
    I dont know what functionality you are asking, Still I try to answer some things, If it's not forgive
    vl_faedn = sy-datum - 15.
    All amount fields are 0.00 initially.
    Please tell me the functionality of this code.What is the purpose of each query?
    YD = Commission Advance
    AB = Automatic Clearing Doc
    Y4 = Commission Invoice
    X4 = Commission Credit Memo
    K1 = Commission Adj. Invoice
    K2 = Commission Adj.Credit Memo
    Retrieve the YD document type total for a Customer
    SELECT WRBTR SHKZG
    INTO (VL_WRBTR, VL_SHKZG)
    FROM BSID
    WHERE BUKRS = VL_BUKRS AND
    KUNNR = VL_KUNNR AND
    UMSKS = 'C' AND
    UMSKZ = 'C' AND
    BLART = 'YD' AND
    ZFBDT <= VL_FAEDN.
    The Above query retrieves field values WRBTR SHKZG from BSID table to the Local Variable VL_WRBTR & VL_SHKZG , if it satisfies the WHERE condition mentioned for the YD docu type for the Customer
    What I suggests , the IF operation should be outside the SELECT-ENDSELECT. May be you have a requirement, I dont know
    Atleast You have to perform SUBRC check.. Before the IF operation. for the VL_SHKZG = 'H'.
    IF VL_SHKZG = 'H'.
    VL_WRBTR = VL_WRBTR * -1.
    ENDIF.
    VL_YD_AMNT = VL_YD_AMNT + VL_WRBTR.
    ENDSELECT.
    i.e., What , Here every SELECT query is performing for some document type for customer and vendor with some variable arithmetic operations .
    Retrieve the AB document type total for a Customer
    SELECT WRBTR SHKZG
    INTO (VL_WRBTR, VL_SHKZG)
    FROM BSID
    WHERE BUKRS = VL_BUKRS AND
    KUNNR = VL_KUNNR AND
    UMSKS = 'G' AND
    UMSKZ = 'G' AND
    BLART = 'AB' AND
    ZFBDT <= VL_FAEDN.
    IF VL_SHKZG = 'H'.
    VL_WRBTR = VL_WRBTR * -1.
    ENDIF.
    VL_AB_AMNT = VL_AB_AMNT + VL_WRBTR.
    ENDSELECT.
    Retrieve the Y4 document type total for a Vendor
    SELECT WRBTR SHKZG
    INTO (VL_WRBTR, VL_SHKZG)
    FROM BSIK
    WHERE BUKRS = VL_BUKRS AND
    LIFNR = VL_LIFNR AND
    ( blart = 'Y4' OR blart = 'X4' OR blart = 'K1' OR blart = 'K2' ).
    IF VL_SHKZG = 'H'.
    VL_WRBTR = VL_WRBTR * -1.
    ENDIF.
    VL_Y4_AMNT = VL_Y4_AMNT + VL_WRBTR .
    ENDSELECT.
    VL_Y4_AMNT = -1 * VL_Y4_AMNT.
    Retrieve the YD document type total for a Vendor
    SELECT WRBTR SHKZG
    INTO (VL_WRBTR, VL_SHKZG)
    FROM BSIK
    WHERE BUKRS = VL_BUKRS AND
    LIFNR = VL_LIFNR AND
    blart = 'YD'.
    ( BLART = 'YD' OR BLART = 'K1' OR
    BLART = 'K2' ). " Insert
    IF VL_SHKZG = 'H'.
    VL_WRBTR = VL_WRBTR * -1.
    ENDIF.
    VL_YD_AMNT1 = VL_YD_AMNT1 + VL_WRBTR.
    ENDSELECT.
    VL_YD_AMNT1 = -1 * VL_YD_AMNT1 .
    IF VL_Y4_AMNT = 0.
    VL_TOT_AMOUNT = VL_YD_AMNT1 - VL_AB_AMNT.
    ELSE.
    VL_TOT_AMOUNT = VL_Y4_AMNT - ( VL_YD_AMNT + VL_AB_AMNT ).
    ENDIF.
    Reward points  if useful
    Edited by: GP on May 10, 2008 9:02 PM

  • Please tell me the T.codes

    Hi
    please tell me the t.codes for the following.
    1)Creditors payable Reports
    2)Creditors Ageing Reports
    3)Debtors Ageing Reports
    4)TDS register
    5)Vat Register
    i will give full points

    Hi,
    FBL1    Display Vendor Line Items
    FBL1N   Vendor Line Items
    FBL2    Change Vendor Line Items
    FBL2N   Vendor Line Items
    FBL3    Display G/L Account Line Items
    FBL3N   G/L Account Line Items
    FBL4    Change G/L Account Line Items
    FBL4N   G/L Account Line Items
    FBL5    Display Customer Line Items
    FBL5N   Customer Line Items
    FBL6    Change Customer Line Items
    FBL6N   Customer Line Items
    Customer Aging Report - s_alr_87012178
    Vendor Aging Report : s_alr_87012084
    VAT details can be viewed from Table LFAS.
    Hope this will help.
    Regards,
    Naveen.

  • Please tell me the use of ranges , when it should be used

    please tell me the use of ranges , when it should be used.

    Anytime you have to equate to multiple values in your programs.  Say for example, you need to get data for two company codes from a table.
    data: it001 type table of t001.
    ranges: r_bukrs for t001-bukrs.
    r_bukrs-sign = 'I'.
    r_bukrs-option = 'EQ'.
    r_bukrs-low = '0010'.
    append r_bukrs.
    r_bukrs-sign = 'I'.
    r_bukrs-option = 'EQ'.
    r_bukrs-low = '0020'.
    append r_bukrs.
    select * into table it001 from t001 where bukrs in r_bukrs.
    Regards,
    Rich Heilman

  • Can someone please tell me the cause of the msg-The song could not be used because the original file could not be found- and how I might correct that problem?

    Can anyone please tell me the cause of the msg-The song"    " could no be used
    because the original file could not be found-and how I might correct that problem?  Lou

    I stupidly tried to copy my music files to an external drive so I could transfer them to my new iMac (old Macbook Pro is being retired). I now know I should've tried home sharing or something to transfer the music.
    Anyway, the situation I am in is that I have not managed to transfer anything and I now cannot access the music on my old Macbook Pro either! I have the message "the song 'xyz' could not be used because the original file could not be found. Would you like to locate it?". I understand that this is because iTunes cannot locate the files. When I try to locate the files I find nothing.
    I have tried searching my whole Macbook Pro for mp3 files and m4a files and Spotlight cant find any! The tracks are all still listed in iTunes. I also searched the external hard drive. I definitely haven't deleted anything. So where could they have gone and is there anything else I can do to search for them? I have a feeling I am just not searching for them in the right way because I have not deleted anything.
    Old computer is Macbook Pro OS X 10.6.8 with iTunes 10.4.1
    New computer is iMac OS X 10.7.2 with iTunes 10.5
    All I want to do is to set everything back to how it was so I can try the transfer a better way.
    Please help. Thanks, Dashford.

  • Please tell me the way to find the person who has booked the conferenceroom

    HI All,
    When i am trying to book a conference room. it was showing the status a s busy in zimbra.But i am not able to find the person who has booked the room ?? how do i know the person who has booked teh conference room??if i can know that person i can negiotate with him abt the room.
    please tell me the way to find the person who has booked teh conference room ?????
    Thanks in advance
    Venugopal

    Hi Venugopal,
    If you add approvers using beekeeper for that resource AND that you use Outlook, you can see who is 'in charge' of that resource, ie the person that will hand over the keys to that room when you need them. That person is the only one who may be able to tell you who has booked the resource, you can then go and 'negociate' ;o)
    In Zimbra (1.5.1.5) you can't see the contacts..
    hth
    David

  • Please tell me the driver program of  the sapscript J_1i_are1 ?

    Please tell me the driver program of  j_1i_are1 and which table is populating before printing ?
    I have to add chapter id for the particular material is it feasible ?
    Please help .

    Hi Aanchal,
    TADIR Entries
    Object Description  TADIR Entry 
    Program ID         Object Type         Object Name        Program ID        Object Type          Object Name 
            LIMU             REPS               J_1IPRNTARE                 R3TR                  PROG          J_1IPRNTARE 
    Therefore the program name is J_1IPRNTARE
    Regards,
    Md Ziauddin

  • Please  tell me the difference between CREATE OBJECT & CREATE DATA ,statements in CRMTECHNICAL

    Please  tell me the difference between CREATE OBJECT & CREATE DATA ,statements in CRMTECHNICAL

    found it on my own . the best way to do this is use the RetriveLimitedHierTreeCommand  with a search on the taxonomy table.

  • Please tell me the query,If i want to fetch before 5 days data into sqlite database in ios ?

    Please tell me the query,If i want to fetch before 5 days data from sqlite database in ios ?

    kumar190 wrote:
    Please Can you send me the link of Sq-lite(Making own Schema). Which will be help full for me...
    Here is the general concept for a database schema: http://en.wikipedia.org/wiki/Database_schema
    This is how you would create a table in SQLite: https://sqlite.org/lang_createtable.html

  • I want to upload movies in iPhone Please tell me the way

    I want to upload movies in iPhone Please tell me the way

    Upload them from where? to where?
    Form iphone to computer?  From computer to iphone?
    What movies? Movies you purchased form itunes?
    Sync them like anythong else.
    iPhone User Guide (For iOS 4.2 and 4.3 Software)

  • Could you please tell me the arithmetic of ORA_HASH? Thanks.

    Hello,
    I need to use java code to implement the function of ORA_HASH(expr, max_bucket, seed_value).
    I saw the ORA_HASH(expr, max_bucket, seed_value)'s description from http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10759/functions097.htm.
    But I still don't know the detailed arithmetic of ORA_HASH(expr, max_bucket, seed_value).
    So could you please tell me the detailed arithmetic of ORA_HASH(expr, max_bucket, seed_value)?
    Thanks.

    Not sure Oracle will actually divulge the internal workings of their functions to you.
    However, they are standard algorithms (depending on which parameter you pass to the function) i.e. it depends on whether you are doing an SHA-1 hash or a MD5 hash etc.
    Information is available on the web...
    e.g.
    http://www.secure-hash-algorithm-md5-sha-1.co.uk/
    which describes who or where the algorithms were developed and then you can look up to see if the actual specifications for them are on the web (they'll be around somewhere) e.g.
    http://en.wikipedia.org/wiki/MD5
    http://infohost.nmt.edu/~sfs/Students/HarleyKozushko/Presentations/MD5.pdf
    http://www.uow.edu.au/~jennie/CSCI971/hash1.pdf
    etc.

Maybe you are looking for

  • AddToEnvironment is not updating the InitialDirContext

    Hi all, I ran into the existing problem where creating a new initialDirContext each time a DNS type query is made causes a socket leak. Now I'm trying to work around the problem by maintaining and reusing one context. I'd like to keep the initialDirC

  • HT201365 How can i change my email address for I-cloud (on I-Pad Mini )

    Recently I have moved from virgin media to bt and i have lost access to my old NTLWORLD email account. I need to know how you change your I-Cloud email address on a IPad Mini...... Thanks

  • Application stays in process list of task manager for about 20 seconds after application is closed

    I have an application that uses Winsock for TCP/IP connections to the server. After connecting the Winsock communications and then closing the application , the application.exe stays in the process list for about 20 seconds before going away. If I st

  • Diminishing range

    We've been running a home LAN with a mix of PCs & macs, wired and wireless, for over a decade. For about the second half of that we've used Airport Extreme base stations (first one died eventually, now another), and been extremely happy. The AEBS (80

  • CJR2-The plan data transfer is locked

    Hi, I am planning costs by CJR2 on a WBS element for a certain period and version by cost element.When I execute CJR2,it allows me to enter the values against periods but when I try to save ,system gives error message-The plan data transfer is locked