<?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: Custom code in selection method for search help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474399#M1253538</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the below exapmle for F4 help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
F4 Help - Calling it from a program  and limiting values

To avoid the standard F4 help to be show, insert the event PROCESS ON-VALUE-REQUEST in the  program and add a field
statement for the field that should trigger the F4 help. In the mdoule called from PROCESS ON-VALUE-REQUEST, call function module
F4IF_FIELD_VALUE_REQUEST.


Example 1 - Dynpro

process before output.
.....


process after input.
.....


PROCESS ON VALUE-REQUEST.
  FIELD it_zsd00003-prctr MODULE f4_help_for_pctr.



MODULE f4_help_for_pctr INPUT.

* NOTE: 
* Tabname/fieldname is the name of the table and field
* for which F4 should be shown. 
*
* Dynprog/Dynpnr/Dynprofield are the names of the Progran/Dynpro/Field
* in which the f4 value should be returned.
*

* Value: The value of the Dynpro fuield when calling the F4 help. 
* You can limit the values shown, by inseting a value in this parameter
* e.g  '50*' to show only values beginning with 50 



  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
      tabname                   = 'ZSD00003'
      fieldname                 = 'PRCTR'
*   SEARCHHELP                = ' '
*   SHLPPARAM                 = ' '
      dynpprog                  = 'ZSD00002_BRUGERKONV_LISTE'
      dynpnr                    = '0100'
      dynprofield               = 'IT_ZSD00003-PRCTR'
*   STEPL                     = 0
      value                     = '50*'
*   MULTIPLE_CHOICE           = ' '
*   DISPLAY                   = ' '
*   SUPPRESS_RECORDLIST       = ' '
*   CALLBACK_PROGRAM          = ' '
*   CALLBACK_FORM             = ' '
* TABLES
*   RETURN_TAB                =

* EXCEPTIONS
*   FIELD_NOT_FOUND           = 1
*   NO_HELP_FOR_FIELD         = 2
*   INCONSISTENT_HELP         = 3
*   NO_VALUES_FOUND           = 4
*   OTHERS                    = 5
            .
  IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.


ENDMODULE.                 " F4_help_for_pctr  INPUT



Example 2 - Report

To control F4 help in a selection screen use the

AT SELECTION-SCREEN ON VALUE-REQUEST FOR &amp;lt;field&amp;gt;
event.

Note that for ranges both the low and high value of the field
must have there own ON VALUE-REQUEST

Example:

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_prctr-low.
  PERFORM f4_help_prctr.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_prctr-high.
  PERFORM f4_help_prctr.

REPORT f4help.

PARAMETERS:
p_auart LIKE vbak-auart.



START-OF-SELECTION.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_auart.
  PERFORM f4_help_aaurt.



*---------------------------------------------------------------------*
*       FORM f4_help_auart                                             *
*---------------------------------------------------------------------*
*       ........                                                      *
*---------------------------------------------------------------------*
FORM f4_help_auart.
  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
      tabname                   =  'VBAK'
      fieldname                 =  'AUART'
*   SEARCHHELP                = ' '
*   SHLPPARAM                 = ' '
*   DYNPPROG                  = ' '
*   DYNPNR                    = ' '
*   DYNPROFIELD               = ' '
*   STEPL                     = 0
*   VALUE                     = ' '
*   MULTIPLE_CHOICE           = ' '
*   DISPLAY                   = ' '
*   SUPPRESS_RECORDLIST       = ' '
*   CALLBACK_PROGRAM          = ' '
*   CALLBACK_FORM             = ' '
* TABLES
*   RETURN_TAB                =
* EXCEPTIONS
*   FIELD_NOT_FOUND           = 1
*   NO_HELP_FOR_FIELD         = 2
*   INCONSISTENT_HELP         = 3
*   NO_VALUES_FOUND           = 4
*   OTHERS                    = 5
            .
  IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.

