Search help doesn't appears in WEBUI

Hi Everyone ,
I create a custom field for sales order header with EEWB. Normally with wingui the field has a value table and search help and user can choose only permitted entries. When I try to add this filled to webUI it appears like a text field on page and there is no search help. Anyone can help me on that ?

Hello Goksu,
You have to overwrite get_v* of your attribute,
and insert the code:
data:
    ls_map    type IF_BSP_WD_VALUEHELP_F4DESCR=>GTYPE_PARAM_MAPPING,
    lt_inmap  type IF_BSP_WD_VALUEHELP_F4DESCR=>GTYPE_PARAM_MAPPING_TAB,
    lt_outmap type IF_BSP_WD_VALUEHELP_F4DESCR=>GTYPE_PARAM_MAPPING_TAB.
  ls_map-context_attr = 'struct.YOUR_ATTR'.
  ls_map-f4_attr      = 'KEY_IN_SEARCH_HELP'.
  append ls_map to: lt_inmap, lt_outmap.
  create object rv_valuehelp_descriptor type CL_BSP_WD_VALUEHELP_F4DESCR
    exporting
      iv_help_id        = 'YOUR_SEARCH_HELP'
      iv_help_id_kind   = IF_BSP_WD_VALUEHELP_F4DESCR=>HELP_ID_KIND_COMP
      iv_input_mapping  = lt_inmap
      iv_output_mapping = lt_outmap.
Best Regards,
Yevgen

