Change default search help icon

Hi All,
I am on SRM 4.0. When I want to launch search help for any field from ITS server, I click on the drop down list and select the last entry. This last entry has value '...', is there any way we can change this value? User wanted text to be displayed instead of '...', appreciate any help, thanks!
Regards,
Hock Lye.

Hello
call se80.
Internet Service bbpglobal
BBPFUNCTIONS_DEF
you have to check the F4_* functions.
  <option value="`VALUE_OLD`">`#callSHelp`</option> is generating the ".." entries.

Similar Messages

  • Using search help icon for a button

    Hi Experts,
    For a Webdynpro layout I have created a button and I want to assign an icon/image similar to the search help image(two squares type).
    Is there any way to assign the webdynpro search help icon to a button?
    I was searching in ImageSource under Button property but did not find any similar image. Else Is there any option to upload and assign an image to the button?
    Thanks.

    Hi,
    Under properties of button press F4 in image source attribute, you can select standard SAP icons, if not you can upload icon to your web dynpro component and then press F4 and select Component images tab and select your icon.
    For uploading icons to web dynpro abap check this reference: [Displaying Logos in WDA|http://www.****************/Tutorials/WebDynproABAP/Logo/Page1.htm]
    Hope this helps u.,
    Thanks & Regards,
    Kiran.

  • Changing the search help  for vbap-aufnr in va01

    Hi Folks,
    Can we change the search help provided for the field Order(vbap-aufnr) in the table Control ALL ITEMS in VA01.
    1.go to va01.
    2.give the order type.
    3.press enter.
    4.it will take us to the overview screen.
    5.there we will find a table control named ALL ITEMS.
    6.in that we can find a field called ORDER(vbap-aufnr) with a Search Help provided.
    7.I want to change this search help to the search help provided for the same field  in other screen.
    (the same field is in some other screen which is having a different kind of search help,I want to provide that search help for the above said screen too)
    Let me know how to go with this in detail.
    Thanks,
    K.Kiran.

    Hi Folks,
    The same requirement I am trying to explain in a detailed manner.
    1.go to va01.
    2.give the order type.
    3.press enter.
    4.it will take us to the overview screen.
    5.there we will find a table control named ALL ITEMS.
    6.in that we can find a field called ORDER(vbap-aufnr) with a Search Help provided showing only the Orders.
    7.Now double click in the same field which is taking us to Item Data Screen.
    8.here we will  be able to see a few tab strips.
    9.click on the accounts assignment tab.
    10.we will be able to find the filed ORDER having a Search Help.
    Now I want this search help at the screen I had discussed above.At both the areas search help is provided using 'DD_SHLP_CALL_FROM_DYNP'.
    How to solve this?
    K.Kiran.

  • Is it possible to change the search help to have Scroll capability instea

    I am using ABAP Webdynpro.  is it possible to change the search help to have Scroll capability instead of Next Page/Next line/Last line.  We would rather use a search help to do this as the user wants to have their own personal value list.

    Found the answer on SDN

  • How do I change default search engine in address bar?

    I know in previous incarnations of Foxfire I could use about:config and change Keyworld.url to change my default search engine. I recently reset my Foxfire because I've been having issues with the Origin website and.. now it's defaulted back to Google. I do not want to use google. How do I change this? I do not want a search bar, I do not wanna change things in a search bar. I just want the address bar to work the way I've always had it work for me before. Can ANYBODY help me?

    That does not help me at all. I do not want the Search Bar. I don't wanna change the default on the search bar. Why would ANYONE want a search bar when the address bar does the searching for you?
    I want to change the default on the ADDRESS bar. The main bar and only bar I have. The one that if you type in anything, it automatically searches Google and there seems to be no way to change it. You could change it before by going to about:config and changing Keyword.url, but Foxfire removed that. Now.. I want to take the Address bar off it's default of Google and switch it to something else.
    Once again, I want NOTHING to do with the Search Bar. I don't want it, don't want to change what it searches, nothing. I never use it and never have. I want to change the ADDRESS bar's default search.

  • Search help icon for select option

    hello all...
    can some one let me know , how to attach F4 help icon to select option..??
    in select option im referrin to a data element, this data element has a domain which has value range.
    if i press F4 on the select option, im gettin the values in the search help but the icon is not appearing..
    any suggestions...
    regards..
    vishal

    Hi,
    Select TABLE-FIELD GOTO>Search help>For field.
    If you have Search help you can assign here or else you need to create search help through SE11.
    Or programatically you can code like below.
    See below code........
    selection-screen: begin of block B1 with frame title text-001.
    select-options: s_pernr for zfdmr_records-pernr,
    selection-screen end of block B1.
    data: begin of t_itab occurs 0,
          pernr like zfdmr_records-pernr,
          end of t_itab.
    DATA: t_return like ddshretval occurs 0 with header line.
    *at selection-screen on value-request for s_pernr-low.
    perform get_values changing s_pernr-low.
    *at selection-screen on value-request for s_pernr-high.
    perform get_values changing s_pernr-high.
    *&      Form  get_values
          text
         -->P_S_PERNR_LOW  text
    FORM get_values CHANGING    P_S_PERNR.
      refresh t_itab.
      clear t_return.
      select pernr  from zfdmr_records into table t_itab.
      delete adjacent duplicates from t_itab.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
      DDIC_STRUCTURE         = ' '
          RETFIELD               = 'PERNR'
      PVALKEY                = ' '
         DYNPPROG               = sy-cprog
         DYNPNR                 = sy-dynnr
         DYNPROFIELD            = 'ZFDMR_RECORDS-PERNR'
      STEPL                  = 0
      WINDOW_TITLE           =
      VALUE                  = ' '
         VALUE_ORG              = 'S'
         MULTIPLE_CHOICE        = ' '
         DISPLAY                = 'F'
      CALLBACK_PROGRAM       = ' '
      CALLBACK_FORM          = ' '
        TABLES
          VALUE_TAB              = t_itab
      FIELD_TAB              =
         RETURN_TAB             = t_return
      DYNPFLD_MAPPING        =
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      READ TABLE t_return INDEX 1.
      p_s_pernr = t_return-fieldval.
    ENDFORM.                    " get_values
    Thanks.
    If this helps you award points and close the thread.
    Message was edited by: Deepak333 k
    Message was edited by: Deepak333 k

  • Change default search engine (Google)

    Given Google's recent foray into the politics of Health in the US, I'd like to stop using them as my default search engine. Is there any way to change the default search engine in Safari? I know it can be done using Safari Enhancer, but that leaves "Google" as greyed text on the tool bar and I don't even want to see their name anymore.
    TIA for any help.
    MacBook 2GHz White   Mac OS X (10.4.10)  

    OS X 10.6.4 renders the question moot.

  • Change default search engine to Google uk

    Hi. Can someone please tell me how to change my default search from Google.com to google.co.uk? I've an iPhone 4s, latest software etc, location services is on, all safarI settings are correct. I live in the UK. Currently, whenever I search google, it goes to google.com and I then have to click 'more' from the menu, then click 'search tools' then select Any Country and click 'Search: the U.K.'. There has to be a way to change this but I'm struggling to find it. Your help will be much appreciated. Many thanks, Sue

    If you want to fix your Google search to a specific Google location, I recommend that you download and install the free plug-in Glims:
    http://www.machangout.com/
    which not only does that but much more equally useful stuff! (Such as automatically deleting Flash cookies.)
    (It adds items to Safari Preferences).
    Not only does it already list a number of search engines and regions, but you can also add any other search engine not already listed in Glims by using the method described here:
    http://www.machangout.com/tutorials/addsearchengine
    Just enter the name you give the search engine in the name field, and the URL for it in the Query URL field.

  • How do I change Default search engine in the address bar, not the search window on the top right or by using about:config, doesn't work. Worked fine until this FF 8.0 update, now defaults to Yahoo 7. About to throw it in and use Chrome.

    When Firefox 8.0 installed it has automatically changed my address bar default search engine to Yahoo7 which is crap. I can not change this back. So when I start FF it opens to my google home page, when I type a subject and search the results are displayed in a Yahoo 7 results page, not google. I am not talking about my default home page or the search bar to the top right. This is still google.
    The settings in about:config do nothing.
    This was fine until FF 8.0.

    Thanks dmcritchie,
    Nice effort but that answers a different question about fixing the add-on Yahoo toolbar.
    Pernich and I want to know; If you type search criteria directly into the address bar and hit enter, how to change that search engine from Yahoo to Google.
    Otherwise I too will go back to using Google Chrome, even though I really like FF8.0
    please help

  • SAP TM - Change in Search help in UI structure does not reflect in FPM screen

    Hi Experts,
    We have a FBI view in which we have added a search help to a UOM field by adding the standard search help /SCMTMS/SH_QUANTITY in the UI structure. The standard search help is showing in the UI. Now we want to add a filter in the search help by adding a constant value 'MASS' on the parameter DIMID (dimension) so that only the UOM's for weight are displayed. But this change is not reflecting on the FBI screen. Even if we remove the search help from the structure the change is not reflecting.
    Can you please suggest if there is any way by which the FBI view can be refreshed so that it displays the recent UI search help addition.

    Hi Sayak,
    Except the report above, you can also attach the search help to the UI fields in the view exit class configured in your FBI view dynamically.
    BR, Dawson

  • Change in Search help in UI structure does not reflect in FPM screen

    Hi Experts,
    We have a FBI view in which we have added a search help to a UOM field by adding the standard search help /SCMTMS/SH_QUANTITY in the UI structure. The standard search help is showing in the UI. Now we want to add a filter in the search help by adding a constant value 'MASS' on the parameter DIMID (dimension) so that only the UOM's for weight are displayed. But this change is not reflecting on the FBI screen. Even if we remove the search help from the structure the change is not reflecting.
    Can you please suggest if there is any way by which the FBI view can be refreshed so that it displays the recent UI search help addition.

    Hi Sayak,
    Except the report above, you can also attach the search help to the UI fields in the view exit class configured in your FBI view dynamically.
    BR, Dawson

  • Choose default Search Help in a collective Search Help

    Hello,
    In a collective search help, when it was launched, I want to open the same search help by default. In fact, the SAP standard keep in memory the last search help opened and when we re-opened it, the last search help in open.
    Thanks in advance.
    Best regards,
    Xavier.

    In found a solution.
    There are no standard solution BUT, in the Collective Search Help Exit, you can do a DELETE or a MODIFY on the DDSHDEFSH table (Default value - search help per user and collective s.h.).
    Xavier.

  • Changing default search engine in Safari

    Google is the default search engine in Safari on Mac OS X 10.5.2. How can I change it to another search engine?

    I tried installing Acid Search v.62xx. It didn't work so I went back to the web site and it appears that Tiger was the last version it worked on.
    I then did a search for AcidSearch and Leopard and there was a Beta of v.7xx.
    http://www.pozytron.com/files/AcidSearch070b3.zip
    I installed it. The installer said it was successful but it doesn't seem to work. Hopefully it will be out of Beta soon.
    I did install Inquisitor and it seems to be working just fine

  • Search help icon in table

    Hi,
       While using OVS(Object value selector) search help or any other search help in table column, We are not finding the f4 help icon in the table column.
    Is there any method to get the f4 help icon?
    Regards
    M.Karthiheyan

    Hi,
    You can refer following thread, it is for the similar requirement of displaying Icon --
    [How to display different icon within WDA alv table base on row data ?;
    Here you need to code in Method for OVS rather than DOINIT, as specified in the thread for their scenario.
    Thanks.
    Kumar Saurav.

  • Search help icon at screen

    Hi all,
    I have created a search help and linked it to a data element.
    On the field, on clicking on F4 ,I am getting the required values.
    But the F4 help symbol which comes beside a screen field ,is not coming on my screen. How can I have that icon beside the screen field?
    Thanks in advance.
    Regards
    Ananya

    Hi,
    I have referred to the right field and I am getting the values at F4. Only the icon for search help is not coming
    Thanks&Regards
    Ananya
    Message was edited by:
            Ananya Mukherjee

Maybe you are looking for

  • Why can't I print a multipage document in Safari?

    My Safari print dialog shows every document as "1 of 1" under the picture, not "1 of however many pages" as it should.  As a result, only the first page prints.

  • On My iphone 4s i cant hear the audio when i plug in my headphones

    Ever since i got my iPhone 4s every time i plug my headphones into my phone and try to listen to music or a youtube video i can barely hear the sound at all even if the volume is all the way up. I don't know what to do. The same thing happened with t

  • Dynamic role setting in human task

    Hi, I would like to use the human task activity in a BPEL process setting the role that has to complete the activity dynamically. I mean, inside the human task editor, there is a section named "Assignment and Routing policy" where I add a participant

  • Error installing EMET 5 on Windows 7 "key not valid for use in specified state"

    No - those other references do not answer the question.  However, this issue appears not to be EMET specific, but .MSI installer specific--i.e. other .MSI installs are failing on this machine with the same message... All of the references I have been

  • What should I run off a UPS to protect myself from data loss?

    I am wanting to safeguard my data. I am considering using a UPS to aid this. I experienced a major mains power brown out last year, and escaped then any damage or data loss. I do not want to risk damage/losing data from power problems. I think I'd ne