Table to find Search term 2 of customer master ?

Hi,
In which table do i find serach term2 of customer master?
Rgds
Praveen

ravi,
I want to extract ADDR1_DATA-SORT2 whic is search 2 from my customer master.
I searched KNA1 for all the mentioned fields NAME1,NAME2,MCOD1,MCOD2.
unfortunately I did not see my record.
Any ideas?
rgds
Praveen

Similar Messages

  • Table Name for Search term

    Hello,
    Need to know table name for search term 2 in vendor master data ( general data)
    Field name is SORT2. need to know when i enter some term let say test in search term 2 of vendor master data, where its going to hit in table.
    Thanks
    Himanshu

    Hello,
    My main issue is i need to use search term 2 for some transactions.
    lets say for one customize transaction z123 i am using search term 1(vendor master) already and now i want to use search term 2 also.
    This z123 is let say vendor report transcation, so when i get venor details now there must be search term 2 column also in report.
    Now i need to find out link between vendor number and table adrc so that i can tell abap person to do developement.
    Thanks
    Himanshu

  • Activate Search Term/2 in Vendor master - ADDR1_DATA-SORT2

    Hi,
    I would like to know the steps to activate the Search Term - 2 in Vendor Master XK01.
    Thanks,
    Joel Cutinho

    Hi,
    I have discovered the procedure to add the Search Term 2 in Search Help of XK03 Transaction.
    1. Goto Se11 -> Search Help, Enter KRED
    2. The KRED is Collective Search Help associated with Vendor Maintainence.
    3. In the 'Included Search Help' tab, you will find all the 'Search helps'. These will appear when you press F4 in the Vendor Maintainence Transaction.
    4. Select any one search help where you would like to insert the Search Term 2 or any associated field you want to include in the search term.
    5. Double click and open the search help and you will find 'Selection Method'. 
    6.Go to SE11 (View) Copy the selection method name and make a Z (copy) of the selection method. In the Z selection method. Go to 'Table/ Join' Tab and insert the table if you want to join any tbale other than LFA1 and then in Join Conditions Match the Key FIelds of both the tables, (Here i have used ADRC as the join with LFA1). Then in 'View fields' add the field (Ex: SORT2)you want to display in the search help. Save and activate.
    Note: You can also give selection conditons.
    7.  Come back to step 5 where you had selected the Selection method, Replace the selection method to Z, which you have created just now. Then in the Search Help parameter add the field that you recently added in the Z.
    Note: Use the order of the appearance of the field using (LPOS, SPOS) in the search help parameter. Save and activate.

  • Automatic Payment terms without referrring Customer Master nor manual entry

    Hi,
    I have a credit memo with reference to one billing document. It is automatically coming with payment terms which is not maintained in customer master nor manual entry in the document. I had checked all the configuration related settings for the document and payment terms assignment. I had debugged and checked for any user exit or function module.
    I have no clue in this regard and can anybody throw some light regarding to fix the problem.
    Regards
    Sashikanth

    Hi,
    Check if the billing document has payment terms. If yes, even if customer master doesnt contain payment terms the payment terms will be copied to the credit memo through standard copying control maintained in IMG, when you create a document with reference to some document this copying control gets activated.
    Also check user exit RV60AFZZ if there's any code written in it to default payment terms by billing doc type.
    Regards,
    Amit

  • Search for BAdi for Customer Master Data (XD01)

    Hi experts,
    i am looking for a BAdi for Customer Master data (XD01). Can anyone suggest me which one can i use?
    thanks in advance.
    Regards,
    aksh

    hi
    execute this report
    *& Report  ZNAGBADI
    REPORT  ZNAGBADI.
    *report zbadi_find .
    tables : tstc,
    tadir,
    modsapt,
    modact,
    trdir,
    tfdir,
    enlfdir,
    sxs_attrt ,
    tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode,
    p_pgmna like tstc-pgmna .
    data wa_tadir type tadir.
    start-of-selection.
    if not p_tcode is initial.
    select single * from tstc where tcode eq p_tcode.
    elseif not p_pgmna is initial.
    tstc-pgmna = p_pgmna.
    endif.
    if sy-subrc eq 0.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'PROG'
    and obj_name = tstc-pgmna.
    move : tadir-devclass to v_devclass.
    if sy-subrc ne 0.
    select single * from trdir
    where name = tstc-pgmna.
    if trdir-subc eq 'F'.
    select single * from tfdir
    where pname = tstc-pgmna.
    select single * from enlfdir
    where funcname = tfdir-funcname.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'FUGR'
    and obj_name eq enlfdir-area.
    move : tadir-devclass to v_devclass.
    endif.
    endif.
    select * from tadir into table jtab
    where pgmid = 'R3TR'
    and object in ('SMOD', 'SXSD')
    and devclass = v_devclass.
    select single * from tstct
    where sprsl eq sy-langu
    and tcode eq p_tcode.
    format color col_positive intensified off.
    write:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    skip.
    if not jtab[] is initial.
    write:/(105) sy-uline.
    format color col_heading intensified on.
    Sorting the internal Table
    sort jtab by object.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type c.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    loop at jtab into wa_tadir.
    at first.
    format color col_heading intensified on.
    write:/1 sy-vline,
    2 'Enhancement/ Business Add-in',
    41 sy-vline ,
    42 'Description',
    105 sy-vline.
    write:/(105) sy-uline.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    format color col_group intensified on.
    write:/1 sy-vline,
    2 wf_object2,
    105 sy-vline.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    select single modtext into wf_txt
    from modsapt
    where sprsl = sy-langu
    and name = wa_tadir-obj_name.
    format color col_normal intensified off.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single text into wf_txt
    from sxs_attrt
    where sprsl = sy-langu
    and exit_name = wa_tadir-obj_name.
    format color col_normal intensified on.
    endcase.
    write:/1 sy-vline,
    2 wa_tadir-obj_name hotspot on,
    41 sy-vline ,
    42 wf_txt,
    105 sy-vline.
    at end of object.
    write : /(105) sy-uline.
    endat.
    endloop.
    write:/(105) sy-uline.
    skip.
    format color col_total intensified on.
    write:/ 'No.of Exits:' , wf_smod.
    write:/ 'No.of BADis:' , wf_badi.
    else.
    format color col_negative intensified on.
    write:/(105) 'No userexits or BADis exist'.
    endif.
    else.
    format color col_negative intensified on.
    write:/(105) 'Transaction does not exist'.
    endif.
    at line-selection.
    data : wf_object type tadir-object.
    clear wf_object.
    get cursor field field1.
    check field1(8) eq 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    set parameter id 'MON' field sy-lisel+1(10).
    call transaction 'SMOD' and skip first screen.
    when 'SXSD'.
    set parameter id 'EXN' field sy-lisel+1(20).
    call transaction 'SE18' and skip first screen.
    endcase.
    reward for useful answers
    regards
    Nagesh.Paruchuri

  • Transaction xk03 - Search term

    hello, in the transaction xk03:
    Step 01:You check the adress checkbox and validate.
    1)On the display vendor:address screen, there is a field named search term 1/2,
    2)When i press F1 on the field, technical options , i get the structure ADDR1_DATA-SORT1.
    I would like to know the name of the table where the search term values are stored(SORT1).thx

    Sooness,
    Start transaction SE11 and display table ADRC.
    Click the Indexes button.
    You may find the SAP defined index I13 for the SORT1 field.
    So, all address data is in table ADRC. And an extra database index exists for the sortfield. As far as I know you cannot access / read this database index using normal abap.
    Ger

  • Search term

    Hi ,
    We have search term 1 as a required entry for customer master data.
    We have maintain the search term 1 for customer and it shows in change log also ,but somehow next day the search term gets disappear from that customer.This is not appear in change log.
    Please advice.
    Thanks & Regards
    Bhushan

    Had you checked in TCode  AUT10 ??
    thanks
    G. Lakshmipathi

  • How to pull payment terms attached to customer, Invoice, Agreement

    Hi All,
    Could you please help me how to pull the payment terms attached to a particular Invoice, customer and agreement.
    Thanks for your help,
    Prathima

    How do make the sales order pull from the Sold-Tos record instead of the Payer's record.
    As you already indicated system copy the payment terms from the customer master payer, next priority is SP.
    in the sales order manually you can change it to SP payment term.
    or one more thing you may consider that if you want all the time determine the payment term from the SP then don't maintain the payment term in Payer customer.
    We have 2 Sold-Tos with the same Payer.  The Payer gets a discount with will apply to both Sold-tos since the payment terms are getting pulled from the Payer.  When sales order is created, payment terms get pulled from Payer and both Sold-Tos gets a discount.   But we only want to offer discount to only one of the Sold-Tos but the other sold to doesn't get a discount.
    Are you really sure about the above statement? i have never seen in one sales order two Sold to party's, confirm your statement once again.

  • Vendor Search Term 2

    Dear  Friends,
    I want to make mandatory field of search term 2 in vendoe master creation for some paricular vendor type.I have checked in vendor configuration by T Code OMSG, but there is no option for search term 2.please help me...
    Regards,
    Dishant

    hi,
    try in   OMSG   in the search term b make it as req.entery then and save
    and check it once search term 2 is allways as mandatory  field in  at the time of vendor creation in standerd.
    thanking you

  • Vendor in Customer Master Record

    Hi,
    Need to make the tie between vendor and customer. I could not find any fields in the customer master record (XD01 / XD02 / XD03) for this purpose. Any suggestions?
    Thanks,
    Douglas

    The vendor link is located on the customer master in General Data --> Control Tab.  It is at the top under account control.  As the previous poster mentioned, if you are not seeing it is because it is supressed and you need to open it up through config.
    The config is located in the following area:  Financiall Accounting >Accounts Recivable / AP> Customer Accounts --> Master Data --> Prep for creating customer master data --> define account groups with screen layout
    Kind Regards,
    Jason

  • Clarification about plant and terms of payment In Master Data:

    Hello Gurus,
    I have a doubt as follows:
    1) In Material master (MM01) we are maintaining Plant as two types.
         a) Plant at organisation leve pop up at the begining
         b) Delivering plant at Sales organisation 1.
    So, is there any difference between plant and delivering plant or are they different objects ?
    2) Terms of payment in Customer master (XD01)
         a) we maintain Terms of payment customer master at company code level in "Payment transaction"
         b) we also maintain Terms of payment in customer master at sales area data in "Billing Documents" tab
    Now Why do we need to maintain at these to levels.
    FYI: I have also tried to maintain two different Terms of payment and without any hesitation the system accepts, why ?
    What is the significance of it.
    Please clarify the above.
    Thanks,
    Venky.

    Hello Venky,
    1. Material / Plant
    A Material is always stored in a Plant & there would be various parameters to be entered for that particular Plant. E.g. Storage Bin, Picking Area, Negative Stocks allowed in Pant, GR Processing time, etc..
    Now the same Material may or may not be sold from the same plant, or even if it is sold from the same plant, there would be different Sales parameters for each combination Sales Organisation & Plant. There Sales Organisation specific parameters are entered in Sales Organisation/PLant view. Tax classification Data, Cash Discount indicator, Sales Unit, Delivering Plant, Division, Minimum Order & Minimum Delivery quantity.
    2. Payment Terms
    The Payment Terms entered in Billing tab in Sales Area data is copied into Sales order & Invoice.
    The Payment Terms in Company Code data are used by FI department when posting direct payment (without reference to Sales Document). e.g. to Offer Cash Discount for paying in advance.
    Hope this clarifies,
    Thanks,
    Jignesh Mehta

  • Personnel number in sales customer master records

    Hi
    my users want to add an ID number in  the customer master data, currently they are using one of the name line to enter ID number.
    It is possible to add a personnel number for a customer? because i heard someone say you can link a personnel number to a customer.
    can someone please tell me how that can be done, step by step

    Dear Admire,
    Try this with the help of ABAPer
    In the IMG you can find some BADI's for customer master data through this Path,
    IMG>Financial accounting>Account Receivables and payable->Customer accounts>Master data>Preparations for Creating Customer Master Data>Adoption of Customer's Own Master Data Fields
    -->Prepare Modification-Free Enhancement in Customer Master Record
    -->Business Add-In: Processing of Master Data Enhancements
    -->Business Add-In: Customer Subscreens
    -->Business Add-In: Processing of Master Data Enhancements with Batch Input
    I hope this will help you,
    Regards,
    Murali.

  • SIS update flag in Customer master

    Hi,
    Where can i find SIS update flag in Customer master level.
    Regards
    JACK

    Hi,
    Assign values in customer statistics group field in the sales area data -> Sales tab.
    Regards
    Edited by: Shiva Ram on Jan 16, 2008 1:34 PM

  • Search Term 2 missing in BDC for customer Master

    Hi,
    Iam creating a BDC program for Uploading Customer Master Data.
    While Recording, i found that Search Term 2 (Search Term B) is missing.
      I am trying to record using tcode FD01.
    Thanks
    Kuna

    Hi Kuna,
        you must missed search term 2 mapping with screen field. either wrong mapping. Check your program and screen field,  screen val also your internal table. If u have problem then paste ur program.
    Regds,
    Rakesh

  • Find and item Search not working inside custom list in sharepoint 2013

    HI,
    In Sharepoint 2013 , i configured the Search. it is working in home page search Box and Find item search box  inside custom list as well But one particualr custom list  Find an item is not working. Any clue ?Thanks in Advance
    Thanks
    sanjay pradhan  

    Hi,
    According to your description, my understanding is “find an item” search box in a custom list not work in your environment.
    As search box and “find an item” search box in your home page are working, so the search service application is working.
    Do you have any customzation to the particular custom list ?
    If No, I suggest you can full crawl the data in Central Administration ->Manage Service Application->” Search Service Application”-> Manage Content Sources” to test if it works. 
    Also, please check if you have set "Allow items from this list to appear in search results" in list settings->Advanced Setting to true
    Best Regards
    Jerry Guo
    TechNet Community Support

Maybe you are looking for