<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: search help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/2446847#M548113</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The search help for any elementcan com from two places&lt;/P&gt;&lt;P&gt;1. search help&lt;/P&gt;&lt;P&gt;2. fixed values&lt;/P&gt;&lt;P&gt;3. value table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2,3 are stored in the domain level.. goto se11 and see the domain details.. in the values tab.. u can see the fixed values that the domain can take..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in se11 type table name at disvariant..&lt;/P&gt;&lt;P&gt;double click on the data type of field variant..&lt;/P&gt;&lt;P&gt;here u double click on the domain name in the data type tab&lt;/P&gt;&lt;P&gt;wat u see now is the domain that the field belongs to..&lt;/P&gt;&lt;P&gt;here see the  values tab.. u can see the fixed values and value table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else click on the name of the filed in the table view itself.. the window that opens shows th search help table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must be able to find the data in one of the  three placess..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;Aparna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Jun 2007 08:05:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-26T08:05:48Z</dc:date>
    <item>
      <title>search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/2446844#M548110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;   Please do favour to me for the below querry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools: slis,&lt;/P&gt;&lt;P&gt;            kkblo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i had a selection-screen with.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK sec WITH FRAME TITLE text-002.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_var LIKE disvariant-variant.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK sec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at the event at selection-screen.&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for p_var.&lt;/P&gt;&lt;P&gt;  perform p_var_help_variants using p_var.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form p_var_help_variants using   p_field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: wa_variant like disvariant-variant.&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    call function 'HR_F4_FOR_ALV_VARIANT'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              current_report = g_repid&lt;/P&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;              variant        = wa_variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      p_field = wa_variant.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " P_VAR_HELP_VARIANTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   my question is in the selection screen field P_Var there is search help&lt;/P&gt;&lt;P&gt;    with pop-up having some value as in alv layout.&lt;/P&gt;&lt;P&gt; there should be some table where the data must be populated but no table found in the entire program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;following code in Include.&lt;/P&gt;&lt;P&gt;FORM initialized_alv USING    p_var.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**-- prepare alv_list_attributes&lt;/P&gt;&lt;P&gt;  g_repid = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM eventtab_build_alv    USING gt_events[].&lt;/P&gt;&lt;P&gt;  PERFORM s_print_build_alv     USING gs_print.&lt;/P&gt;&lt;P&gt;  PERFORM fbuild_alv_layout_alv USING gs_layout.&lt;/P&gt;&lt;P&gt;  PERFORM sort_build_alv        USING gt_sort[]   waversion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Set Option: userspecific save variant&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  g_save = 'A'.&lt;/P&gt;&lt;P&gt;  PERFORM initialize_variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get default variant&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  gx_variant = g_variant.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_save     = g_save&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      cs_variant = gx_variant&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      not_found  = 2.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    p_var = gx_variant-variant.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " initialized_alv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;needful answer can be appraisal..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Advance thanks .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 07:00:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/2446844#M548110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T07:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/2446845#M548111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto SE11 and open the associated data element.&lt;/P&gt;&lt;P&gt;Here go to Further Characheristics Tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Double click on the search Help.&lt;/P&gt;&lt;P&gt;In the search help, tehre is data collection tab. there is selection methoid and the entry of the data base table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The search help values are fetched from this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopw this helps.&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 07:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/2446845#M548111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T07:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/2446846#M548112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check the fields Data element if it has any Search help associated with it, if there is one then from the search help you can find out from which table you are getting the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is not search help at the Data element level, goto Domain and check if there is any VALUE TABLE assgined at the domain level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is there then values can come from here also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check if the domain has any Fixed values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 07:54:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/2446846#M548112</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-06-26T07:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/2446847#M548113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The search help for any elementcan com from two places&lt;/P&gt;&lt;P&gt;1. search help&lt;/P&gt;&lt;P&gt;2. fixed values&lt;/P&gt;&lt;P&gt;3. value table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2,3 are stored in the domain level.. goto se11 and see the domain details.. in the values tab.. u can see the fixed values that the domain can take..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in se11 type table name at disvariant..&lt;/P&gt;&lt;P&gt;double click on the data type of field variant..&lt;/P&gt;&lt;P&gt;here u double click on the domain name in the data type tab&lt;/P&gt;&lt;P&gt;wat u see now is the domain that the field belongs to..&lt;/P&gt;&lt;P&gt;here see the  values tab.. u can see the fixed values and value table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else click on the name of the filed in the table view itself.. the window that opens shows th search help table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must be able to find the data in one of the  three placess..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;Aparna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 08:05:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/2446847#M548113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T08:05:48Z</dc:date>
    </item>
  </channel>
</rss>

