<?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/1509619#M235105</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; Use FM &amp;lt;b&amp;gt;'F4IF_INT_TABLE_VALUE_REQUEST'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;   CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
         EXPORTING
              TABNAME           = SPACE
              FIELDNAME         = SPACE
              SEARCHHELP        = MC_OBJ
*               SHLPPARAM         = ' '
              DYNPPROG          = DYNPRO_PROGRAM
              DYNPNR            = DYNPRO_NUMBER
              DYNPROFIELD       = DYNPFIELDS-FIELDNAME
              STEPL             = DYNPFIELDS-STEPL
*               VALUE             = ' '
*               MULTIPLE_CHOICE   = ' '
*               DISPLAY           = ' '
*               CALLBACK_PROGRAM  = ' '
*               CALLBACK_FORM     = ' '
        EXCEPTIONS
              FIELD_NOT_FOUND   = 1
              NO_HELP_FOR_FIELD = 2
              INCONSISTENT_HELP = 3
              NO_VALUES_FOUND   = 4
              OTHERS            = 5.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Aug 2006 14:29:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-31T14:29:35Z</dc:date>
    <item>
      <title>Search Help??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509617#M235103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can v create search help without using SE11?I know that v can do it thru 'AT SELECTION-SCREEN ON VALUE REQUEST',but can someone give me code for the same??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking u in anticipation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sirisha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 14:27:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509617#M235103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T14:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509618#M235104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do it in the program like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001 .

tables: t001.

data: begin of it001 occurs 0,
      bukrs type t001-bukrs,
      butxt type t001-butxt,
      ort01 type t001-ort01,
      land1 type t001-land1,
      end of it001.

select-options s_bukrs for t001-bukrs.

initialization.

  select bukrs butxt ort01 land1 into table it001 from t001.

  sort it001 ascending by bukrs.
  delete adjacent duplicates from it001 comparing bukrs.

at selection-screen on value-request for s_bukrs-low.

  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
       exporting
            retfield    = 'BUKRS'
            dynprofield = 'S_BUKRS'
            dynpprog    = sy-cprog
            dynpnr      = sy-dynnr
            value_org   = 'S'
       tables
            value_tab   = it001.

start-of-selection.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich HEilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 14:27:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509618#M235104</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-31T14:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509619#M235105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; Use FM &amp;lt;b&amp;gt;'F4IF_INT_TABLE_VALUE_REQUEST'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;   CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
         EXPORTING
              TABNAME           = SPACE
              FIELDNAME         = SPACE
              SEARCHHELP        = MC_OBJ
*               SHLPPARAM         = ' '
              DYNPPROG          = DYNPRO_PROGRAM
              DYNPNR            = DYNPRO_NUMBER
              DYNPROFIELD       = DYNPFIELDS-FIELDNAME
              STEPL             = DYNPFIELDS-STEPL
*               VALUE             = ' '
*               MULTIPLE_CHOICE   = ' '
*               DISPLAY           = ' '
*               CALLBACK_PROGRAM  = ' '
*               CALLBACK_FORM     = ' '
        EXCEPTIONS
              FIELD_NOT_FOUND   = 1
              NO_HELP_FOR_FIELD = 2
              INCONSISTENT_HELP = 3
              NO_VALUES_FOUND   = 4
              OTHERS            = 5.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 14:29:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509619#M235105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T14:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509620#M235106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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   = ' '&lt;/P&gt;&lt;P&gt;          RETFIELD       = 'ZFRGGR1'&lt;/P&gt;&lt;P&gt;        PVALKEY          = ' '&lt;/P&gt;&lt;P&gt;        DYNPPROG         = DYNAME&lt;/P&gt;&lt;P&gt;        DYNPNR           = DYNUMB&lt;/P&gt;&lt;P&gt;        DYNPROFIELD      = FLDNAME&lt;/P&gt;&lt;P&gt;        STEPL            = GV_STEP_LINE&lt;/P&gt;&lt;P&gt;        WINDOW_TITLE     =&lt;/P&gt;&lt;P&gt;        VALUE            = ' '&lt;/P&gt;&lt;P&gt;        VALUE_ORG        = 'S'&lt;/P&gt;&lt;P&gt;        MULTIPLE_CHOICE  = ' '&lt;/P&gt;&lt;P&gt;        DISPLAY          = ' '&lt;/P&gt;&lt;P&gt;        CALLBACK_PROGRAM = ' '&lt;/P&gt;&lt;P&gt;        CALLBACK_FORM    = ' '&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;        VALUE_TAB        = IT_PCODE&lt;/P&gt;&lt;P&gt;        FIELD_TAB        =&lt;/P&gt;&lt;P&gt;        RETURN_TAB       =  T_RETURN&lt;/P&gt;&lt;P&gt;        DYNPFLD_MAPPING  =&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 14:40:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509620#M235106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T14:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509621#M235107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to everyone for the help.I appreciate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sirisha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 14:43:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509621#M235107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T14:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509622#M235108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kapil's post really solved your problem?  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Glad your problem is solved.  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 14:45:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509622#M235108</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-31T14:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509623#M235109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually u reply helped me.No offence to others.But i already 6 pts to u n I didnt know how to undo it.N i had to close the thread thats y I had to award pts to him.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help Rich.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sirisha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 16:58:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509623#M235109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T16:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509624#M235110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem, for future references you may change the point allocation anytime you want.  Just simply select a different radiobutton beside the answer.  You can only give one blue star, two green stars, and yellow stars infinite.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, if you want to change the allocation, first you must reassign the points for the answer which is mark as blue start. This will free it up for you to assign to another answer.  Make sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and welcome to SDN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 17:16:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1509624#M235110</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-31T17:16:47Z</dc:date>
    </item>
  </channel>
</rss>

