<?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 ALV List Display With a Pushbutton in the basic list in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-display-with-a-pushbutton-in-the-basic-list/m-p/4043424#M966530</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have displayed the po details in teh basic list. I have used the double clicking functionality. It worked well. Now instead of double clicking, i will place the cursor on the po and click a push button. then it should show the other details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone please guide me how to create the pushbuttons on the basic list ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jun 2008 11:45:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-12T11:45:32Z</dc:date>
    <item>
      <title>ALV List Display With a Pushbutton in the basic list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-display-with-a-pushbutton-in-the-basic-list/m-p/4043424#M966530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have displayed the po details in teh basic list. I have used the double clicking functionality. It worked well. Now instead of double clicking, i will place the cursor on the po and click a push button. then it should show the other details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone please guide me how to create the pushbuttons on the basic list ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 11:45:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-display-with-a-pushbutton-in-the-basic-list/m-p/4043424#M966530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T11:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: ALV List Display With a Pushbutton in the basic list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-display-with-a-pushbutton-in-the-basic-list/m-p/4043425#M966531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   You create your own GUI status.Pass the name of GUI status to FM &lt;STRONG&gt;REUSE_ALV_GRID_DISPLAY&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_callback_program      = sy-repid&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;&lt;U&gt;CALLBACK&lt;/U&gt;PF_STATUS_SET = 'PF'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      i_callback_user_command = 'USER_COMMAND'&lt;/P&gt;&lt;P&gt;      i_grid_title            = text-020&lt;/P&gt;&lt;P&gt;      is_layout               = wa_layout&lt;/P&gt;&lt;P&gt;      it_fieldcat             = it_fieldcat[]&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      t_outtab                = it_basic&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      program_error           = 1&lt;/P&gt;&lt;P&gt;      OTHERS                  = 2.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM PF.&lt;/P&gt;&lt;P&gt;SET PF_STATUS 'P1'.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On pressing that button go to secondary list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 11:48:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-display-with-a-pushbutton-in-the-basic-list/m-p/4043425#M966531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T11:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: ALV List Display With a Pushbutton in the basic list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-display-with-a-pushbutton-in-the-basic-list/m-p/4043426#M966532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;    Go to se41 , create pf-status and provide a button in the application tool bar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; then pass it to reuse_alv_list_display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and also write the coding in user_command event.&lt;/P&gt;&lt;P&gt;u can get all the events in reuse_alv_events_get or directly u can pass it to user_command parameter in reuse_alv_list_display.&lt;/P&gt;&lt;P&gt;Hope this solve ur problem.&lt;/P&gt;&lt;P&gt;Rgds.,&lt;/P&gt;&lt;P&gt;subash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 11:56:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-display-with-a-pushbutton-in-the-basic-list/m-p/4043426#M966532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T11:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: ALV List Display With a Pushbutton in the basic list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-display-with-a-pushbutton-in-the-basic-list/m-p/4043427#M966533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I Myself solved the issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 03:47:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-display-with-a-pushbutton-in-the-basic-list/m-p/4043427#M966533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T03:47:45Z</dc:date>
    </item>
  </channel>
</rss>

