<?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: Read_Text function Module not returning full text in a line in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318275#M1225901</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check item text going through standard SAP transaction. It might happen that this text is entered in two separate lines. Else I do not see you should get this error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Mar 2009 09:17:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-18T09:17:52Z</dc:date>
    <item>
      <title>Read_Text function Module not returning full text in a line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318273#M1225899</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;I am using Read_Text function module to retrieve long text entered for line item in AR Invoice.&lt;/P&gt;&lt;P&gt;The issue is that the lines returned in thead are not complete. &lt;/P&gt;&lt;P&gt;Example: &lt;/P&gt;&lt;P&gt;Line entered in Long Text is as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line Number one in the accounting document. Entered as 800 EUR including&lt;/P&gt;&lt;P&gt;VAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I check in debugging the lines returned by Read_Text is as below:&lt;/P&gt;&lt;P&gt;Line Number one in the accounting document. Entered as 800 EUR includi&lt;/P&gt;&lt;P&gt;VAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 'ng' of including in 1st line is not returned by read_text. The text 'ng' in line editor is placed in the position as shown below just after 7&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;....&lt;EM&gt;....1....&lt;/EM&gt;....2....&lt;EM&gt;....3....&lt;/EM&gt;....4....&lt;EM&gt;....5....&lt;/EM&gt;....6....+....7..&lt;/P&gt;&lt;P&gt;                                                                                ng&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly let me know if there is any way to get the whole line or a way in which we can restrict the line size alowed to enter till 7 only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 08:50:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318273#M1225899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T08:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: Read_Text function Module not returning full text in a line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318274#M1225900</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;Declare it_lines as below and use in code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

TYPES: BEGIN OF ws_tline.
        INCLUDE STRUCTURE tline.
TYPES: END OF ws_tline.


DATA:  it_lines TYPE ws_tline.

    CALL FUNCTION 'READ_TEXT'
      EXPORTING
*
*
      TABLES
        lines                         =  *it_lines*
*   EXCEPTIONS

              .
    IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reg,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 09:17:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318274#M1225900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T09:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: Read_Text function Module not returning full text in a line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318275#M1225901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check item text going through standard SAP transaction. It might happen that this text is entered in two separate lines. Else I do not see you should get this error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 09:17:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318275#M1225901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T09:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Read_Text function Module not returning full text in a line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318276#M1225902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your comments.&lt;/P&gt;&lt;P&gt;I have checked the item line. In place of item text a long text is maintained. It is this long text which needs to be displayed. I opened the long text and saw the saved lines. The word including does not spread to the next line, yet it is not retunred full in lines of thead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 06:58:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318276#M1225902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-19T06:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: Read_Text function Module not returning full text in a line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318277#M1225903</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;The issue is resolved. It was a basis setting error. Through basis settings the size of line returned in tline can be controlled. Sometimes after upgrade or unicode project the line size increases, if this happens then it needs to be reduced by the basis person.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2009 07:48:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318277#M1225903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-28T07:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Read_Text function Module not returning full text in a line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318278#M1225904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Abhishek!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Could you please provide me the solution for the basis setting .I am facing same problem in my program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2012 11:14:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module-not-returning-full-text-in-a-line/m-p/5318278#M1225904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-01T11:14:59Z</dc:date>
    </item>
  </channel>
</rss>

