Product category: Add description field to the search help

Hi experts,
My requierement is to add the material group description field 2 in search help.
Analysis: While creating the shopping cart it will ask product category . when we click on the drop down list we can find the ...type if u click on that it will move to other screen where we can search.after that it will show the product category description , category ID, Logical system.
I want to add one more field to that ( product category description 2 field.
let me know how can i proceed further on this.
Thanks,
Prashanth.

Hi Neha,
Thanks.
but i want to know which search help is using....(IN ITS )
please help me to find the exact search help.
Thanks,
Prashanth.

Similar Messages

  • Add a field in the Search Criteria in POWL for Invoice

    Hi,
    I am trying to add a field  or change Selection Parameters in Search criteria POWL for Invoice. But for SC, PO and Confirmation I can do it from DB Criteria. But for Invoice  I implemented these BADI's  and its not triggering.
    /SAPSRM/BD_POWL_CHNG_CUF_SRCH
    /SAPSRM/BD_POWL_CHNG_SELCRIT
    Any idea why its not trigeering? Am I missing anything?  I appreciate your help.
    Thanks,
    Carl
    Edited by: Shears80 on Sep 28, 2011 9:40 PM

    Hi Cral ,
    Add a field in the Search Criteria in POWL for Invoice
    append the custom attributes in this structure
    /SAPSRM/S_SEARCH_RESULT_INV
    goto tcode  sm30  /SAPSRM/V_SRC_CR enter the filed for  BO/ BUS2121(select the business object based on the requirement)
    the creation type must  be suitable  for the type
    criterion name : zzfield
    criterion name : parameter
    structure : /SAPSRM/S_SEARCH_RESULT_INV
    field name : zzfield
    this are the feeder class for invoice .
    /SAPSRM/CL_CLL_POWLT_INV_PROF
    /SAPSRM/CL_CLL_POWLT_INV
    /SAPSRM/CL_CLL_POWLT_INV_S
    based on the powl query you need to do the enhancement in the feeder class .
    Thanks & Regards
    Pradeep Kumar Dondeti

  • How to change the desription of a standard SAP field in the Search Help

    Hi All,
    In Table T023T there is a field WGBEZ60(Long text describing the material group) and the data element of the field is WGBEZ60.
    Requirement is to change the description of the field WGBEZ60.The desription of the  field is - Description 2 for the material group.
    But the user want as - Description for the material group. He dont want 2 in the description.
    we are using this field in the search help of Material group for the transaction ME21N and ME51N.
    So please tell me how can we change the description of the field in the Search help.
    Thanks.
    Regards,
    Peeyush

    As search help uses data element , it shows its keyword. So you have to do modification to that keyword.
    - Go to CMOD
    - from top menu GOTO -> Text enhancements -> Keywords -> Change -> type WGBEZ60 -> change the description -> Save and add it to transport
    - now use that data element either on the screen or search help. It will have the descripiton modified.
    Regards
    Marcin

  • Adding a new field to the search help exit

    Hi friends,
    adding a new field to the search help exit. How does it work ?
    Thanks in advace
    Ilhan

    The search help exit allows you to modify functionality of search help. If you add a new field to the
    parameter list that is not contained on the selection method you can manually populate it within the search
    help exit.
    This  would be performed within the u2018STEP DISPu2019 section. Once within this section all search help
    data has been retrieved and is stored in table RECORD_TAB (record_tab-string) as one long string value.
    Therefore you need to read table SHLP in-order to locate position of value within string.
    Example:
    To find position of personnel number (PERNR) within elemenory search
    help M_PREMN you would use the following code:
    Loop at record_tab.
         read table shlp-fielddescr into wa_shlp
                                       with key tabname   = 'M_PREMN'
                                                fieldname = 'PERNR'.
    You could then use this information in the following way, for
    example, to find a persons organisation unit:
          select  orgeh endda
            up to 1 rows
            from pa0001
            into (ld_orgeh,ld_endda)
           where pernr eq record_tab-string+wa_shlp-offset(8)
                                                      u201Cpernr length is 8
           order by endda descending.
          endselect.
          select single orgtx
            from t527x
            into ld_orgtxt
           where orgeh eq ld_orgeh and
                 sprsl eq sy-langu and
               ( endda ge sy-datum and
                 begda le sy-datum ).
    If you have added a new field to the end of the parameters list
    the next step is to populate it by adding this data to the end of
    the record_tab string:
      concatenate record_tab-string ld_orgtxt into record_tab-string.
      modify record_tab.
    endloop.

  • Add custom field in the F4 help for selecting source field in tcode FMDER

    HI,
    I an working in FUND MANAGEMENT, i want to add custom field in the F4 help for selecting source field in t-code FMDERIVE.
    How this possible.
    Regards,
    Pankaj

    OK

  • Product category: add description2 field to SC screen

    Hi,
    We are running on SRM 5.5(classic)..My query is on the SC screen....
    In the SC screen if we do drop down list for Product cateogry..we will see the Product category id and product category description...so i want to add one more description2 to that...how can i add that field to that ITS scree..
    experts..please help on this..
    Thanks

    Hi
    You to configure in SRM SPRO
    Go to--> SRM --> SRM server > technical basic settingsDefine Backend product category
    Add the items here and save
    Create SB you will get that
    Try and confirm
    G.Ganesh Kumar

  • Add description fields to the demand simulation screen on CTM

    Dear SAP Gurus,
    We have a requirement to add the description fields to the demand simulation screen inside the CTM, do you know how to do this? The description fields are not available in the standard layout, I couldn´t find  any exit or BADI to insert more fields on the screen.
    Do you have any suggestion?
    Thanks and BR
    Mauricio

    Thanks for your reply
    BADI - UKM_BP_ADD_FIELDS
    Documentation of this BADI shows as follows...
    With this BAdI, you can define additional business partner attributes that you define in a business partner master record and want to use as fields in the formula editor.
    To use the new fields, implement the BAdI: Formula Parameters and Functions (UKM_EV_FORMULA)
    Methods of this BAdI:
    FILL_FIELDS
    To provide additional fields for the formula editor
    FILL_ADD_INFOS and SAVE_ADD_INFOS
    To define additional information for the following data in table form:
    Collateral
    Negative event
    Check exceptions
    Credit insurance
    I enhanced the structure(UKM_S_BP_CUSTOMER_EXTENSION) with new custom fields from the badi UKM_BP_ADD_FIELDS but there is documentation for creating the new screen to place those new fileds i created on transaction UKM_BP.
    I have looked at BDT Business data toolset
    http://help.sap.com/saphelp_crm50/helpdata/en/2f/696d360856e808e10000009b38f839/frameset.htm
    but i didn't get any idea ...
    Can you please elaborate and let me know how to do this for my requirement?
    Thanks
    Govi

  • How to change Labels of Fields in the search help shown as F0001 F0002 etc

    Dear All,
    For one of my fields of screen I have been calling a search help configured using F4IF_INT_TABLE_VALUE_REQUEST.
    In this function I am returning the field in dynfields. Let me know please how to change the Labels of Field Names being shown in the search help as F0001, F0002 etc....
    Regards,
    Alok.

    Hi Alok,
    You can change the Field Label by going to the Data Element and changing the Field Label .
    Hope this helps
    Regards
    Sunil

  • Records not displayed in the WGBEZ field in H_T023_MEPO search help.

    Hello Friends,
    I have created the search help exit , in that based on the LREF3 , we have to fetch the materail groups.
    1.I have written the code in the exit , in the search help exit tables parameter record_tab , the data is coming correctly
    but when we run  search help, the description field is not getting displayed.
    I have shift 2-3 places left side as well but the description is not displayed correctly.
    So how can we get the description field filled.
    2. We want that the LREF3 field should come in the selection screen of the dialog box, so that user can enter the values in it.(dialog with value restriction) so i have added LREF3 field in the search help parameters but i want that
    this field should not be displayed in the results of search help . Only materail group and its description gets displayed.
    So can we achieve the same.
    Thanks to provide answers for my above two questions.

    Hi
    Please go through the related pointers ->
    The OSS note 672960 has already indicated you need to use BADI to address it.
    For Search criteria
    You can also use user-defined fields as search criteria. To do this, you have to set fields XINPUT and XDISPLAY to 'X' in table ET_FIELDS for the fields you want to use in BADI BBP_CUF_BADI_2 in method MODIFY_SCREEN. The fields defined this way are displayed if you choose the 'Extended search' link.
    Re: Custom field in Create Bid Invitation..
    Re: Search Help for Purchasing Group..
    Re: urgent help request - How to add custom fields to  header BID.
    Re: New Screen with table control information in Process Bid Invitation
    Do let me know.
    Regards
    - Atul

  • How to add one column in existing search help.

    Hi Folks,
    My quesion is
    How to add one column in existing search help and also Now search help on that field is not an explicit search help. It should be implement using check table.
    Shivam

    Hi,
    If you want to add a field in Elementary search help, get the search help name for the and go to change mode and add the field in it.
    If you want to add a field in collective search help, go to included search helps tab and a new search help name and add the fields to it.
    I think this should help you to certain extent.
    Regards,
    Kranthi
    Edited by: Kranthi on Jan 14, 2010 11:15 AM

  • Modify another field value in search help exit.

    While creating the Sales Order, the user does an f4 on ship to party to determine the sold to party ( search help exit ), now I have the values of both the Ship to customer and Sold to customer in the search help exit, but I can update only the ship to field of the sales order, do you know how I can modify the sold to value on the screen.
    I tried setting up the parameter id 'VAG' in the search help exit with the determined value, but this value is not getting copied in the Sold to party field once the search help is executed.
    The other option which is left is export to memory and import to memory in another user exit of VA01. Is there any other alternative? Also which program do I need to do the import of memory so that sold to party is displayed on the initial before saving the document ?
    Ajay

    Hi,
    Yes..Try calling from the search help exit..
    You have to pass the program name and screen number..
    In the internal table parameter DYNPFIELDS..
    Pass the fieldname and fieldvalue...
    Thanks,
    Naren

  • CRM  IC Winclient - How to add new fields in the BP Search of TRX CIC0

    Hello Experts,
    I want to know how to add new fields in the BP Search of TRX CIC0. In the HTML that we're using here I need to add the URL of the BP.
    Can you help me?
    Thanks in advance.
    Caíque Escaler

    Hi
    make append to tables in se11 - CCMBP1FIELDS, CCMBP2FIELDS
    in spro in Define customer-specific search control -> mark fields with X.
    and enhance html template CRM_CIC_SEARCH_DISPLAY. -> tcode smw0, look for package CRM_CIC_COMPONENTS for html CRM_CIC_SEARCH_DISPLAY. export it from SAP, edit, and import.
    you will need to enhance function module used for searching - you will find him in spro in Search Strategies.
    Regards
    Radek

  • How can we add additional fields to the BP Search RESULT screen?

    Dear Experts,
    How can we add additional fields to the BP Search RESULT screen so that the BP's being displayed in a search result show maintained values for the particular column/field?
    Thanks!!!

    Hi Laxman,
                           I got same requirement for ibase hierarchy.I want to add new fields in Ibase hierarchy AB.Do you have any idea regarding this.My requirement is that ,i want to dispaly a fields as a check box which display that this component is in under warranty or not by checking the box.Plz tell ,how can i add a new field in tree type context node.I add a new fields using AET ,but that is not available in that AB.
    Thanks
    Vishwas Sahu
    Edited by: vishwas sahu on Nov 17, 2009 1:51 PM
    Edited by: vishwas sahu on Nov 18, 2009 5:22 AM

  • Add new Search Field in the Search Page

    Hi all,
    I needed to add a new search field in the search page, for the same i appended the search structure and added the required field.
    Then in Config i made it available. The field type is input field of type BU_PARTNER.
    The issue is when i make the same field display in UI it apears as Blank Drop down, it should come as input field.
    I tried to make it input via get-p as well but still it is DDLB.
    I also tried via Design layer, but it has not changed to Input.
    Please suggest how to proceed further.
    Regards,
    Vandy

    Hi,
    Just a thought, Did you remove the field and reassign it to the configuration view after you made the changes???
    Regards
    Rekha Dadwal

  • Custom field in the search criteria of contract management in SRM - POWL

    Hi,
    I have to add a custom field in the search criteria of the POWL query for Contract Management. I have done adjusting of the POWL by adding the custom field in the /SAPSRM/S_POWL_RESULT_CTR and /SAPSRM/S_SEARCH_RESULT_CTR. I have created entries in TREX and Field cat but still the field is not visible in the query.
    Please let me know how can i get the visibility of custom field on the POWL query for contract.
    Regards,
    Geeta

    Hi,
    Try to delete powl query cache using report POWL_D01.
    Regards,
    Marcin

Maybe you are looking for

  • Removing Display resolution

    I have an odd acer monitor that gets detected as a TV. Makes sense since it connects via hdmi In the display settings, 1080i(PAL television) 1080i(television) and 1080p(television) are available options. I have no issue with running my monitor in 108

  • Grouping of type Date

    hi i am stuck on a problem. i have an ArrayList collection of messages which returns 4 fields i.e. 1. a date of when the msg was sent (YYYY-MM-DD) 2. int index of a (0-100) 3. int index of b (0-100) 4. int index of c (0-100) this collection returns s

  • REBATE  SETTLEMENT ERROR.

    Hi all, well have created material rebate in vbo1 & the rebate is for 50 .In vf02 in accounting doc  the amounts are displayed  as :    ERU   rebate accurals : 50, & reverse for other  :50 . can u pl let me know wts  the amount 50 ,which says reverse

  • How to Add Input Field in IC Webclient

    Dear Experts,        I want to add one Input field in Interaction Center Webclient(IC Webclient).Is it Possible?If Possible Kindly Send me the Step by step Procedure. It is Urgent Requirement.Please Help me. Helpful Answers Will be rewarded. Regards,

  • Can't target main stage from dynamically loaded swf...

    A part of the Flash app. I'm working on right now does the following - Main stage loads an external swf using the following function: function loadAsset(evt:String):void{ var assetName:String = evt; if (assetName != null){   var assetLdr:Loader = new