Similar Messages

  • Search Help Value Not reflecting in WebUI

    Hello All, We have a requirement to create a standard F4 value help for PRODUCT_ID field and the selected value should be reflected in the WebUI field. This field is in a table view context node and the component is a stand alone WebUI component. Everything works fine till the Search help is called and the values is selected. But the selected value is not reflected in the Product_ID field. We have checked many forums and links and tried almost all the alternatives suggested. Here's is the code attached for reference.
    DATA:l_wa_map       TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping,
           l_i_inmap     TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab,
           l_i_outmap    TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab.
      DATA:  lv_str_index TYPE string.
    *  l_wa_map-context_attr = 'product_id'.
    *  l_wa_map-f4_attr      = 'PRODUCT_ID'.
    *  APPEND l_wa_map TO:l_i_inmap,l_i_outmap.
      lv_str_index = iv_index.
      CONCATENATE 'table[' lv_str_index '].PRODUCT_ID' INTO l_wa_map-context_attr.
      l_wa_map-f4_attr = 'KEY'. "'PRODUCT_ID'. "'
      APPEND l_wa_map TO: l_i_outmap.
      lv_str_index = iv_index.
      CONCATENATE 'table[' lv_str_index '].PRODUCT_ID' INTO l_wa_map-context_attr.
      l_wa_map-f4_attr = 'VALUE'. "'PRODUCT_ID'.   "
      APPEND l_wa_map TO: l_i_outmap.
      CREATE OBJECT rv_valuehelp_descriptor TYPE cl_bsp_wd_valuehelp_f4descr
         EXPORTING
          iv_help_id        = 'COM_PR_SHTEXT'      "#EC NOTEXT
          iv_help_id_kind   = if_bsp_wd_valuehelp_f4descr=>help_id_kind_name  "if_bsp_wd_valuehelp_f4descr=>help_id_kind_comp
          iv_input_mapping  = l_i_inmap
          iv_output_mapping = l_i_outmap
          iv_object_ref     = me
          iv_trigger_submit = abap_true.
    Is there any further code or event call required to reflect the value in the WebUI? or what exactly is required to be done here?
    Thanks in Advance.
    Prasad

    Hi Kamlesh,
    Check that you have checked for import and export in your search help for parameter ATBEZ
    Refer my reply in here  [F4 Help|HELP NEEDED....F4 VALUE HELP IN WEB UI;
    Regards
    Jignesh

  • The field SAKNR search help doesn't work?

    Dear Expert,
    My dialog program used a table field data element call SAKNR ,
    and i set the search help in the layout screen of my table control.
    the search help works but after i double click it but the value didn't show up
    in the field.
    don't know what's going on...
    Please Help.
    Regards
    Jack Lee

    Search Help Name   :- C_SAKNR for data element  SAKNR and value table is SKA1 in module pool you can assign  Search Help Name

  • Search Help Exit : Table appears sorted in Search Help!

    Hi All,
    I have implemented a search help exit to show a custom list of objects. Unfortunately, the list gets sorted somewhere in between the search help exit and the actual F4 display.
    Any ideas what I can do tp prevent the sorting?  It's very important that the output list displays in exact order that I have in the exit function module.
    Thanks!
    Roman D.

    while passing the changing parameter CALLCONTROL
    chk while populating the table make sure that
    callcontroltable-sortoff(DDSHF4CTRL-SORTOFF)
    is not 'X'.
    Refer to this link below
    search help exit
    Regds
    Manohar

  • Search Help 'TIMEFIELD' to appear in ICWC

    Hi Experts,
    Is it possible to have the search help 'TIMEFIELD' tied to a field in the ICWC?
    I tried doing so in the view, but in ICWC, it launches a blank pop up help screen.
    Thanks

    Hi,
       As of now (till CRM 5.0)IC framework does not have a search help for time relevant input fields. May be SAP brings one out in the latest CRM 70.
    Reward if helpful.
    Thanks,
    Sudipta.

  • Search help doesn't exist in SE11

    Hi,
    I am enhancing the standard t-code QM01. According to requirement I have to put Shipment (tknum) and corresponding Item (tpnum) in the screen in SE80.
    For shipment the search help has come automatically but for TPNUM its not coming and I can't see any search help name exist for TPNUM Iin se11. Kindly help.
    Pls let me know if furtehr information is needed

    hi
    try this
    [http://help.sap.com/saphelp_47x200/helpdata/en/cf/21ee5f446011d189700000e8322d00/content.htm]

  • Search Help doesn't work with a dynamically created internal table

    Hi Gurus,
    I have a custom report that will display the output through edittable ALV.
    My issue is, even though I've already did the FOREIGN KEY assisgnment to each fields of my custom table,
    when I run my report,some fields F$ functionality aint working.
    In my report, I've declared the table to be passed to ALV display dynamically as below:
    *_Create dynamic internal tables for the Final INTERNAL TABLE
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog           = gt_fldcatfin
        IMPORTING
          ep_table                  = gp_fintab
        EXCEPTIONS
          generate_subpool_dir_full = 1
          OTHERS                    = 2.
        ASSIGN gp_fintab->* TO <i_xfintab>.
    Where gt_fldcatfin is a modified fieldcatalog (combination of the cutom table fields and 1 column for CELLCOLOR)
    Please help me with this. Thanks a lot.

    This is one way.
    Import photo into illustrator.
    Draw box around photo, no fill ,no stroke colour and place on top of photo.
    Menu - Object - Envelope Distort - Make with Warp - (warp option will appear)
    Use ‘Direct Selection Tool’ (white arrow)
    Select/click on anchor points to alter, you can also use the rotation tool to turn to required position.
    Hope this info' is of help.

  • My podcast has a channel, and one episode in the channel, but my second episode is only accessible via a search and doesn't appear in my channel

    So I've recently submitted a podcast, and my channel is up and running with my first episode, but now that I've submitted my 2nd episode its not showing up when you view my podcast
    BUT when you search my podcast name both episodes show up in the search results
    As you can see its there in the 2nd picture but not in the first.
    Futhermore when I click on the link to my own channel (the green rectangle on the bottom left of the second picture) it takes me right to the first picture, missing the 2nd episode.
    Is this just a case of itunes being slow to add my next episode?
    Here is a link to my RSS
    http://miniaturejames.podbean.com/

    That link is to your web page. Your feed is at http://miniaturejames.podbean.com/feed/
    and your iTunes Store page is at https://itunes.apple.com/podcast/miniature-james-show/id687962754
    There are three episodes in the feed, the last two posted only yesterday. It's quite normal for the Store to take a couple of days to show new episodes, so it's just a question of waiting.

  • Search Help for ROUTE field in VA01

    Hi All,
       I need help in assigning search help to ROUTE(VBAP-ROUTE) field in VA01 Transaction.Instead of standard F4 list I need a list of Routes from the Custom table which will be maintaned.This new F4 list has to be displayed based on order types...Means only for order type ZXXX it should show the new F4 List, for the rest of the ordertypes it should show the standard F4 List.
    P.S : Search help H_TVRO is assigned to the Route.This Search help doesn't have Search help Exit or Append Search help options.
    Your help is highly appreciated.
    Thanks.
    Satyan.

    Hi,
       You can do that using search help exits you would find several threads already posted to the forum for this like below:
    Link[Search Help Exits|Search Help Exit;
    Regards,
    Himanshu

  • Custom Search Help for the field Equipment number

    Hi,
    I have enchanced sales order transaction and included a field Equipment number(EQUI-EQUNR).
    Here after pressing F4(Search help) standard search help is display.
    I have a requirement wherein, the standard search help should not appear and a customised search where a specific Equipment category type values should appear in the search help.
    Ex. Field equipment  category (EQTYP).EQUNR(Equipment Number).
    Please let me know how to work for the customised search help.

    Hi,
    You need to create a customized search help.
    [Elementary Search Help - Structure|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee38446011d189700000e8322d00/content.htm]
    [Creating Elementary Search Helps|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee5f446011d189700000e8322d00/content.htm]
    Then you need to attach the search help to the screen field..
    [Assigning Search Helps to Screen Fields|http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee93446011d189700000e8322d00/content.htm]
    [Hierarchy of Search Help Call|http://help.sap.com/saphelp_nw04/helpdata/EN/0b/32e9b798da11d295b800a0c929b3c3/content.htm]
    regards
    Nitesh

  • How to disappear the search help in alv

    hi experts:
       some field's search help in alv appear automaticly,such as bukrs. I want to disappear the search help in ALV.how it come true?
    the alv is CL_GUI_ALV_GRID.
    Edited by: huiqing wei on Apr 20, 2009 10:35 AM

    In the Layout give parameter NO_F4 = 'X'.
    DATA:        wa_layo type lvc_s_layo.
    wa_layo-no_f4 = 'X'.
      call method grid_alv->set_table_for_first_display
        exporting
    *    I_BUFFER_ACTIVE               =
    *    I_BYPASSING_BUFFER            =
    *    I_CONSISTENCY_CHECK           =
    *        i_structure_name              = 'T_MARD'
    *    IS_VARIANT                    =
    *    I_SAVE                        =
          i_default                     = 'X'
        is_layout                     = wa_layo   <<<<<<<<<<<<<<<<<<<<<
    *    IS_PRINT                      =
    *    IT_SPECIAL_GROUPS             =
    *    IT_TOOLBAR_EXCLUDING          =
    *    IT_HYPERLINK                  =
    *    IT_ALV_GRAPHICS               =
    *    IT_EXCEPT_QINFO               =
    *    IR_SALV_ADAPTER               =
        changing
          it_outtab                     = i_mard[]
      it_fieldcatalog               = i_fieldcat[]
    *    IT_SORT                       =
    *    IT_FILTER                     =
    exceptions
      invalid_parameter_combination = 1
      program_error                 = 2
      too_many_lines                = 3
      others                        = 4
      if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.

  • Search help does not work when view context is mapped to comp context

    Hello,
    I am trying to display search help for an input field of a view. The context to which the input field is bound is a node with an attribute. I have specified Dictionary Search help for the attribute. Now when I execute the application, I am able to get the search help in the screen.
    But, I  need to map this  view context node to its comp controller context. When I do the mapping, the search help does not appear when executed.
    It would be a great help if someone can point out an answer to this.
    Thanks,
    Maya

    Hi Maya
    Follow these steps:
    1.Delete the context node/attribute which is bound to search help from the View.
    2.Now Save metadata.
    3.Perform Context mapping again .In the Edit Context Mapping window drag the node/attribute FROM RIGHT PANE TO LEFT PANE and select the entry.
    4.Delete the Input Field from the view.
    5.Save again
    6.Close NWDS and reopen it.
    7.Create input field again and bind it to the context element.
    Hope this solves the problem.
    Regards
    Ananda

  • Add documentation to (collective) search help

    If i create a collective search help via se11 and execute it, the blue 'I'-button (information) appears.  When I press it, nothing happens.
    (the same thing occurs with the sflight searchhelp)
    I would like to add a documentation to a collective search help that would appear when this button is pressed.  is this possible and how should I do it?

    Hi Dries,
    Go through this info.
    Creating Collective Search Helps
    Procedure
    In the initial screen of the ABAP Dictionary, select object class Search help, enter the name of the search help and choose Create.
    A dialog box appears in which you must select the type of search help.
    Select Collective search help and choose .
    The maintenance screen for collective search helps is displayed.
    Enter an explanatory text in the field Short text.
    You can for example find the search help at a later time using this short text.
    In the Definition tab page enter the parameters of the collective search help.
    Select the Imp flag if it is an import parameter. Select the Exp flag if it is an export parameter.
    Define the types for the parameters of a collective search help by assigning a data element. Enter the name of the data element that describes the contents of the search help parameter in the Data element field.
    You can assign the parameter a default value in the Default value field.
    In exceptions it could be necessary to change the standard process defined by the search help. You can implement the deviation from the standard using a search help exit.
    In this case enter the name of the search help exit in the corresponding field.
    On the Included search helps tab page, define the search helps that you want to include in the collective search help.
    You can include elementary search helps and collective search helps.
    Use the Hide flag to control whether an included search help should appear in the dialog box for selecting the elementary search help. If the flag is set, the search help is not offered.
    It makes sense to hide search help inclusions if one or more search paths in the standard system should not be used in a concrete R/3 System. Similarly, search help inclusions can also be already hidden in the standard system because they only can be used meaningfully in a few R/3 Systems. You have to cancel the flag in this case.
    Position the cursor one after the other on each allocated search help and choose Parameter assignment.
    In the next screen, enter the parameter names of the elementary search helps to which the corresponding parameters of the collective search help should be assigned in the field Reference parameter.
    You can select the parameters contained in the included search help using the input help. Create a proposal for the assignment with Proposal.
    Save your entries.
    A dialog box appears in which you have to assign a development class to the search help.
    Choose .
    Result
    The collective search help is activated. You can find information about the activation flow in the activation log, which you can display with Utilities ® Activation log. If errors occurred when the collective search help was activated, the activation log is automatically displayed.
    Do not forget to link the search help to a screen field. The search help attachment is not part of the search help definition; it is part of the object definition to which the search help is attached.
    Other Options
    You can test the flow of an input help defined by the collective search help with . A dialog box appears in which you can simulate the behavior of the search help under different conditions. You can obtain information about the options provided in this window with .
    Rewards some points .
    Rgds,
    P.Naganjana Reddy

  • Search help in table maintenance generator

    Hello,
    I have the following problem with the table maintenance generator:
    I created a maintenance view and generated a maintenance dialog using the generator.
    Some of the fields in this view are marked to be used as selection criteria in an additional dialog box which appears just before the system displays the data to be maintained (fields used for subsets).
    The problem is that I cannot attach my own serach help for the fields displayed in this additional dialog window.
    I created a search help, attached it to the data element of that field, reactivated the view, the maintenance dialog - and the result is nothing: my search help does not appear for that field, instead of it there's still a list of values stored in a table defined as a table of values for the domain asociated with the data element.
    Has anyone solved that somehow ?
    Thanks in advance

    Thanks but it would be very nice if it was so easy.
    The screen on which I want the search help to appear is not a screen created by the generator which I could just modify.
    This is a standard dialog box window which appears <u>before</u> the system displays the screen created by the generator. It is screen number 0100 of program SAPLSVIX.
    This screen is used in all transactions created with the generator (see for example OMJJ) so it cannot be modified this way.
    regards

  • Search Help for Route - VA01

    Hi All,
    I need help in assigning search help to ROUTE(VBAP-ROUTE) field in VA01 Transaction.Instead of standard F4 list I need a list of Routes from the Custom table which will be maintaned.This new F4 list has to be displayed based on order types...Means only for order type ZXXX it should show the new F4 List, for the rest of the ordertypes it should show the standard F4 List.
    P.S : Search help H_TVRO is assigned to the Route.This Search help doesn't have Search help Exit or Append Search help options.
    Your help is highly appreciated.
    Thanks.
    Satyan.

    Hi Satyan
            for the search help H_TVRO you can create your own search help exit. search help exit is just a fm which will be executed when SH is hit..
    with out access key you can add the search help exit in the search help..
    https://wiki.sdn.sap.com/wiki/x/du0 this is my code for saerch help exit in CRM

Maybe you are looking for

  • NamespaceContext.getPrefix() never called

    I am a newbie in the Java XML world. Here is my issue and the snippet of code is used to explain the problem: XPathVariableResolver jxvr = new JSTLXPathVariableResolver(pageContext); Node contextNode = adaptParamsForXalan(n, xpathString.trim(), jxvr)

  • Muse CC 2014 not functioning properly

    Installed the "latest and greatest" this morning but have had nothing but issues.  If I click on the Hyperlinks options, it locks down my computer for several minutes and never does bring up the menu, I can't see the footer, there is no magnifying gl

  • Getting MX 2004 to create a flash player 8 swf

    I am trying to get my Flash MX 2004 to show Flash Player 8 in the publish settings so that I can publish a .swf file to 8. Can you help? Avi

  • Can't update pacman.

    I have a strange problem. I haven't updated Arch since sometimes in January, and today when I tried to it asked me to update pacman first. I said yes, and got this: sudo pacman -Syu Password: :: Synchronizing package databases... core is up to date e

  • Automatically generated (Sound) classes

    Hi all, Quick summary: I'm trying to compile a SWC file with a lot of assets in it in an as easy possible way. "Easy" for a not so technical end user, not perse the way to acchieve that goal. Goal is to streamline a process to generate SWC files with