<?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: Output length Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333110#M1032357</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF gt_outfile OCCURS 0,&lt;/P&gt;&lt;P&gt;        outarea(5000),&lt;/P&gt;&lt;P&gt;END OF gt_outfile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and move the record &lt;/P&gt;&lt;P&gt;for eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gt_outfile = &amp;lt;record1&amp;gt;&lt;/P&gt;&lt;P&gt;append gt_file.&lt;/P&gt;&lt;P&gt;Hope this helps&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, 14 Aug 2008 08:27:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-14T08:27:17Z</dc:date>
    <item>
      <title>Output length Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333104#M1032351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am displaying output in output list. Each record has a length 600. So in output it is displaying only 255. How can I display length 600 in output. Already I declared output field as u201Coutput type stringu201Du2026Even though it is not displaying 600 length..&lt;/P&gt;&lt;P&gt;Please help it out.&lt;/P&gt;&lt;P&gt;&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, 14 Aug 2008 07:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333104#M1032351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T07:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: Output length Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333105#M1032352</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 split the text in 2 or three and display in three cols.&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 07:56:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333105#M1032352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T07:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Output length Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333106#M1032353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi KS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare a new variable as char length 600...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then pass the value to it ,,for dispaly...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as&lt;/P&gt;&lt;P&gt; data: g_value(600) type c.&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 08:01:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333106#M1032353</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2008-08-14T08:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Output length Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333107#M1032354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; if your output list has a length of 600 characters,declare a variable with length of 600 characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;data : v_length type char600.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once you declare this varible pass on the output list to this variable then you will get the entire output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;rashmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 08:11:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333107#M1032354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T08:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Output length Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333108#M1032355</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;first, you should use "LINE-SIZE" value to your report declaration :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you try this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  my_report LINE-SIZE 600 .&lt;/P&gt;&lt;P&gt;DATA v_line(600) TYPE c .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE v_line USING ' .' .  WRITE : / v_line .&lt;/P&gt;&lt;P&gt;{/code}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will create a window 600 cols wide, but the dot line will stop at 255 chars. If you use F1 key on "LINE-SIZE", you will read :&lt;/P&gt;&lt;P&gt;"For very wide lists (LINE-SIZE &amp;gt; 255), you should consult the notes for using LINE-SIZE greater than 255. "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe an alv would be more suitable ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 08:15:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333108#M1032355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T08:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: Output length Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333109#M1032356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you are writing data on to a file the trailing spaces will be cut off.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that your issue now?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes&lt;/P&gt;&lt;P&gt;and if you want to have 600 characters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare the variable with length 602&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the last 2 characters put cl_abap_char_utilities=&amp;gt;cr_lf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear the last but one character &lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;TRANSFER record TO file_name NO END OF LINE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Aug 2008 08:23:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333109#M1032356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T08:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Output length Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333110#M1032357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF gt_outfile OCCURS 0,&lt;/P&gt;&lt;P&gt;        outarea(5000),&lt;/P&gt;&lt;P&gt;END OF gt_outfile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and move the record &lt;/P&gt;&lt;P&gt;for eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gt_outfile = &amp;lt;record1&amp;gt;&lt;/P&gt;&lt;P&gt;append gt_file.&lt;/P&gt;&lt;P&gt;Hope this helps&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, 14 Aug 2008 08:27:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/output-length-problem/m-p/4333110#M1032357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-14T08:27:17Z</dc:date>
    </item>
  </channel>
</rss>