ENDFORM.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Apr 2009 14:41:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-15T14:41:16Z</dc:date>
    <item>
      <title>Custom code in selection method for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474394#M1253533</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;Is it possible to have my custom code in selection method for a search help.&lt;/P&gt;&lt;P&gt;The idea is to put values needed for search help in one internal table and the result to be based on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 13:37:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474394#M1253533</guid>
      <dc:creator>stefan_kolev4</dc:creator>
      <dc:date>2009-04-15T13:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Custom code in selection method for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474395#M1253534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could explore the concept of the &lt;STRONG&gt;Search Help Exit&lt;/STRONG&gt; where you can change the search help data using ABAP code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help.sap.com and F1 on the field within the search help from SE11 gives a lot of information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 13:42:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474395#M1253534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-15T13:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Custom code in selection method for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474396#M1253535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;search the forum on search help exit and you can find many post of mine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 13:49:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474396#M1253535</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-04-15T13:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: Custom code in selection method for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474397#M1253536</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;Go through the following links to w.r.t serch help exits&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee52446011d189700000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee52446011d189700000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/en/cf/21ee52446011d189700000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/en/cf/21ee52446011d189700000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdev.co.uk/dictionary/shelp/shelp_exit.htm" target="test_blank"&gt;http://www.sapdev.co.uk/dictionary/shelp/shelp_exit.htm&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by&lt;/P&gt;&lt;P&gt;Prasad GVK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 14:04:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474397#M1253536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-15T14:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Custom code in selection method for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474398#M1253537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the following FM for custom search help.&lt;/P&gt;&lt;P&gt;create your internal table for search help and pass to this function module.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lalit Mohan Gupta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 14:36:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474398#M1253537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-15T14:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Custom code in selection method for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474399#M1253538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the below exapmle for F4 help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
F4 Help - Calling it from a program  and limiting values

To avoid the standard F4 help to be show, insert the event PROCESS ON-VALUE-REQUEST in the  program and add a field
statement for the field that should trigger the F4 help. In the mdoule called from PROCESS ON-VALUE-REQUEST, call function module
F4IF_FIELD_VALUE_REQUEST.


Example 1 - Dynpro

process before output.
.....


process after input.
.....


PROCESS ON VALUE-REQUEST.
  FIELD it_zsd00003-prctr MODULE f4_help_for_pctr.



MODULE f4_help_for_pctr INPUT.

* NOTE: 
* Tabname/fieldname is the name of the table and field
* for which F4 should be shown. 
*
* Dynprog/Dynpnr/Dynprofield are the names of the Progran/Dynpro/Field
* in which the f4 value should be returned.
*

* Value: The value of the Dynpro fuield when calling the F4 help. 
* You can limit the values shown, by inseting a value in this parameter
* e.g  '50*' to show only values beginning with 50 



  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
      tabname                   = 'ZSD00003'
      fieldname                 = 'PRCTR'
*   SEARCHHELP                = ' '
*   SHLPPARAM                 = ' '
      dynpprog                  = 'ZSD00002_BRUGERKONV_LISTE'
      dynpnr                    = '0100'
      dynprofield               = 'IT_ZSD00003-PRCTR'
*   STEPL                     = 0
      value                     = '50*'
*   MULTIPLE_CHOICE           = ' '
*   DISPLAY                   = ' '
*   SUPPRESS_RECORDLIST       = ' '
*   CALLBACK_PROGRAM          = ' '
*   CALLBACK_FORM             = ' '
* TABLES
*   RETURN_TAB                =

* EXCEPTIONS
*   FIELD_NOT_FOUND           = 1
*   NO_HELP_FOR_FIELD         = 2
*   INCONSISTENT_HELP         = 3
*   NO_VALUES_FOUND           = 4
*   OTHERS                    = 5
            .
  IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.


ENDMODULE.                 " F4_help_for_pctr  INPUT



Example 2 - Report

To control F4 help in a selection screen use the

AT SELECTION-SCREEN ON VALUE-REQUEST FOR &amp;lt;field&amp;gt;
event.

Note that for ranges both the low and high value of the field
must have there own ON VALUE-REQUEST

Example:

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_prctr-low.
  PERFORM f4_help_prctr.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_prctr-high.
  PERFORM f4_help_prctr.

REPORT f4help.

PARAMETERS:
p_auart LIKE vbak-auart.



START-OF-SELECTION.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_auart.
  PERFORM f4_help_aaurt.



