<?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: Implement F4 Value-Request Functionality in Dialog Programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885065#M52342</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Forgot to ask.  You mentioned "dialog programs don't support report events".  If you do a CALL SELECTION-SCREEN, the AT SELECTION-SCREEN events will be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a program that I just completed that displays a regular selection screen, then does a CALL SELECTION-SCREEN, then finishes with a CALL SCREEN and I use the AT SELECTION-SCREEN ON VALUE REQUEST event to invoke an existing FM to do F4 help.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you can provide additional detail to help clarify.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Jan 2005 17:52:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-01-07T17:52:46Z</dc:date>
    <item>
      <title>Implement F4 Value-Request Functionality in Dialog Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885062#M52339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. Apologies in advance if this is the wrong forum. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm on R/3 4.6c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the best way to implement this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR xxxx-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in a dialog program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have my selection screen defined in my TOP include, but since dialog programs don't support report events I am not sure what to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for any assistance you could provide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brett&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2005 17:10:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885062#M52339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-07T17:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Implement F4 Value-Request Functionality in Dialog Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885063#M52340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;make a new include like &lt;/P&gt;&lt;P&gt;include progname_screen_1001. at the top of your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goto include.&lt;/P&gt;&lt;P&gt;write the code below in your include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1001.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;write here your selection options and parameters.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;also but here the code you want:&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR xxxx-low.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call the screen from anywhere:&lt;/P&gt;&lt;P&gt;call screen 1001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want the selection-screen as subscreen than write&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1001 as subscreen .&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;write here your selection options and parameters.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;also but here the code you want:&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR xxxx-low.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when calling it &lt;/P&gt;&lt;P&gt;write it to PBO of your screen in which you but an subscreen area named subsel.&lt;/P&gt;&lt;P&gt;CALL SUBSCREEN SUBSEL INCLUDING 'PROGRAMNAME' '1001'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2005 17:40:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885063#M52340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-07T17:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Implement F4 Value-Request Functionality in Dialog Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885064#M52341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My first reaction is too avoid coding this feature and use the facilities of the dictionary to provide value help.  Domain values, check tables, attaching search helps, etc.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With that said, you can still program the help.  I suggest you take a look at program DEMO_DYNPRO_F4_HELP_MODULE which is in my 4.6C system.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2005 17:43:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885064#M52341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-07T17:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Implement F4 Value-Request Functionality in Dialog Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885065#M52342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Forgot to ask.  You mentioned "dialog programs don't support report events".  If you do a CALL SELECTION-SCREEN, the AT SELECTION-SCREEN events will be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a program that I just completed that displays a regular selection screen, then does a CALL SELECTION-SCREEN, then finishes with a CALL SCREEN and I use the AT SELECTION-SCREEN ON VALUE REQUEST event to invoke an existing FM to do F4 help.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you can provide additional detail to help clarify.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2005 17:52:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885065#M52342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-07T17:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Implement F4 Value-Request Functionality in Dialog Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885066#M52343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also forgot to mention example ABAP program DEMO_SELECTION_SCREEN_F4.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2005 18:04:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885066#M52343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-07T18:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Implement F4 Value-Request Functionality in Dialog Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885067#M52344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using a dynpro, you can specify the F4 help in the screen itself.  In the elements list of the screen, under the references tab,  there is a field called search help.  Specify the search help there.  &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>Fri, 07 Jan 2005 18:14:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885067#M52344</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-01-07T18:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Implement F4 Value-Request Functionality in Dialog Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885068#M52345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahhh, yes!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do report events in dialog programming has eluded me for the longest time. In fact, I specifically remember reading in an SAP book that report events were not support in dialog modules. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right, tho. It can be done. I didn't realize that the key is to place the report events in their own include. When I tried to place them in the same include as the screen definition ("top"), I was getting errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is going to solve so many problems for me. Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, I would implement the value request at the dictionary level, but this help feature is very particular to one department. You are right tho.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brett&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2005 18:23:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885068#M52345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-07T18:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Implement F4 Value-Request Functionality in Dialog Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885069#M52346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using a selection-screen, but I was also wondering how to do this as well. This will be very useful to me too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brett&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2005 18:27:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implement-f4-value-request-functionality-in-dialog-programming/m-p/885069#M52346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-07T18:27:17Z</dc:date>
    </item>
  </channel>
</rss>

