<?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 Reading Textpool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-textpool/m-p/5294271#M1221141</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;I am facing a problem with READ TEXTPOOL... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF t_pool OCCURS 0.&lt;/P&gt;&lt;P&gt;       INCLUDE STRUCTURE textpool.&lt;/P&gt;&lt;P&gt;DATA: END OF t_pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_repid LIKE trdir-name,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TEXTPOOL p_repid INTO t_pool LANGUAGE syst-langu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In text elements we have ordinary length and maximum length. Now, as TEXTPOOL structure has no maximum length, t_pool is getting only ordinary length and hence when I create textelements through t_pool, it's giving even maximum length same as ordinary length. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to fetch both ordinary and maximum lengths as provided in the program. Is there any way to so that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Mar 2009 02:07:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-18T02:07:50Z</dc:date>
    <item>
      <title>Reading Textpool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-textpool/m-p/5294271#M1221141</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;I am facing a problem with READ TEXTPOOL... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF t_pool OCCURS 0.&lt;/P&gt;&lt;P&gt;       INCLUDE STRUCTURE textpool.&lt;/P&gt;&lt;P&gt;DATA: END OF t_pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_repid LIKE trdir-name,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TEXTPOOL p_repid INTO t_pool LANGUAGE syst-langu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In text elements we have ordinary length and maximum length. Now, as TEXTPOOL structure has no maximum length, t_pool is getting only ordinary length and hence when I create textelements through t_pool, it's giving even maximum length same as ordinary length. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to fetch both ordinary and maximum lengths as provided in the program. Is there any way to so that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 02:07:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-textpool/m-p/5294271#M1221141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T02:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Textpool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-textpool/m-p/5294272#M1221142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The READ TEXTPOOL gives back the maximum length in the field LENGTH. &lt;/P&gt;&lt;P&gt;You can calculate the actually used length by inspecting the string value in field ENTRY. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best wishes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 17:15:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-textpool/m-p/5294272#M1221142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T17:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Textpool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-textpool/m-p/5294273#M1221143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It's not considering maximum length for LENGTH, but is fetching defined length.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 01:54:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-textpool/m-p/5294273#M1221143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-19T01:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Textpool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-textpool/m-p/5294274#M1221144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ed,&lt;/P&gt;&lt;P&gt;Thanks a lot. You are right.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 02:03:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-textpool/m-p/5294274#M1221144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-19T02:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Textpool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-textpool/m-p/5294275#M1221145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;  se38-&amp;gt;text elements-&amp;gt;change&lt;/P&gt;&lt;P&gt;  you can see one text has two length of it. one is 'dlen' that is definition of it and you can not edit it, the  secondary is 'mlen' that is maximum of current text and you can set value of it 1&amp;lt;= current text&amp;lt;=132.&lt;/P&gt;&lt;P&gt;when you use 'READ TEXTPOOL' , you can get length of ENTRY. THIS LENGTH is 'mlen'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 02:30:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-textpool/m-p/5294275#M1221145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-19T02:30:39Z</dc:date>
    </item>
  </channel>
</rss>

