<?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: Default value in search help parameter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-in-search-help-parameter/m-p/6573377#M1433169</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read this sample, it contains most functions to use in the POV part of the dynpro :&lt;/P&gt;&lt;P&gt;[DYNAMIC F4 HELP FOR A FIELD IN TABLE CONTROL |http://wiki.sdn.sap.com/wiki/display/sandbox/DYNAMIC&lt;EM&gt;F4&lt;/EM&gt;HELP&lt;EM&gt;FOR&lt;/EM&gt;A&lt;EM&gt;FIELD&lt;/EM&gt;IN&lt;EM&gt;TABLE&lt;/EM&gt;CONTROL]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the module/form&lt;/P&gt;&lt;P&gt;- Add the DYNP_VALUES_READ for the other two fields&lt;/P&gt;&lt;P&gt;- Add the 2 parameters for callback form to the F4 FM&lt;/P&gt;&lt;P&gt;- Implement the form adding the two selections fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Feb 2010 14:15:31 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2010-02-08T14:15:31Z</dc:date>
    <item>
      <title>Default value in search help parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-in-search-help-parameter/m-p/6573374#M1433166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had table control. In table control ,I had three parameters in the screen. Based on two parameters I need to call material serach help S_MAT1. I extended standard material serach help S_MAT1 so i have desird resuit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem is I want those two variables in default search screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought I can set set get parameters to get desired result but in table control we can not get this work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any function module to call search help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Abhishek Purwar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Feb 2010 11:56:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-in-search-help-parameter/m-p/6573374#M1433166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-08T11:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: Default value in search help parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-in-search-help-parameter/m-p/6573375#M1433167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may use FM [F4IF_FIELD_VALUE_REQUEST|http://forums.sdn.sap.com/search.jspa?threadID=&amp;amp;q=F4IF_FIELD_VALUE_REQUEST&amp;amp;objID=c42&amp;amp;dateRange=all&amp;amp;numResults=30&amp;amp;rankBy=10001] with the standard search help, to change standard behaviour of the search help, fill parameters callback_program and callback_form where you will be able to change the transmitted parameters. A little sample :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
       EXPORTING
            tabname          = 'BSID'
            fieldname        = 'UMSKZ'
            multiple_choice  = 'X'  
            callback_program = gv_repid
            callback_form    = 'CGS_DEBITOR'  
       TABLES
            return_tab       = return_tab
       EXCEPTIONS
            OTHERS           = 1.
*...
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  cgs_debitor
*&amp;amp;---------------------------------------------------------------------*
FORM cgs_debitor TABLES   record_tab STRUCTURE seahlpres
                 CHANGING shlp TYPE shlp_descr_t
                          callcontrol LIKE ddshf4ctrl.
* Local declaration
  DATA: ddshiface TYPE ddshiface,
        worklist LIKE lumskz,
        dynpfields TYPE TABLE OF dynpread WITH HEADER LINE.
* Filter D-ebitor
  LOOP AT shlp-interface INTO ddshiface WHERE shlpfield = 'KOART'.
    ddshiface-valtabname = 'BSID'.
    ddshiface-valfield   = 'KOART'.
    ddshiface-value      = 'D'.
    MODIFY shlp-interface FROM ddshiface.
  ENDLOOP.

ENDFORM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;To get current value of the screen, use FM [DYNP_GET_STEPL|http://forums.sdn.sap.com/search.jspa?threadID=&amp;amp;q=DYNP_GET_STEPL&amp;amp;objID=c42&amp;amp;dateRange=all&amp;amp;numResults=30&amp;amp;rankBy=10001] (for table control line) and [DYNP_VALUES_READ|http://forums.sdn.sap.com/search.jspa?threadID=&amp;amp;q=DYNP_VALUES_READ&amp;amp;objID=c42&amp;amp;dateRange=all&amp;amp;numResults=30&amp;amp;rankBy=10001]  in the POV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Feb 2010 12:15:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-in-search-help-parameter/m-p/6573375#M1433167</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-02-08T12:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Default value in search help parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-in-search-help-parameter/m-p/6573376#M1433168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not able to figure out. Do u have any example or any program or sample code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Feb 2010 12:45:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-in-search-help-parameter/m-p/6573376#M1433168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-08T12:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: Default value in search help parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-in-search-help-parameter/m-p/6573377#M1433169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read this sample, it contains most functions to use in the POV part of the dynpro :&lt;/P&gt;&lt;P&gt;[DYNAMIC F4 HELP FOR A FIELD IN TABLE CONTROL |http://wiki.sdn.sap.com/wiki/display/sandbox/DYNAMIC&lt;EM&gt;F4&lt;/EM&gt;HELP&lt;EM&gt;FOR&lt;/EM&gt;A&lt;EM&gt;FIELD&lt;/EM&gt;IN&lt;EM&gt;TABLE&lt;/EM&gt;CONTROL]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the module/form&lt;/P&gt;&lt;P&gt;- Add the DYNP_VALUES_READ for the other two fields&lt;/P&gt;&lt;P&gt;- Add the 2 parameters for callback form to the F4 FM&lt;/P&gt;&lt;P&gt;- Implement the form adding the two selections fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Feb 2010 14:15:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-in-search-help-parameter/m-p/6573377#M1433169</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-02-08T14:15:31Z</dc:date>
    </item>
  </channel>
</rss>

