<?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: Issue with adding Long charater field in custom table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190844#M1374608</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;you can declare any field length of table upto 512 character length. add one more field called counter and split your url and save it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Oct 2009 14:06:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-06T14:06:53Z</dc:date>
    <item>
      <title>Issue with adding Long charater field in custom table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190841#M1374605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have added a URL ( Internet address ) field ZZSSOURIADDR with data element AD_URI whose domain is long character and length 2048.On activation table gives an message in a log&lt;/P&gt;&lt;P&gt;   Field ZZSSOURIADDR does not have a preceding length field of type INT4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What needs to be done to remove this error?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 11:13:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190841#M1374605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T11:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with adding Long charater field in custom table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190842#M1374606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As specified in SAP documentation, this must be the last field, and the previous one must be the actual length field type INT2. (suggestion: use data element AD_URILNG)&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;LCHR: Character string of any length, but has to be declared with a minimum of 256 characters. Fields of this type must be located at the end of transparent tables (in each table there can be only one such field) and &lt;STRONG&gt;must be preceded by a length field of type INT2.&lt;/STRONG&gt; If there is an INSERT or UPDATE in ABAP programs, this length field must be filled with the length actually required. If the length field is not filled correctly, this may lead to a data loss in the LCHR field! A fields of this type cannot be used in the WHERE condition of a SELECT statement.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;If error message wasn't clear enough, then try a where-used in transparent table of the data element AD_URI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NB: You could also use in your development the central address, actual URL would be stored in ADR12 and only ADRNR is in your custom database table, more development (look for BAPI BUPA) but smaller database.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 11:39:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190842#M1374606</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-10-01T11:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with adding Long charater field in custom table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190843#M1374607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; String data type is generally used for long character fields.So just use String data type instead of Char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2009 11:00:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190843#M1374607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-05T11:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with adding Long charater field in custom table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190844#M1374608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;you can declare any field length of table upto 512 character length. add one more field called counter and split your url and save it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2009 14:06:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190844#M1374608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-06T14:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with adding Long charater field in custom table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190845#M1374609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;String data type is used for long character data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For mass data , RAW data type is used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2009 07:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190845#M1374609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-07T07:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with adding Long charater field in custom table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190846#M1374610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should add a new field (just before the LCHR data typed field) which has int2 data type.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Akin Ozak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2009 12:16:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190846#M1374610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-24T12:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with adding Long charater field in custom table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190847#M1374611</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;Try out this option,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In your custom table create a field for GUID&lt;/P&gt;&lt;P&gt;2. Generate a guid using function module GENERATE_GUID.&lt;/P&gt;&lt;P&gt;3. Save the text using function module SAVE_TEXT by generated guid and store the guid in your table.&lt;/P&gt;&lt;P&gt;4. Function module READ_TEXT is used to display the text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kalp..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2009 09:15:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-adding-long-charater-field-in-custom-table/m-p/6190847#M1374611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-25T09:15:23Z</dc:date>
    </item>
  </channel>
</rss>

