<?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: less fields in text file on application server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353629#M1399241</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the line length extends 255 characters i am afraid its not possible to display the whole content in AL11. Why dont you get the AL11 data into a internal table use READ DATASET and write it to display?&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>Tue, 08 Dec 2009 11:07:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-08T11:07:57Z</dc:date>
    <item>
      <title>less fields in text file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353624#M1399236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created one report which downloads text file on application server, but when i am seeing output in text format on application server i am getting less number of fields . So i want to know whether there is restriction when we download files in text format on application server?? ...and if there is, can you please tell me how to extend the length so that i can see all my data??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 10:34:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353624#M1399236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T10:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: less fields in text file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353625#M1399237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Could you share your code with us?&lt;/P&gt;&lt;P&gt;When I faced a similar problem, I always passed a wrong internal table to the download part... &lt;/P&gt;&lt;P&gt;You might check out the table names as well.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 10:41:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353625#M1399237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T10:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: less fields in text file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353626#M1399238</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;My code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: W_LOGPATH(100) TYPE C VALUE 'zv206d.txt'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : BEGIN OF IT_OUTTAB OCCURS 0,&lt;/P&gt;&lt;P&gt;         LINE(5000) TYPE C,&lt;/P&gt;&lt;P&gt;       END OF IT_OUTTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form download.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     loop at it_display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          it_outtab = it_display.&lt;/P&gt;&lt;P&gt;          append it_outtab.&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;  OPEN DATASET W_LOGPATH FOR OUTPUT IN TEXT MODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT IT_OUTTAB.&lt;/P&gt;&lt;P&gt;      TRANSFER IT_OUTTAB-LINE TO W_LOGPATH.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WRITE:/ 'Error in opening the Logical File Path'.&lt;/P&gt;&lt;P&gt;    LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLOSE DATASET W_LOGPATH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF IT_OUTTAB[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    WRITE:/ 'No data found for the sel.criteria'.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    WRITE:/ 'Transaction executed successfully'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH IT_OUTTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;it_display is an internal table which contains all the data .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 10:46:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353626#M1399238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T10:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: less fields in text file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353627#M1399239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are viewing the file in AL11 there is a display limitation of 255 characters even though the whole data is written to the file. To confirm this use &lt;STRONG&gt;CG3Y&lt;/STRONG&gt; and download the file to presentation server and check if the data is still missing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 10:47:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353627#M1399239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T10:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: less fields in text file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353628#M1399240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikranth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually our requirement is quite different, we are trying to access that whole text file on application server and displaying it on our local intranet. So is there any possible way so that i can view that whole file through AL11 only?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 11:04:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353628#M1399240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T11:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: less fields in text file on application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353629#M1399241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the line length extends 255 characters i am afraid its not possible to display the whole content in AL11. Why dont you get the AL11 data into a internal table use READ DATASET and write it to display?&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>Tue, 08 Dec 2009 11:07:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/less-fields-in-text-file-on-application-server/m-p/6353629#M1399241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T11:07:57Z</dc:date>
    </item>
  </channel>
</rss>

