<?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: String larger than 255 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444175#M211046</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I1m looking at the field on debbuging, but I have a routine where I validate the length of the field with STRLEN (field_name) GT 255, and it doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx &lt;/P&gt;&lt;P&gt;Jesus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jun 2006 13:25:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-20T13:25:22Z</dc:date>
    <item>
      <title>String larger than 255</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444166#M211037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all. I need to fill a variable with more than 255 characters. I've created a custom domain with 500 length both on number of characters and output length. However, when I fill out the field, it only fills 255 chars, no more than that.&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx.&lt;/P&gt;&lt;P&gt;Jesus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 12:46:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444166#M211037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T12:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: String larger than 255</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444167#M211038</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;You can use Data type &amp;lt;b&amp;gt;LCHR&amp;lt;/b&amp;gt;, it can hold up to 32000 chars.&lt;/P&gt;&lt;P&gt;just see the domain&amp;lt;b&amp;gt; J_2ICHRL&amp;lt;/b&amp;gt; here LCHR is used.&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>Tue, 20 Jun 2006 12:52:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444167#M211038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T12:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: String larger than 255</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444168#M211039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jesus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you should use data type STRING instead of CHAR. Because CHAR has a certain limit of 255 even though we declare more than that it won't accept in such cases we have to go for STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;YJR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 12:56:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444168#M211039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T12:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: String larger than 255</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444169#M211040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you are on WAS6.10 or above you can use data type STRING &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 12:58:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444169#M211040</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-06-20T12:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: String larger than 255</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444170#M211041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all. Thanx for your answer, but i've tryed both with J_2ICHRL data element and STRING, and it's still not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx&lt;/P&gt;&lt;P&gt;Jesus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jesus Bohorquez&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 12:58:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444170#M211041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T12:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: String larger than 255</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444171#M211042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when you  LCHR data type , your table should also have another field of type i where you have to fill the size of the content.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 13:04:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444171#M211042</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-06-20T13:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: String larger than 255</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444172#M211043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what do you mean by still not working? not able to create the field - synatx error ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not able to fill data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 13:09:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444172#M211043</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-06-20T13:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: String larger than 255</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444173#M211044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It still only fill up to 255 chars&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 13:10:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444173#M211044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T13:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: String larger than 255</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444174#M211045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you are looking at the data in debugging , you will only see 255 characters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how do you fill the field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 13:20:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444174#M211045</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-06-20T13:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: String larger than 255</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444175#M211046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I1m looking at the field on debbuging, but I have a routine where I validate the length of the field with STRLEN (field_name) GT 255, and it doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx &lt;/P&gt;&lt;P&gt;Jesus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 13:25:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444175#M211046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T13:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: String larger than 255</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444176#M211047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jesus,&lt;/P&gt;&lt;P&gt;moving more than 255 chars into a String or c field with apporiate size should be no problem at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report test.
  data: txt type string, len type i.
  concatenate sy-ULine sy-ULine into txt. len = strlen( txt ).
  write: / len , txt.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I guess the problem is located in the fill logic. Could your please provide a small code excerpt?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx &lt;/P&gt;&lt;P&gt;  Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 17:28:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-larger-than-255/m-p/1444176#M211047</guid>
      <dc:creator>former_member183804</dc:creator>
      <dc:date>2006-06-20T17:28:56Z</dc:date>
    </item>
  </channel>
</rss>

