<?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: Display list  when pushbutton is pressed. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946103#M64232</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 created one program with following code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN PUSHBUTTON /10(20) TEXT-001 USER-COMMAND GO.

AT SELECTION-SCREEN.
 CASE SY-UCOMM.
  WHEN 'GO'.
    SUBMIT TEST2 AND RETURN.
 ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and second one which is called from the first one after button click:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; REPORT TEST2 .
  WRITE:/ 'Line 1'.
  WRITE:/ 'Line 2'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and it works...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krzys&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 26 Jun 2005 22:58:08 GMT</pubDate>
    <dc:creator>krzysztof_konitz4</dc:creator>
    <dc:date>2005-06-26T22:58:08Z</dc:date>
    <item>
      <title>Display list  when pushbutton is pressed.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946100#M64229</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;I have a requirement, when a pushbutton is pressed in the selection screen I would like to display a list based on the user's selection inputs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now I cannot display the list using the pushbutton press but the list is displayed when i click on the execute button. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't want to use the execute button to show the list, but instead I want to used the pushbutton to execute the list. Can anyone help me how to achieve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Prabhu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Prabhakaran Paramasivan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jun 2005 18:57:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946100#M64229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-26T18:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: Display list  when pushbutton is pressed.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946101#M64230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can control pushbutton actions at the event block &amp;lt;b&amp;gt;"AT SELECTION-SCREEN"&amp;lt;/b&amp;gt; regarding the value sy-ucomm.&lt;/P&gt;&lt;P&gt;&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;*--Serdar &amp;lt;a href="https://www.sdn.sap.com:443http://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=qbk%2bsag%2bjiw%3d"&amp;gt;[ BC ]&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jun 2005 19:22:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946101#M64230</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2005-06-26T19:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Display list  when pushbutton is pressed.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946102#M64231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, I doing the same. But in the event block "AT SELECTION-SCREEN" and for the sy-ucomm value if I have some list printed out( write statement). I'm not able the see that on the screen. I have made sure that the control comes there when the button is clicked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should I hide the selection screen in order to show the List values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE sscrfields-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'GEN_PB'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     PERFORM SAM_RUN.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      MESSAGE i000 with 'Execute SAM Run.'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'DREP_PB'.&lt;/P&gt;&lt;P&gt;      PERFORM SAM_REPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above code I'm calling the form SAM_REPORT when the Push button has the value 'DREP_PB'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the form SAM_REPORT, I have displaying a list which is not shown when the button is pressed. If I give a message there, a message window is shown but the list is not shown. Could you please tell me if i'm doing it wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Prabhakaran Paramasivan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jun 2005 20:25:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946102#M64231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-26T20:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: Display list  when pushbutton is pressed.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946103#M64232</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 created one program with following code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN PUSHBUTTON /10(20) TEXT-001 USER-COMMAND GO.

