<?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: Hi problem in down load the data while the value is blank in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-problem-in-down-load-the-data-while-the-value-is-blank/m-p/2913693#M685794</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;GUI_DOWNLOAD&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME                  = 'C:\Documents and Settings\999999\Desktop\demo.xls'&lt;/P&gt;&lt;P&gt;    FILETYPE                  =  'DBF'   &lt;/P&gt;&lt;P&gt;    WRITE_FIELD_SEPARATOR     = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   HEADER                    = '00'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   &amp;lt;b&amp;gt;TRUNC_TRAILING_BLANKS     = SPACE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   WRITE_LF                  = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CHANGING&lt;/P&gt;&lt;P&gt;    DATA_TAB                  = lt_datatab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Oct 2007 05:57:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-17T05:57:32Z</dc:date>
    <item>
      <title>Hi problem in down load the data while the value is blank</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-problem-in-down-load-the-data-while-the-value-is-blank/m-p/2913692#M685793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;while i am down loading the internal table data into application server .&lt;/P&gt;&lt;P&gt;for the last field in the internal table the value is blank .&lt;/P&gt;&lt;P&gt;after downloading the data into flat file .the blank value for the last field is igoring.&lt;/P&gt;&lt;P&gt;i want the row ending with the blank data(spaces) in each line in file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 05:48:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-problem-in-down-load-the-data-while-the-value-is-blank/m-p/2913692#M685793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T05:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Hi problem in down load the data while the value is blank</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-problem-in-down-load-the-data-while-the-value-is-blank/m-p/2913693#M685794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;GUI_DOWNLOAD&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME                  = 'C:\Documents and Settings\999999\Desktop\demo.xls'&lt;/P&gt;&lt;P&gt;    FILETYPE                  =  'DBF'   &lt;/P&gt;&lt;P&gt;    WRITE_FIELD_SEPARATOR     = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   HEADER                    = '00'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   &amp;lt;b&amp;gt;TRUNC_TRAILING_BLANKS     = SPACE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   WRITE_LF                  = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CHANGING&lt;/P&gt;&lt;P&gt;    DATA_TAB                  = lt_datatab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 05:57:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-problem-in-down-load-the-data-while-the-value-is-blank/m-p/2913693#M685794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T05:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Hi problem in down load the data while the value is blank</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-problem-in-down-load-the-data-while-the-value-is-blank/m-p/2913694#M685795</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;This is the Simple way you can download the ITAB with Tab delimiter: Check the Last field now...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : V_REC(200).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET P_FILE FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB INTO WA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Concatenate WA-FIELD1 WA-FIELD2 &lt;/P&gt;&lt;P&gt;         INTO V_REC &lt;/P&gt;&lt;P&gt;         SEPARATED BY CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TRANSFER V_REC TO P_FILE.&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;CLOSE DATASET P_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: if there are any Numeric fields ( Type I, P, F) In your ITAB then before CONCATENATE you have to Move them to Char fields ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if Helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 06:01:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-problem-in-down-load-the-data-while-the-value-is-blank/m-p/2913694#M685795</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-10-17T06:01:20Z</dc:date>
    </item>
  </channel>
</rss>

