<?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: adding search help to existing fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565817#M858128</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; hi&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; i have created a ZTABLE(structure), i need to add search help to one of the field name1 which is the standard sap field from table lfb1. can i add it into the table which i have created, if yes how can i add a search help to the field.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, you can add a search help to the field in the ZTABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search Help Creation:&lt;/P&gt;&lt;P&gt;Goto SE11 Tx.&lt;/P&gt;&lt;P&gt;Select the radio button Search Help and create it by giving the reference field from the standard table.&lt;/P&gt;&lt;P&gt;Now go back to the same Tx. Goto the table field to whci you want to add the search help and select the field and click on search help button at the top of the table fields.&lt;/P&gt;&lt;P&gt;Give the search help name which you have created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: This is as per my knowledge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reply me after using the above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Balaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Mar 2008 07:07:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-18T07:07:04Z</dc:date>
    <item>
      <title>adding search help to existing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565815#M858126</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;i have created a ZTABLE(structure), i need to add search help to one of the field name1 which is the standard sap field from table lfb1. can i add it into the table which i have created, if yes how can i add a search help to the field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 06:41:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565815#M858126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T06:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: adding search help to existing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565816#M858127</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;TYPES: BEGIN OF t_reques,&lt;/P&gt;&lt;P&gt;       lgnum TYPE lgnum,&lt;/P&gt;&lt;P&gt;       END   OF t_reques.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:i_reques TYPE STANDARD TABLE OF t_reques.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF BLOCK b1.&lt;/P&gt;&lt;P&gt;  PARAMETER:        p_ware  TYPE lgnum    OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END   OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_ware.&lt;/P&gt;&lt;P&gt;  SELECT lgnum&lt;/P&gt;&lt;P&gt;         FROM T301&lt;/P&gt;&lt;P&gt;         INTO TABLE i_reques.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM f4_help USING i_reques CHANGING p_ware.    "SUBROUTINE FOR F4 HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      SUBROUTINE FOR F4 HELP.                                        *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_I_REQUES  text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     &amp;lt;--P_P_WARE  text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f4_help  USING    p_i_reques&lt;/P&gt;&lt;P&gt;              CHANGING p_p_ware.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           CALLING FM F4IF_INT_TABLE_VALUE_REQUEST FOR F4 HELP.      *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      ddic_structure   = 'LINK'&lt;/P&gt;&lt;P&gt;      retfield         = 'LGNUM'&lt;/P&gt;&lt;P&gt;      dynpprog         = sy-repid&lt;/P&gt;&lt;P&gt;      dynpnr           = sy-dynnr&lt;/P&gt;&lt;P&gt;      dynprofield      = 'P_P_WARE'&lt;/P&gt;&lt;P&gt;      callback_program = 'ZAR_F4HELP'   "Your Program Name&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab        = i_reques&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      parameter_error  = 1&lt;/P&gt;&lt;P&gt;      no_values_found  = 2&lt;/P&gt;&lt;P&gt;      OTHERS           = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE i006(zmm_ab).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arunprasad.P&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 06:54:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565816#M858127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T06:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: adding search help to existing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565817#M858128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; hi&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; i have created a ZTABLE(structure), i need to add search help to one of the field name1 which is the standard sap field from table lfb1. can i add it into the table which i have created, if yes how can i add a search help to the field.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, you can add a search help to the field in the ZTABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search Help Creation:&lt;/P&gt;&lt;P&gt;Goto SE11 Tx.&lt;/P&gt;&lt;P&gt;Select the radio button Search Help and create it by giving the reference field from the standard table.&lt;/P&gt;&lt;P&gt;Now go back to the same Tx. Goto the table field to whci you want to add the search help and select the field and click on search help button at the top of the table fields.&lt;/P&gt;&lt;P&gt;Give the search help name which you have created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: This is as per my knowledge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reply me after using the above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Balaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 07:07:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565817#M858128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T07:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: adding search help to existing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565818#M858129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chk this thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="324008"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this Helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinayak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 07:08:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565818#M858129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T07:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: adding search help to existing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565819#M858130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks but the original field which i am refering doesn't have a search option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 07:10:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565819#M858130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T07:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: adding search help to existing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565820#M858131</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;that field doesn't need to have the search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is how u can create "Search Help" for the fields of the ztables that u have created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE11- Create Search Help for 1 field, "Selection Method" box put the Table name to which the field belongs to. "Dialog Type" box write: "Display Value Immediately".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search Help Parameter is the Field name for which u want the Help. Tick Imp &amp;amp; Exp options and assign LPOS = 1 and Enter. , save and Activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE11- Go to the table , Click on the Field that needs to be assigned a search Help....Click at the left side of the Field so that all the corresponding data Elements, Key field etc also gets selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on the "Search Help tab" just above the "Data Type " column.&lt;/P&gt;&lt;P&gt;Put the "Search Help" name that u just created. Mention the Field and Enter. it takes up the required values. Now Copy.&lt;/P&gt;&lt;P&gt;U can repeat the process for whatever fields u want to assign a Search Help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;se51- Go to Screen Painter, Select Fields from Dictionary table to which u want search help to be assigned.&lt;/P&gt;&lt;P&gt;Double click on the Text box of the corresponding field,......&amp;gt; Screen Painter Attributes.......&amp;gt; Search help Text box.........&amp;gt; Enter the name of the Search help that u created for a field.&lt;/P&gt;&lt;P&gt;Ok....&amp;gt;Save.........&amp;gt; Activate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now u should be able to get the Search help for the fields that u wanted to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 07:13:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565820#M858131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T07:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: adding search help to existing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565821#M858132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you needed the values in a particular filed from standard table as a search help to the field in the Z-table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so no need to have a search help to that field in the standard table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we are creating a search help manually.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 07:19:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-search-help-to-existing-fields/m-p/3565821#M858132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T07:19:55Z</dc:date>
    </item>
  </channel>
</rss>

