<?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: ALV Excel output missing fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-excel-output-missing-fields/m-p/12134298#M1975411</link>
    <description>&lt;P&gt;Did you create ZSTANDARD by copying the standard status STANDARD from function group SALV?&lt;/P&gt;&lt;P&gt;What code did you add?&lt;/P&gt;</description>
    <pubDate>Tue, 31 Mar 2020 20:58:52 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2020-03-31T20:58:52Z</dc:date>
    <item>
      <title>ALV Excel output missing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-excel-output-missing-fields/m-p/12134297#M1975410</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;
  &lt;P&gt;The output grid list of FM REUSE_ALV_GRID_DISPLAY is displaied correctly with all fields visible.&lt;/P&gt;
  &lt;P&gt;Problem happens when I try to display ALV output by clicking button "Excel Sheet", there some fields disappear and no way to include them.&lt;/P&gt;
  &lt;P&gt;The issue occurs after having implemented a ZSTANDARD gui and related SET PF-STATUS as refhesh button was missing.&lt;/P&gt;
  &lt;P&gt;Any advice on what to check would be really appreciated&lt;/P&gt;
  &lt;P&gt;Thanks for your support.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 18:20:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-excel-output-missing-fields/m-p/12134297#M1975410</guid>
      <dc:creator>former_member657283</dc:creator>
      <dc:date>2020-03-31T18:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Excel output missing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-excel-output-missing-fields/m-p/12134298#M1975411</link>
      <description>&lt;P&gt;Did you create ZSTANDARD by copying the standard status STANDARD from function group SALV?&lt;/P&gt;&lt;P&gt;What code did you add?&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2020 20:58:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-excel-output-missing-fields/m-p/12134298#M1975411</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-03-31T20:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Excel output missing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-excel-output-missing-fields/m-p/12134299#M1975412</link>
      <description>&lt;P&gt;right Sandra, I have copied the STANDAND from SALV adding ICON_REFRESH in application toolbar and that is my snippet:&lt;/P&gt;&lt;P&gt;FORM zf_display_alv.&lt;BR /&gt;&lt;BR /&gt; CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;BR /&gt; EXPORTING&lt;BR /&gt; i_callback_program = sy-repid&lt;BR /&gt; i_callback_pf_status_set = 'SET_PF_STATUS'&lt;BR /&gt; i_callback_user_command = 'ALV_USER_COMMAND'&lt;BR /&gt; is_layout = gs_layout&lt;BR /&gt; it_fieldcat = gt_fieldcat[]&lt;BR /&gt; TABLES&lt;BR /&gt; t_outtab = tb_alv&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; program_error = 1&lt;BR /&gt; OTHERS = 2.&lt;BR /&gt;&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; MESSAGE ID '00' TYPE 'I' NUMBER 001&lt;BR /&gt; WITH 'REUSE_ALV_GRID_DISPLAY call error: ' sy-subrc.&lt;BR /&gt; RETURN.&lt;BR /&gt; ENDIF.&lt;BR /&gt;&lt;BR /&gt;ENDFORM.&lt;BR /&gt;&lt;BR /&gt;FORM set_pf_status USING rt_extab TYPE slis_t_extab.&lt;BR /&gt; SET PF-STATUS 'ZSTANDARD'. "Copy of standard ALV&lt;BR /&gt;ENDFORM.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Apr 2020 07:34:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-excel-output-missing-fields/m-p/12134299#M1975412</guid>
      <dc:creator>former_member657283</dc:creator>
      <dc:date>2020-04-01T07:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Excel output missing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-excel-output-missing-fields/m-p/12134300#M1975413</link>
      <description>&lt;P&gt;Actually, by copying status STANDARD_FULLSCREEN from program SAPLSLVC_FULLSCREEN solved my problem, just in case somebody will face same issue.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 07:36:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-excel-output-missing-fields/m-p/12134300#M1975413</guid>
      <dc:creator>former_member657283</dc:creator>
      <dc:date>2020-04-03T07:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Excel output missing fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-excel-output-missing-fields/m-p/12134301#M1975414</link>
      <description>&lt;P&gt;If you do a comment under a question/answer and you want to target someone else than the question/answer' author, the only solution is to copy/paste their hyperlinked name so that the person receives a warning (NB: @ doesn't work)&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 07:42:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-excel-output-missing-fields/m-p/12134301#M1975414</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-04-03T07:42:20Z</dc:date>
    </item>
  </channel>
</rss>