AT SELECTION-SCREEN.
 CASE SY-UCOMM.
  WHEN 'GO'.
    SUBMIT TEST2 AND RETURN.
 ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and second one which is called from the first one after button click:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; REPORT TEST2 .
  WRITE:/ 'Line 1'.
  WRITE:/ 'Line 2'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and it works...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krzys&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Jun 2005 22:58:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946103#M64232</guid>
      <dc:creator>krzysztof_konitz4</dc:creator>
      <dc:date>2005-06-26T22:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: Display list  when pushbutton is pressed.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946104#M64233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krzys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your suggestion, but I don't want to create a new program to display the report. I have the list in the form, is there a way to do the same by calling the form. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Prabhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 00:00:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946104#M64233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T00:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Display list  when pushbutton is pressed.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946105#M64234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this one&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/selscr/but_buttons.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/selscr/but_buttons.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 03:54:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946105#M64234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T03:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Display list  when pushbutton is pressed.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946106#M64235</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;Check this sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : itab type standard table of mara.&lt;/P&gt;&lt;P&gt;select-options : s_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /10(20) TEXT-001 USER-COMMAND GO.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN .&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;WHEN 'GO'.&lt;/P&gt;&lt;P&gt;select * from mara into table itab where matnr = s_matnr.&lt;/P&gt;&lt;P&gt;set screen 9000.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module STATUS_9000 output.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; SET PF-STATUS 'xxxxxxxx'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; SET TITLEBAR 'xxx'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;...Make your ALV &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write statement won't work here.But you can use ALV by building fieldcatalog&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;endmodule.                 " STATUS_9000  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.If so,reward points.Otherwise,get back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 03:55:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946106#M64235</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-06-27T03:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Display list  when pushbutton is pressed.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946107#M64236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhakaran,&lt;/P&gt;&lt;P&gt;Please refer the standard program:  RPLICO10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise: See this sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b_2 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS s_fields FOR qpmk-mkmnr NO-DISPLAY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /1(24) name USER-COMMAND &amp;lt;b&amp;gt;flds&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b_2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  IF sscrfields-ucomm = '&amp;lt;b&amp;gt;FLDS&amp;lt;/b&amp;gt;'.&lt;/P&gt;&lt;P&gt;    PERFORM display_fields.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;******************&lt;/P&gt;&lt;P&gt;In the form:&lt;/P&gt;&lt;P&gt;  DATA:  v_rc LIKE sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:  BEGIN OF i_sort_tab OCCURS 0,&lt;/P&gt;&lt;P&gt;         fieldtext LIKE dntab-fieldtext,&lt;/P&gt;&lt;P&gt;         fieldname LIKE dynpread-fieldname,&lt;/P&gt;&lt;P&gt;         tabname   LIKE dntab-tabname,&lt;/P&gt;&lt;P&gt;         field     LIKE dntab-fieldname,&lt;/P&gt;&lt;P&gt;END OF i_sort_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_selecttab LIKE i_sort_tab OCCURS 3 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i_sort_tab-fieldtext = 'AAAA'.&lt;/P&gt;&lt;P&gt;  i_sort_tab-fieldname = 'C303'.&lt;/P&gt;&lt;P&gt;  i_sort_tab-tabname   = 'ZZZZ'.&lt;/P&gt;&lt;P&gt;  APPEND i_sort_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  i_sort_tab-fieldtext = 'BBBB'.&lt;/P&gt;&lt;P&gt;  i_sort_tab-fieldname = 'C304'.&lt;/P&gt;&lt;P&gt;  i_sort_tab-tabname   = 'QPMK'.&lt;/P&gt;&lt;P&gt;  APPEND i_sort_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'FIELD_CHOICE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      maxfields                       = c_max&lt;/P&gt;&lt;P&gt;      titel1                          = text-002&lt;/P&gt;&lt;P&gt;      titel2                          = text-003&lt;/P&gt;&lt;P&gt;      popuptitel                      = text-004&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NOTDELETEABLE                   =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   INFO_TEXT                      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYN_PUSHBUTTON_TEXT1            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYN_PUSHBUTTON_TEXT2            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYN_PUSHBUTTON_TEXT3            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NOSORT                          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      nomove                          = ' '&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INITIAL_SORT                    = 0&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      return_code                     = v_rc&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      fieldtabin                      = i_sort_tab&lt;/P&gt;&lt;P&gt;      selfields                       = i_selecttab&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXCEPT_TAB                      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     no_tab_field_input              = 1&lt;/P&gt;&lt;P&gt;     to_many_selfields_entries       = 2&lt;/P&gt;&lt;P&gt;     OTHERS                          = 3   .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT i_selecttab[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    REFRESH s_fields.&lt;/P&gt;&lt;P&gt;    LOOP AT i_selecttab INTO w_selecttab.&lt;/P&gt;&lt;P&gt;      s_fields-sign = 'I'.&lt;/P&gt;&lt;P&gt;      s_fields-option = 'EQ'.&lt;/P&gt;&lt;P&gt;      s_fields-low = w_selecttab-fieldname.&lt;/P&gt;&lt;P&gt;      APPEND s_fields.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anjali&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Anjali Devi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 04:04:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946107#M64236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T04:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Display list  when pushbutton is pressed.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946108#M64237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution to your question is quite simple. Look at the following code snippet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;parameters: p_test type i.

at selection-screen output.
  set pf-status 'TEST'.

start-of-selection.
  write p_test.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just make sure that you create a PF-STATUS in the menu painter. there should be one button on the application toolbar and the Function code for that has to be &amp;lt;b&amp;gt;ONLI&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jun 2005 04:13:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-list-when-pushbutton-is-pressed/m-p/946108#M64237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-27T04:13:36Z</dc:date>
    </item>
  </channel>
</rss>

