<?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: Assign Search help dynamically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841429#M44305</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Umar,&lt;/P&gt;&lt;P&gt;i had tried a similar solution earlier. but the problem is , that the control does not go to the application layer from the presentation layer for the specified module to work .&lt;/P&gt;&lt;P&gt;Thanks anyways&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Jan 2005 05:32:19 GMT</pubDate>
    <dc:creator>SudhirMakam</dc:creator>
    <dc:date>2005-01-24T05:32:19Z</dc:date>
    <item>
      <title>Assign Search help dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841426#M44302</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 two fields(issue_status and remarks)in a table control. I want to assign a search help to the 'REMARKS' field of the table control only when the user selects the value 'REJECTED' in the 'issue_status' field of the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could some one please help me in solving this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Makam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2005 10:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841426#M44302</guid>
      <dc:creator>SudhirMakam</dc:creator>
      <dc:date>2005-01-21T10:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Search help dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841427#M44303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Makam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you should be using "process on help-request." event in the flow logic of your dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next you should read the contents of the "issue_status" field via function module DYNP_VALUES_READ. Then, if the value for "issue_status" is "REJECTED", then program your own "on help-request" module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps. BR,&lt;/P&gt;&lt;P&gt;Alvaro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2005 14:30:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841427#M44303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-21T14:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Search help dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841428#M44304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudhir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use SCREEN-VALUE_HELP in your PBO of your screen to populate the search help dynamically. Your code should be something like this,&lt;/P&gt;&lt;P&gt;PBO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab with control TcontrolName cursor line.&lt;/P&gt;&lt;P&gt;   module put_searchhelp.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your module put_searchhelp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if itab-issue_status = 'REJECTED'.&lt;/P&gt;&lt;P&gt;   loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-name = 'REMARKS'.&lt;/P&gt;&lt;P&gt;         screen-value_help = 'YOURSEARCHHELP'.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;   endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2005 16:36:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841428#M44304</guid>
      <dc:creator>nablan_umar</dc:creator>
      <dc:date>2005-01-21T16:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Search help dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841429#M44305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Umar,&lt;/P&gt;&lt;P&gt;i had tried a similar solution earlier. but the problem is , that the control does not go to the application layer from the presentation layer for the specified module to work .&lt;/P&gt;&lt;P&gt;Thanks anyways&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jan 2005 05:32:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841429#M44305</guid>
      <dc:creator>SudhirMakam</dc:creator>
      <dc:date>2005-01-24T05:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Search help dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841430#M44306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can enter ':'   followed by variable name in the module pool screen field .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can populate this variable with required search help name at runtime depending on some conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u still cant understand, just press F1 at the search help textbox given in the module pool for the required field and u will get it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Neetu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 09:36:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841430#M44306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-15T09:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: Assign Search help dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841431#M44307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;at selection-screen.&lt;/P&gt;&lt;P&gt;call the fn module dynp_values read and get the value for the fied issue_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection screen on value request for reamrks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if issue_staus = 'rejected'&lt;/P&gt;&lt;P&gt;call the function module f4if_int_table_value_request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 09:41:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-search-help-dynamically/m-p/841431#M44307</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2007-10-15T09:41:01Z</dc:date>
    </item>
  </channel>
</rss>