*---------------------------------------------------------------------*
*       FORM f4_help_auart                                             *
*---------------------------------------------------------------------*
*       ........                                                      *
*---------------------------------------------------------------------*
FORM f4_help_auart.
  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
      tabname                   =  'VBAK'
      fieldname                 =  'AUART'
*   SEARCHHELP                = ' '
*   SHLPPARAM                 = ' '
*   DYNPPROG                  = ' '
*   DYNPNR                    = ' '
*   DYNPROFIELD               = ' '
*   STEPL                     = 0
*   VALUE                     = ' '
*   MULTIPLE_CHOICE           = ' '
*   DISPLAY                   = ' '
*   SUPPRESS_RECORDLIST       = ' '
*   CALLBACK_PROGRAM          = ' '
*   CALLBACK_FORM             = ' '
* TABLES
*   RETURN_TAB                =
* EXCEPTIONS
*   FIELD_NOT_FOUND           = 1
*   NO_HELP_FOR_FIELD         = 2
*   INCONSISTENT_HELP         = 3
*   NO_VALUES_FOUND           = 4
*   OTHERS                    = 5
            .
  IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.

ENDFORM.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 14:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474399#M1253538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-15T14:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Custom code in selection method for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474400#M1253539</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;SPAN __jive_macro_name="Code"&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;  SEARCHHELP                = ' '&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  SHLPPARAM                 = ' '&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  STEPL                     = 0&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  MULTIPLE_CHOICE           = ' '&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  DISPLAY                   = ' '&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  SUPPRESS_RECORDLIST       = ' '&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  CALLBACK_PROGRAM          = ' '&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  CALLBACK_FORM             = ' '&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;TABLES&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  RETURN_TAB                =&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;EXCEPTIONS&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  FIELD_NOT_FOUND           = 1&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  NO_HELP_FOR_FIELD         = 2&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  INCONSISTENT_HELP         = 3&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  NO_VALUES_FOUND           = 4&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;  OTHERS                    = 5&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/LI&gt;&lt;/UL&gt;
AT-SELECTION SCREEN ON VALUE-REQUEST
FOR it_zsd00003-prctr .

CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
      tabname                   = 'ZSD00003'
      fieldname                 = 'PRCTR'


      dynpprog                  = 'ZSD00002_BRUGERKONV_LISTE'
      dynpnr                    = '0100'
      dynprofield               = 'IT_ZSD00003-PRCTR'

      value                     = '50*'














            .
  IF sy-subrc &amp;lt;&amp;gt; 0.


  ENDIF.

&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2009 14:42:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474400#M1253539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-15T14:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Custom code in selection method for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474401#M1253540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everybody !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The idea is like this. I would like when we search for a material to have search help with material number, description, stock in plant1, stock in plant2, stock in plant3. I have internal table with needed data, but I don't know how to use it in FM F4IF_INT_TABLE_VALUE_REQUEST.&lt;/P&gt;&lt;P&gt;Please advise !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 07:40:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474401#M1253540</guid>
      <dc:creator>stefan_kolev4</dc:creator>
      <dc:date>2009-04-17T07:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: Custom code in selection method for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474402#M1253541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everybody !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The idea is like this. I would like when we search for a material to have search help with material number, description, stock in plant1,&lt;/P&gt;&lt;P&gt;stock in plant2, &lt;/P&gt;&lt;P&gt;stock in plant3. &lt;/P&gt;&lt;P&gt;I have internal table with needed data, &lt;/P&gt;&lt;P&gt;but I don't know how to use it in FM F4IF_INT_TABLE_VALUE_REQUEST.&lt;/P&gt;&lt;P&gt;Please advise !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 07:47:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474402#M1253541</guid>
      <dc:creator>stefan_kolev4</dc:creator>
      <dc:date>2009-04-17T07:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: Custom code in selection method for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474403#M1253542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 11:34:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-code-in-selection-method-for-search-help/m-p/5474403#M1253542</guid>
      <dc:creator>stefan_kolev4</dc:creator>
      <dc:date>2009-04-24T11:34:21Z</dc:date>
    </item>
  </channel>
</rss>

