<?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: Button in basic list in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444131#M827135</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Sorry for Later Reply.  now it is clear that you want the button in List . but where Following answer may help you Please refer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. At Selection Screen itself&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION. &lt;/P&gt;&lt;P&gt;   PF-STATUS 'MAIN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. At First List.  : Before Writ statment of List.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set pf-status 'SECND'&lt;/P&gt;&lt;P&gt;LOOP at itab&lt;/P&gt;&lt;P&gt;  write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; itab-matnr.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Send and onwards.&lt;/P&gt;&lt;P&gt;   Same for Onward All List&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;Swati...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Feb 2008 08:03:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-13T08:03:55Z</dc:date>
    <item>
      <title>Button in basic list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444125#M827129</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 want to set a button in basic list of a transaction,&lt;STRONG&gt;not an ALV&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't want to see the button in the detail list. How should i set this and where. Ideally where should  &lt;U&gt;pf-status&lt;/U&gt;  be set in ?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Answers will be  rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Varun Mathur&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Varun Mathur on Feb 12, 2008 7:42 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 05:12:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444125#M827129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T05:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Button in basic list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444126#M827130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Varun Mathur&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try &lt;STRONG&gt;set pf-status 'STAT'  EXCLUDING fcode&lt;/STRONG&gt; syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: fcode TYPE TABLE OF sy-ucomm,&lt;/P&gt;&lt;P&gt;      wa_fcode TYPE sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fcode = 'FC1 '. APPEND wa_fcode TO fcode.&lt;/P&gt;&lt;P&gt;  wa_fcode = 'FC2 '. APPEND wa_fcode TO fcode.&lt;/P&gt;&lt;P&gt;  wa_fcode = 'FC3 '. APPEND wa_fcode TO fcode.&lt;/P&gt;&lt;P&gt;  wa_fcode = 'FC4 '. APPEND wa_fcode TO fcode.&lt;/P&gt;&lt;P&gt;  wa_fcode = 'FC5 '. APPEND wa_fcode TO fcode.&lt;/P&gt;&lt;P&gt;  wa_fcode = 'PICK'. APPEND wa_fcode TO fcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'TEST'.&lt;/P&gt;&lt;P&gt;  WRITE: 'PF-Status:', sy-pfkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-lsind = 20.&lt;/P&gt;&lt;P&gt;    SET PF-STATUS 'TEST' EXCLUDING fcode.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE: 'Line-Selection, SY-LSIND:', sy-lsind,&lt;/P&gt;&lt;P&gt;       / '                SY-PFKEY:', sy-pfkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-lsind = 20.&lt;/P&gt;&lt;P&gt;      SET PF-STATUS 'TEST' EXCLUDING fcode.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WRITE: 'User-Command, SY-LSIND:', sy-lsind,&lt;/P&gt;&lt;P&gt;         / '              SY-UCOMM:', sy-ucomm,&lt;/P&gt;&lt;P&gt;         / '              SY-PFKEY:', sy-pfkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plzz reward if it is useful,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mahi&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 05:21:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444126#M827130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T05:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: Button in basic list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444127#M827131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, &lt;/P&gt;&lt;P&gt;   check this program. in this the basic list has the gui and not the detail list...here the detail list is done using alv..dont worry abt that.&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;report  z_banks1_rp1.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TABLE&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : zacc_master2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TYPE-POOLS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools slis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;P&gt;*INTERNAL TABLE&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : itab like zacc_master2 occurs 0 with header line.&lt;/P&gt;&lt;P&gt;data : itab1 like zacc_master2 occurs 0 with header line.&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DATA&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : gt_fcat type slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;       fcat like line of gt_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : check type c length 1,&lt;/P&gt;&lt;P&gt;       wa type c length 20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from zacc_master2 into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write : '       ACCOUNT NUMBER' intensified color 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: / check as checkbox, itab-zaccno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hide : itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;START OF SELECTION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set pf-status 'ZMBANKS1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;AT LINE SELECTION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at line-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;AT USER-COMMAND&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at user-command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'SUBMIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do.&lt;/P&gt;&lt;P&gt;read line sy-index field value check itab-zaccno into wa.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;elseif check = 'X'.&lt;/P&gt;&lt;P&gt;read table itab with key zaccno = wa.&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;move-corresponding itab to itab1.&lt;/P&gt;&lt;P&gt;append itab1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CALLING SUB-ROUTINE&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CALLING FUNCTION MODULE&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'REUSE_ALV_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;it_fieldcat = gt_fcat[]&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;t_outtab = itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'BACK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call screen 0002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*WHEN 'BACK1'.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*CALL SCREEN 0002.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&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;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SUB ROUTINE DECLARATION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fcat-seltext_l = 'ACCOUNT NUMBER'.&lt;/P&gt;&lt;P&gt;fcat-fieldname = 'ZACCNO'.&lt;/P&gt;&lt;P&gt;fcat-tabname = 'ITAB1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append fcat to gt_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fcat-seltext_l = 'CUSTOMER ID'.&lt;/P&gt;&lt;P&gt;fcat-fieldname = 'ZCUSTID'.&lt;/P&gt;&lt;P&gt;fcat-tabname = 'ITAB1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append fcat to gt_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fcat-seltext_l = 'ACCOUNT TYPE'.&lt;/P&gt;&lt;P&gt;fcat-fieldname = 'ZACCTYPE'.&lt;/P&gt;&lt;P&gt;fcat-tabname = 'ITAB1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append fcat to gt_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fcat-seltext_l = 'ACCOUNT BALANCE'.&lt;/P&gt;&lt;P&gt;fcat-fieldname = 'ZBAL'.&lt;/P&gt;&lt;P&gt;fcat-tabname = 'ITAB1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append fcat to gt_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fcat-seltext_l = 'ACCOUNT CREATED DATE'.&lt;/P&gt;&lt;P&gt;fcat-fieldname = 'ZACCDATE'.&lt;/P&gt;&lt;P&gt;fcat-tabname = 'ITAB1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append fcat to gt_fcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fcat-seltext_l = 'STATUS'.&lt;/P&gt;&lt;P&gt;fcat-fieldname = 'ZSTAT'.&lt;/P&gt;&lt;P&gt;fcat-tabname = 'ITAB1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append fcat to gt_fcat.&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;Please reward if it is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt; sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 05:39:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444127#M827131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T05:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Button in basic list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444128#M827132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Where you want the push button you have not define. Well there are two way where you can do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In Screen &lt;/P&gt;&lt;P&gt;    A.  With PF-Status.&lt;/P&gt;&lt;P&gt;    B.  by Screen painter (Must have to give function code for the same)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Selection Screen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    A. With Pf Status &lt;/P&gt;&lt;P&gt;    B.  SELECTION-SCREEN PUSHBUTTON fmt name USER-COMMAND ucom. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. In a List&lt;/P&gt;&lt;P&gt;  A. Only With PF Status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Swati..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 06:53:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444128#M827132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T06:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Button in basic list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444129#M827133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want the button to show up in the basic list (first list that shows up). I have tried the set pf-status in the start of selection, but it did'nt work. So i have directly put it in the code for outputting the list. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another thing i have tried is the excluding with pf-status but with no success.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 07:02:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444129#M827133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T07:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: Button in basic list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444130#M827134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;in the pf-status u will declare push button.&lt;/P&gt;&lt;P&gt;at line-selection.&lt;/P&gt;&lt;P&gt; if sy-lisnd eq 0.&lt;/P&gt;&lt;P&gt; set pf-status 'MAIN'.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt;Plzz reward points if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 07:07:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444130#M827134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T07:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Button in basic list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444131#M827135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Varun.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Sorry for Later Reply.  now it is clear that you want the button in List . but where Following answer may help you Please refer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. At Selection Screen itself&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION. &lt;/P&gt;&lt;P&gt;   PF-STATUS 'MAIN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. At First List.  : Before Writ statment of List.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set pf-status 'SECND'&lt;/P&gt;&lt;P&gt;LOOP at itab&lt;/P&gt;&lt;P&gt;  write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; itab-matnr.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Send and onwards.&lt;/P&gt;&lt;P&gt;   Same for Onward All List&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;Swati...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 08:03:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444131#M827135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T08:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Button in basic list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444132#M827136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for ur reply. That means in any event u can set pf-satus in. &lt;/P&gt;&lt;P&gt;i have set it in start of selection. though i think top-of-page can also be used. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 11:48:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/button-in-basic-list/m-p/3444132#M827136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T11:48:20Z</dc:date>
    </item>
  </channel>
</rss>

