<?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 statement issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941299#M1487355</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;In AL11 transaction You'll be able to see upto 255 characters only. To see the complete file download it to presentation server using CG3Y transaction. Else, check the file directly in application server system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lakshman.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 May 2010 04:58:06 GMT</pubDate>
    <dc:creator>former_member209217</dc:creator>
    <dc:date>2010-05-12T04:58:06Z</dc:date>
    <item>
      <title>TRANSFER statement issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941296#M1487352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;task: upload a text file from desktop to unix&lt;/P&gt;&lt;P&gt;step 1. CALL FUNCTION 'GUI_UPLOAD'  upload desktop text file into it_tab&lt;/P&gt;&lt;P&gt;step 2. Open data set, Loop on it_tab into Field symbol&lt;/P&gt;&lt;P&gt;step 3. Transfer field symbol to output file path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;uploading a file is successful with each row 579 char&lt;/P&gt;&lt;P&gt;now it_tab has each row 579 char&lt;/P&gt;&lt;P&gt;when i try to transfer to opened file, it writes only 255 char&lt;/P&gt;&lt;P&gt;i tried length too, it didnt work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please advise&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of st_tab,&lt;/P&gt;&lt;P&gt;        line(3000) type c,&lt;/P&gt;&lt;P&gt;      end of st_tab.&lt;/P&gt;&lt;P&gt;data: it_tab type standard table of st_tab with header line,&lt;/P&gt;&lt;P&gt;  OPEN DATASET p_FILE FOR OUTPUT IN TEXT MODE.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;    LOOP AT it_tab ASSIGNING &amp;lt;lfs_outfile&amp;gt;.&lt;/P&gt;&lt;P&gt;DESCRIBE FIELD &amp;lt;lfs_outfile&amp;gt;  LENGTH lv_len.&lt;/P&gt;&lt;P&gt;    TRANSFER &amp;lt;lfs_outfile&amp;gt; TO p_FILE LENGTH lv_len.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;    WRITE: 'The report is written to unix file'.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    WRITE: 'The report output could not be written to unix file'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 May 2010 21:10:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941296#M1487352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-11T21:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: TRANSFER statement issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941297#M1487353</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;OPEN DATASET p_FILE FOR OUTPUT IN TEXT MODE.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;LOOP AT it_tab ASSIGNING &amp;lt;lfs_outfile&amp;gt;.&lt;/P&gt;&lt;P&gt;DESCRIBE FIELD &amp;lt;lfs_outfile&amp;gt; LENGTH lv_len.&lt;/P&gt;&lt;P&gt;TRANSFER &amp;lt;lfs_outfile&amp;gt; TO p_FILE LENGTH lv_len.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;WRITE: 'The report is written to unix file'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;WRITE: 'The report output could not be written to unix file'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While Transferring why u are using LENGTH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remove that try to transfer..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 May 2010 22:49:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941297#M1487353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-11T22:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: TRANSFER statement issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941298#M1487354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a display restriction of 255 chars when you open the file in AL11. But the whole file will be stored. To check this use the transaction CG3Y to download the file to the presentation server again and check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 04:49:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941298#M1487354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-12T04:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: TRANSFER statement issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941299#M1487355</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;In AL11 transaction You'll be able to see upto 255 characters only. To see the complete file download it to presentation server using CG3Y transaction. Else, check the file directly in application server system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lakshman.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 04:58:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941299#M1487355</guid>
      <dc:creator>former_member209217</dc:creator>
      <dc:date>2010-05-12T04:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: TRANSFER statement issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941300#M1487356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;guys&lt;/P&gt;&lt;P&gt;i appreciate your quick response, but in itab before i write, each row has 574char&lt;/P&gt;&lt;P&gt;once i transfer to unix file first 255 char is stored on appl server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as you suggested i downloaded the file to desktop and i see the same as i see on AL11,  data above 255 char got truncated&lt;/P&gt;&lt;P&gt;please advise&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 19:30:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941300#M1487356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-12T19:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: TRANSFER statement issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941301#M1487357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the value of LV_LEN after the DESCRIBE statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 19:38:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941301#M1487357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-12T19:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: TRANSFER statement issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941302#M1487358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LV_LEN gives me 574 hence i understand that itab has all the data from text file uploaded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 20:57:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-statement-issue/m-p/6941302#M1487358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-12T20:57:55Z</dc:date>
    </item>
  </channel>
</rss>

