<?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: pf-status in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283340#M497285</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;while filling pf status in ALV Function module,i think you gave pf-status same for all ALV Function module..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 May 2007 11:25:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-29T11:25:56Z</dc:date>
    <item>
      <title>pf-status</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283337#M497282</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;         i am using pf-status in an alv report.i want  to display kunnr name1 land1 in the first list and when i click in the sod icon set using pf-status it displays 2nd list and when i press on the vbeln it should take me to 3rd list.but both icons are getting displayed on the first screen.how could i avoid both the icons on the first screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 11:20:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283337#M497282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T11:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: pf-status</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283338#M497283</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 have set the PF-STATUS for the first screen itself in the main program , check whether it might be there for the Second List/screen also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 11:23:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283338#M497283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T11:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: pf-status</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283339#M497284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;In order modify PF_STATUS of ALV grid report you need to perform the following steps:
	1. Update 'REUSE_ALV_GRID_DISPLAY' FM call to include: 
				i_callback_pf_status_set = 'SET_PF_STATUS' statement.
	2. Create 'SET_PF_STATUS' FORM
	3. Create pf_status (i.e. 'ZNEWSTATUS'). 
	     - It is recommend that you copy standard status'STANDARD' from function group SALV
	       and modify it accordingly. ALV standard function codes always start with '&amp;amp;'.

 

 call function 'REUSE_ALV_GRID_DISPLAY'
       exporting
            i_callback_program      = gd_repid
            i_callback_top_of_page   = 'TOP-OF-PAGE'  
            i_callback_pf_status_set = 'SET_PF_STATUS'   "see FORM 
            is_layout               = gd_layout
            it_fieldcat             = fieldcatalog[]
            i_save                  = 'X'
       tables
            t_outtab                = it_ekko
       exceptions
            program_error           = 1
            others                  = 2.


 


 
*------------------------------------------------------------------*
*       FORM SET_PF_STATUS                                         *
*------------------------------------------------------------------*
FORM set_pf_status USING rt_extab TYPE slis_t_extab.
  SET PF-STATUS 'ZNEWSTATUS'. 
                  "Copy of 'STANDARD' pf_status from fgroup SALV
ENDFORM.

 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 11:24:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283339#M497284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T11:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: pf-status</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283340#M497285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;while filling pf status in ALV Function module,i think you gave pf-status same for all ALV Function module..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 11:25:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283340#M497285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T11:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: pf-status</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283341#M497286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Caution!!!!!! Use this line only if you want to show the save button&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;*on your screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      i_callback_pf_status_set          = 'PF_STATUS_SET'&lt;/P&gt;&lt;P&gt;****&lt;/P&gt;&lt;P&gt;       i_callback_user_command           = 'LINE_CLICK'&lt;/P&gt;&lt;P&gt;       i_callback_top_of_page            = 'TOP_ROUTINE'&lt;/P&gt;&lt;P&gt;      i_grid_title                      = text-h01&lt;/P&gt;&lt;P&gt;      is_layout                         = my_layout&lt;/P&gt;&lt;P&gt;      it_fieldcat                       = it_fieldcatalog&lt;/P&gt;&lt;P&gt;      it_sort                           = it_sort&lt;/P&gt;&lt;P&gt;      i_save                            = g_save&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    is_variant                        = lh_variant&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      t_outtab                          = itab_d " need to be changed&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;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " output&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;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  PF_STATUS_SET&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM pf_status_set USING rt_extab TYPE slis_t_extab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'STANDARD_FULLSCREEN' OF PROGRAM 'SAPLKKBL'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " pf_status_set&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 11:27:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283341#M497286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T11:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: pf-status</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283342#M497287</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;You have created only one status which contains both the icons in it. So for any screen to which you will assign this status, it will show both the icons whatever contained in that Status. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if u need that, that only one icon shud apper on one screen and 2 icons on another screen then u have to create 2 different status. One status with one icon and set it in ur main screen, Create another status with 2 icons and set it in the secondary list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&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;Harsha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2007 11:31:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pf-status/m-p/2283342#M497287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-29T11:31:03Z</dc:date>
    </item>
  </channel>
</rss>

