<?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: tranSFER TO   notepad in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-to-notepad/m-p/4849132#M1134065</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 must be filling the final internal table in a loop right... if yes.. then do this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

loop at itab.
append itab to t_download.

clear: itab.

append itab to t_download.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here ITAB is the final internal table in your program...and T_DOWNLOAD is the internal table which is passed to the function module for downloading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB is an internal table with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do reply back..if you need more clarification..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Dec 2008 09:41:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-04T09:41:18Z</dc:date>
    <item>
      <title>tranSFER TO   notepad</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-to-notepad/m-p/4849128#M1134061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need a NEW LINE between each fields in the downloaded notepad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 09:31:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-to-notepad/m-p/4849128#M1134061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T09:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: tranSFER TO   notepad</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-to-notepad/m-p/4849129#M1134062</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;Use SKIP statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 09:33:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-to-notepad/m-p/4849129#M1134062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T09:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: tranSFER TO   notepad</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-to-notepad/m-p/4849130#M1134063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
data: it type table of string.

"in unicode system use this:
CONSTANTS con_cret(2) TYPE c VALUE cl_abap_char_utilities=&amp;gt;cr_lf.

"in non-unicode this one
CONSTANTS: con_cret TYPE x VALUE '0D',  

"now simply place it at the beginning of each line of table which you download
concatenate con_cret it into it.
append it.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 09:38:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-to-notepad/m-p/4849130#M1134063</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2008-12-04T09:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: tranSFER TO   notepad</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-to-notepad/m-p/4849131#M1134064</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 can do something like this&lt;/P&gt;&lt;P&gt;concatenate var1  into somevar.&lt;/P&gt;&lt;P&gt;for ex.&lt;/P&gt;&lt;P&gt;data: lv_tab type X value 09.&lt;/P&gt;&lt;P&gt;concatenate lv_tab  into string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 09:40:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-to-notepad/m-p/4849131#M1134064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T09:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: tranSFER TO   notepad</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-to-notepad/m-p/4849132#M1134065</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 must be filling the final internal table in a loop right... if yes.. then do this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

loop at itab.
append itab to t_download.

clear: itab.

append itab to t_download.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here ITAB is the final internal table in your program...and T_DOWNLOAD is the internal table which is passed to the function module for downloading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB is an internal table with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do reply back..if you need more clarification..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 09:41:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-to-notepad/m-p/4849132#M1134065</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T09:41:18Z</dc:date>
    </item>
  </channel>
</rss>

