<?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 - Restrict 72charact in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764678#M1583971</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TDFORMAT = '*', means new line started in text&lt;/P&gt;&lt;P&gt;TDFORMAT = '=' means the text is in continuation with the previous line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can build an additional logic by looping the return table of the READ_TEXT and checking the TDFORMAT values.&lt;/P&gt;&lt;P&gt;Hope this will solve your purpose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Apr 2011 09:51:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-04-12T09:51:14Z</dc:date>
    <item>
      <title>READ_TEXT - Restrict 72charact</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764675#M1583968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, everyone!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use "READ-TEXT" function read long text.&lt;/P&gt;&lt;P&gt;but result is at 72width, automatic change line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that max 132 width in line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i don't know how to setting it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 08:16:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764675#M1583968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-12T08:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT - Restrict 72charact</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764676#M1583969</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;Maybe the text was saved as 73 char. long.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ernesto.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 08:24:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764676#M1583969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-12T08:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT - Restrict 72charact</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764677#M1583970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friend you need to set the table to type TLINE_T. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example code : &lt;/P&gt;&lt;P&gt;  DATA: lt_lines  TYPE tline_t.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      lines                   = lt_lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that you can loop the contents into the table which you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT lt_lines INTO &amp;lt;work_area&amp;gt; WHERE tdformat NE '/*'.&lt;/P&gt;&lt;P&gt;    APPEND &amp;lt;work_are&amp;gt;-tdline TO &amp;lt;internal_tab&amp;gt;.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Sri Hari Anand Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 09:27:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764677#M1583970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-12T09:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT - Restrict 72charact</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764678#M1583971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TDFORMAT = '*', means new line started in text&lt;/P&gt;&lt;P&gt;TDFORMAT = '=' means the text is in continuation with the previous line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can build an additional logic by looping the return table of the READ_TEXT and checking the TDFORMAT values.&lt;/P&gt;&lt;P&gt;Hope this will solve your purpose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 09:51:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764678#M1583971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-12T09:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT - Restrict 72charact</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764679#M1583972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can define like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA itab LIKE tline OCCURS 0 WITH HEADER LINE.


 CALL FUNCTION 'READ_TEXT'
    EXPORTING

      id                            = '0001'
      language                      = 'E'
      name                          = name
      object                        = 'VBBK'
    TABLES
      lines                         = itab
   EXCEPTIONS
     id                            = 1
     language                      = 2
     name                          = 3
     not_found                     = 4
     object                        = 5
     reference_check               = 6
     wrong_access_to_archive       = 7
     OTHERS                        = 8.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 10:47:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764679#M1583972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-12T10:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT - Restrict 72charact</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764680#M1583973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps it is older text, stored in earlier SAP versions?  One thing that I have done is to concatenate all the appropriate lines into a string separated by a space, then call function module  RKD_WORD_WRAP, specifying the length I want the text parsed into a table or set of up to three lines of text....This will give me the length I want with a "natural" break on word boundaries.  So regardless of how text was stored, I can put the text into any desired length.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 13:33:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764680#M1583973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-12T13:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT - Restrict 72charact</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764681#M1583974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Krupaji, that BS post deserves a comment, but since I can't make mine polite enough, I'll hope for moderator comment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 13:35:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764681#M1583974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-12T13:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT - Restrict 72charact</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764682#M1583975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have build an additional logic by looping the return table of the READ_TEXT and checking the TDFORMAT values to solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks everyone!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 04:49:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764682#M1583975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-13T04:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT - Restrict 72charact</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764683#M1583976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TDFORMAT = '*', means new line started in text&lt;/P&gt;&lt;P&gt;TDFORMAT = '=' means the text is in continuation with the previous line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can build an additional logic by looping the return table of the READ_TEXT and checking the TDFORMAT values.&lt;/P&gt;&lt;P&gt;Hope this will solve your purpose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2011 05:18:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764683#M1583976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-13T05:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT - Restrict 72charact</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764684#M1583977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should check the TTXOB table. It contains the settings for the long text objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text object        VBBK&lt;/P&gt;&lt;P&gt;Backup mode        V&lt;/P&gt;&lt;P&gt;Editor application TN&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Line width          72&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Style&lt;/P&gt;&lt;P&gt;Form               SYSTEM&lt;/P&gt;&lt;P&gt;Text format&lt;/P&gt;&lt;P&gt;Include object&lt;/P&gt;&lt;P&gt;Description        Sales     Header texts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the 'FORMAT_TEXTLINES' function to change the text length, e.g.:&lt;/P&gt;&lt;P&gt;  call function &lt;STRONG&gt;'FORMAT_TEXTLINES'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            formatwidth = 132&lt;/P&gt;&lt;P&gt;            linewidth   = 132&lt;/P&gt;&lt;P&gt;            startline   = 1&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            lines       = it_text  "the text you got with READ_TEXT function&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            others      = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Adorjan Cser on Aug 19, 2011 12:54 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Aug 2011 18:03:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-restrict-72charact/m-p/7764684#M1583977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-18T18:03:12Z</dc:date>
    </item>
  </channel>
</rss>

