<?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: reg. push buttons in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487865#M838631</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;it is possible in SALV. Try it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L.Velu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Mar 2008 10:30:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-10T10:30:56Z</dc:date>
    <item>
      <title>reg. push buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487861#M838627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   How to create pushbuttons in ALV Reports?.Rewards are helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Narasimha Rao.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2008 13:28:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487861#M838627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-08T13:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: reg. push buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487862#M838628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you mean within the report, have a look at&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/88/387f380c2f2e3ce10000009b38f8cf/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/88/387f380c2f2e3ce10000009b38f8cf/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want buttons on the main menu toolbar, then the PF-STATUS needs to be defined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2008 22:31:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487862#M838628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-08T22:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: reg. push buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487863#M838629</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;If you want create pushbuttons in Apllication Tool bar in ALV Report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First create PF Status with required buttons in Application ToolBar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. For ALV Function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create a subroutine  with name SET_PF_STATUS.&lt;/P&gt;&lt;P&gt;in that subroutine you declare the PF status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&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 = gd_repid&lt;/P&gt;&lt;P&gt;i_callback_top_of_page = 'TOP-OF-PAGE'&lt;/P&gt;&lt;P&gt;i_callback_pf_status_set = 'SET_PF_STATUS' "see FORM &lt;/P&gt;&lt;P&gt;is_layout = gd_layout&lt;/P&gt;&lt;P&gt;it_fieldcat = fieldcatalog[]&lt;/P&gt;&lt;P&gt;i_save = 'X'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;t_outtab = it_ekko&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;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM SET_PF_STATUS * &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;FORM set_pf_status USING rt_extab TYPE slis_t_extab.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'ZNEWSTATUS'.&lt;/P&gt;&lt;P&gt;"Copy of 'STANDARD' pf_status from fgroup SALV&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.For ALV Methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call screen 100.&lt;/P&gt;&lt;P&gt;in the process before output, call pf status&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process before output.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'ZNEWSTATUS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solve your problem.&lt;/P&gt;&lt;P&gt;Reward points .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 06:04:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487863#M838629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T06:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: reg. push buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487864#M838630</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;&lt;/P&gt;&lt;P&gt;ALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              i_callback_program       = ws_repid&lt;/P&gt;&lt;P&gt;              i_callback_pf_status_set = 'GUI_STAT1'&lt;/P&gt;&lt;P&gt;              i_callback_user_command  = 'STAT'&lt;/P&gt;&lt;P&gt;              is_layout                = gs_layout&lt;/P&gt;&lt;P&gt;              it_fieldcat              = i_fieldcat[]&lt;/P&gt;&lt;P&gt;              it_sort                  = wa_sort1&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;              t_outtab                 = i_zaw_pol_plan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM gui_stat1 USING rt_extab TYPE slis_t_extab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'STANDARD1' EXCLUDING rt_extab.&lt;/P&gt;&lt;P&gt;  SET TITLEBAR text-005.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;double click on 'STANDARD1' expand the application toolbar add buuton Fcode ,Icon .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 09:57:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487864#M838630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T09:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: reg. push buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487865#M838631</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;it is possible in SALV. Try it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L.Velu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 10:30:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487865#M838631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T10:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: reg. push buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487866#M838632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want create pushbuttons in Apllication Tool bar in ALV Report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First create PF Status with required buttons in Application ToolBar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. For ALV Function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create a subroutine with name SET_PF_STATUS.&lt;/P&gt;&lt;P&gt;in that subroutine you declare the PF status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------------" /&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 = gd_repid&lt;/P&gt;&lt;P&gt;i_callback_top_of_page = 'TOP-OF-PAGE'&lt;/P&gt;&lt;P&gt;i_callback_pf_status_set = 'SET_PF_STATUS' "see FORM &lt;/P&gt;&lt;P&gt;is_layout = gd_layout&lt;/P&gt;&lt;P&gt;it_fieldcat = fieldcatalog[]&lt;/P&gt;&lt;P&gt;i_save = 'X'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;t_outtab = it_ekko&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM SET_PF_STATUS *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------------" /&gt;&lt;P&gt;FORM set_pf_status USING rt_extab TYPE slis_t_extab.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'ZNEWSTATUS'.&lt;/P&gt;&lt;P&gt;"Copy of 'STANDARD' pf_status from fgroup SALV&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.For ALV Methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call screen 100.&lt;/P&gt;&lt;P&gt;in the process before output, call pf status&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process before output.&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'ZNEWSTATUS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solve your problem.&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 11:23:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-push-buttons/m-p/3487866#M838632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T11:23:05Z</dc:date>
    </item>
  </channel>
</rss>

