<?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 dowload spreadsheet in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620318#M872175</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;Just go to MB51 to get some exportable list. After that enter command &amp;amp;RESET_EXCEL into SAP command filed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should get message Excel setting ware reset &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 May 2010 08:55:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-18T08:55:29Z</dc:date>
    <item>
      <title>ALV dowload spreadsheet</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620314#M872171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When download the data in excel from ALV_GRID (path LIST EXPORT- SPREADSHEET) display POP-UP of chosen if I choose "Always Use Selected Format", as I can cancel the choice to the next one I use.                       &lt;/P&gt;&lt;P&gt;I use transaction CJI3 for example.&lt;/P&gt;&lt;P&gt;Thank for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Giampiero&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 13:24:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620314#M872171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T13:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: ALV dowload spreadsheet</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620315#M872172</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;Use the function module SAP_CONVERT_TO_XLS_FORMAT to download the internal table to an excel file.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_file LIKE rlgrap-filename DEFAULT 'c:\tmp\test.xls'.&lt;/P&gt;&lt;P&gt;DATA: t100_Lines TYPE STANDARD TABLE OF t001 WITH DEFAULT KEY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM t001 INTO TABLE t100_Lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SAP_CONVERT_TO_XLS_FORMAT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    i_filename     = p_file&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    i_tab_sap_data = t100_Lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards if helpful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shambhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 13:32:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620315#M872172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T13:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: ALV dowload spreadsheet</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620316#M872173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi use this ...ths is also similar coding...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report  z_vishvas_alv1.&lt;/P&gt;&lt;P&gt;type-pools: slis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of i_outtab occurs 0.&lt;/P&gt;&lt;P&gt;        include structure sflight.&lt;/P&gt;&lt;P&gt;data:   w_chk type c.                  "For multiple selection&lt;/P&gt;&lt;P&gt;data: end of i_outtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      I_OUTTAB TYPE SFLIGHT OCCURS 0,&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_private type slis_data_caller_exit,&lt;/P&gt;&lt;P&gt;      i_selfield type slis_selfield,&lt;/P&gt;&lt;P&gt;      w_exit(1) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_title type sy-title.&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;  select * from sflight into table i_outtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'REUSE_ALV_POPUP_TO_SELECT'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            i_title                 = p_title&lt;/P&gt;&lt;P&gt;            i_selection             = 'X'&lt;/P&gt;&lt;P&gt;            i_zebra                 = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          I_SCREEN_START_COLUMN   = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          I_SCREEN_START_LINE     = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          I_SCREEN_END_COLUMN     = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          I_SCREEN_END_LINE       = 0&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            i_checkbox_fieldname    = 'W_CHK'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          I_LINEMARK_FIELDNAME    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          I_SCROLL_TO_SEL_LINE    = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            i_tabname               = 'I_OUTTAB'&lt;/P&gt;&lt;P&gt;            i_structure_name        = 'SFLIGHT'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          IT_FIELDCAT             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          IT_EXCLUDING            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          I_CALLBACK_PROGRAM      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          I_CALLBACK_USER_COMMAND =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IS_PRIVATE             = I_PRIVATE&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     importing&lt;/P&gt;&lt;P&gt;            es_selfield             = i_selfield&lt;/P&gt;&lt;P&gt;            e_exit                  = w_exit&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            t_outtab                = i_outtab&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;  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 i000(0k) WITH sy-subrc.&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;*****the internal table is modified with a cross sign for marking the&lt;/P&gt;&lt;P&gt;***rows selected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at i_outtab where w_chk = 'X'.&lt;/P&gt;&lt;P&gt;    write: /  i_outtab-carrid, i_outtab-price.&lt;/P&gt;&lt;P&gt;  endloop.&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;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 13:32:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620316#M872173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T13:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: ALV dowload spreadsheet</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620317#M872174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your help, but i don't modify a standard transaction.&lt;/P&gt;&lt;P&gt;you know a method in order to cancel the choice of flag in transaction ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thaks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Giampiero&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 13:36:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620317#M872174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-25T13:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: ALV dowload spreadsheet</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620318#M872175</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;Just go to MB51 to get some exportable list. After that enter command &amp;amp;RESET_EXCEL into SAP command filed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should get message Excel setting ware reset &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 08:55:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620318#M872175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-18T08:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: ALV dowload spreadsheet</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620319#M872176</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;try report: SALV_BS_ADMIN_MAINTAIN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 09:32:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-dowload-spreadsheet/m-p/3620319#M872176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-18T09:32:32Z</dc:date>
    </item>
  </channel>
</rss>

