<?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: Problem using READ_TEXT function module... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399357#M193109</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;Yes you need to concatenate the all the lines , if you pass the parameters you will get all the text into it_tline table , loop that table and concatenate all the text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jun 2006 15:45:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-29T15:45:11Z</dc:date>
    <item>
      <title>Problem using READ_TEXT function module...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399353#M193105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to read a standard text using function module READ_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that function module we have a table parameter called lines which fetches the data in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: DATA:lt_lines LIKE tline OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;id       = 'ST'&lt;/P&gt;&lt;P&gt;language = 'EN'&lt;/P&gt;&lt;P&gt;name     = 'ZPACKING_SLIP_Description'&lt;/P&gt;&lt;P&gt;object   = 'TEXT'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;lines    = lt_lines&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;OTHERS   = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: T_PACKING_SLIP_Description  TYPE CHAR600.&lt;/P&gt;&lt;P&gt;T_PACKING_SLIP  = lt_lines-tdline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;But the problem is the data in the standard text is very big around 600 characters hence it gets cut since the tline-tdline character length is just 132 as defined in standard structure tline.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me how do I handle this issue. I want the whole standard text to get fetched and not just 132 length.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 15:27:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399353#M193105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T15:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using READ_TEXT function module...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399354#M193106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, I would suggest makeing your text within 132 characters per line.  I'm not sure what the sense is of having it 600.   THis wouldn't fit on a page anyway.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 15:31:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399354#M193106</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-29T15:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using READ_TEXT function module...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399355#M193107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Absolutely.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 15:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399355#M193107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T15:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using READ_TEXT function module...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399356#M193108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually I should have been more clear.&lt;/P&gt;&lt;P&gt;The whole standard text is of around 600 char. But its not like like in one complete line. Its splitted in different lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess I need to loop at internal table or contatenate the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tushar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 15:40:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399356#M193108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T15:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using READ_TEXT function module...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399357#M193109</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;Yes you need to concatenate the all the lines , if you pass the parameters you will get all the text into it_tline table , loop that table and concatenate all the text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 15:45:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399357#M193109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T15:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using READ_TEXT function module...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399358#M193110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tushar,&lt;/P&gt;&lt;P&gt;If you have a lot of text you can use a word wrap function to put it into line of a size you specify.&lt;/P&gt;&lt;P&gt;Function: RKD_WORD_WRAP and set OUTPUTLEN = 132. Detault in 35 characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 15:54:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399358#M193110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T15:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using READ_TEXT function module...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399359#M193111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, the return parameter LINES is an internal table, the text will be returned in multiple rows.  You will need to loop at that internal table and process accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought that text with line size of  600 was a little strange.  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 16:05:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-using-read-text-function-module/m-p/1399359#M193111</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-29T16:05:01Z</dc:date>
    </item>
  </channel>
</rss>

