<?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: Dynamic help values on selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-help-values-on-selection-screen/m-p/1957898#M394080</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this code sample which exactly satisfies your requirement on displaying F4 help accordingly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a07a330f-126c-2910-c684-d2a45f0f37dd" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a07a330f-126c-2910-c684-d2a45f0f37dd&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dont forget to award points if found helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Feb 2007 12:04:48 GMT</pubDate>
    <dc:creator>rahulkavuri</dc:creator>
    <dc:date>2007-02-26T12:04:48Z</dc:date>
    <item>
      <title>Dynamic help values on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-help-values-on-selection-screen/m-p/1957895#M394077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          Please help me to solve this problem.I am going to display one field(PARTNER) on the selection screen at the starting when user press F8.This field(PARTNER) has search help facility.so now the problem is whenever user press f4&lt;/P&gt;&lt;P&gt;then we get the lst of search help values with field names&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARTNER   FIRST NAME   LASTNAME  AMOUNT  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;etc.whenever the user selects the value PARTNER from this search help I have to get the values FIRST NAME and LAST NAME along with the PARTNER and display these two values on the screen adjacent to the field PARTNER on the selection screen.Please note that the program type is REPORT type and these values must change whenever the user changes the value of the PARTNER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;GIRI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 11:52:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-help-values-on-selection-screen/m-p/1957895#M394077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T11:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic help values on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-help-values-on-selection-screen/m-p/1957896#M394078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Giri,&lt;/P&gt;&lt;P&gt;  Make use of the fm: DYNP_VALUES_READ function module. See the example given in the FM documentation.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 11:56:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-help-values-on-selection-screen/m-p/1957896#M394078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T11:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic help values on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-help-values-on-selection-screen/m-p/1957897#M394079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TRY THIS CODE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_carr_1 TYPE spfli-carrid,&lt;/P&gt;&lt;P&gt;            p_carr_2 TYPE spfli-carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_carr_2.&lt;/P&gt;&lt;P&gt;  CALL SCREEN 100 STARTING AT 10 5&lt;/P&gt;&lt;P&gt;                  ENDING   AT 50 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE value_list OUTPUT.&lt;/P&gt;&lt;P&gt;  SUPPRESS DIALOG.&lt;/P&gt;&lt;P&gt;  LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.&lt;/P&gt;&lt;P&gt;  SET PF-STATUS space.&lt;/P&gt;&lt;P&gt;  NEW-PAGE NO-TITLE.&lt;/P&gt;&lt;P&gt;  WRITE 'Star Alliance' COLOR COL_HEADING.&lt;/P&gt;&lt;P&gt;  ULINE.&lt;/P&gt;&lt;P&gt;  p_carr_2 = 'AC '.&lt;/P&gt;&lt;P&gt;  WRITE: / p_carr_2 COLOR COL_KEY, 'Air Canada'.&lt;/P&gt;&lt;P&gt;  HIDE p_carr_2.&lt;/P&gt;&lt;P&gt;  p_carr_2 = 'LH '.&lt;/P&gt;&lt;P&gt;  WRITE: / p_carr_2 COLOR COL_KEY, 'Lufthansa'.&lt;/P&gt;&lt;P&gt;  HIDE p_carr_2.&lt;/P&gt;&lt;P&gt;  p_carr_2 = 'SAS'.&lt;/P&gt;&lt;P&gt;  WRITE: / p_carr_2 COLOR COL_KEY, 'SAS'.&lt;/P&gt;&lt;P&gt;  HIDE p_carr_2.&lt;/P&gt;&lt;P&gt;  p_carr_2 = 'THA'.&lt;/P&gt;&lt;P&gt;  WRITE: / p_carr_2 COLOR COL_KEY, 'Thai International'.&lt;/P&gt;&lt;P&gt;  HIDE p_carr_2.&lt;/P&gt;&lt;P&gt;  p_carr_2 = 'UA '.&lt;/P&gt;&lt;P&gt;  WRITE: / p_carr_2 COLOR COL_KEY, 'United Airlines'.&lt;/P&gt;&lt;P&gt;  HIDE p_carr_2.&lt;/P&gt;&lt;P&gt;  CLEAR p_carr_2.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;  CHECK NOT p_carr_2 IS INITIAL.&lt;/P&gt;&lt;P&gt;  LEAVE TO SCREEN 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 12:01:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-help-values-on-selection-screen/m-p/1957897#M394079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-26T12:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic help values on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-help-values-on-selection-screen/m-p/1957898#M394080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this code sample which exactly satisfies your requirement on displaying F4 help accordingly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a07a330f-126c-2910-c684-d2a45f0f37dd" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a07a330f-126c-2910-c684-d2a45f0f37dd&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dont forget to award points if found helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Feb 2007 12:04:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-help-values-on-selection-screen/m-p/1957898#M394080</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2007-02-26T12:04:48Z</dc:date>
    </item>
  </channel>
</rss>

