<?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: general in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216657#M475378</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 diffence is, that int is only used for numbers and if you want to calculate with it. Char is only a text field with a special lenght.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nicole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 May 2007 09:03:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-08T09:03:12Z</dc:date>
    <item>
      <title>general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216656#M475377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am trying to create emloyee table if we give sno as char it is not showing any error but if we give it as integer then it is showing error why is it happening so can u plz tell me the reason.what is the diff  between char and integer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:01:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216656#M475377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216657#M475378</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 diffence is, that int is only used for numbers and if you want to calculate with it. Char is only a text field with a special lenght.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nicole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:03:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216657#M475378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216658#M475379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manjula,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; depending upon ur requiremnet, u can go for CHAR or INTEGER for a field of ur database table. as for ur case, the serial number field, "SNO" can be either character or integer. it's ur choice.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; is u use INT1, the length is predetermined  to be 3,&lt;/P&gt;&lt;P&gt;             INT2 - 5 length&lt;/P&gt;&lt;P&gt;             INT4 - 10 length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will work now in INT datatype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;viji.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:08:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216658#M475379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216659#M475380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What error  r u getting? can u specify?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHAR: Character string. Fields of type CHAR may have a maximum length of only 255 in tables. If longer character fields are to be used in tables, you must choose data type LCHR. There are no restrictions on the length of such fields in structures&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INT1: 1-byte integer between 0 and 255. The length is set to 3 places for this data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INT2: 2-byte integer between -32767 and 32767. Fields of this type should only be used for length fields. These long fields are positioned immediately in front of a long field (type LCHR, LRAW). With INSERT or UPDATE on the long field, the database interface enters the length which was actually used in the length field. The length is set to 5 places for this data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INT4: 4-byte integer between -2147483647 bis 2147483647. The length is set to 10 places for this data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Prajith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:10:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216659#M475380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216660#M475381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Character and Integer fields are entirely different. Character is of length 1 by default. You can declare as of lenght you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It might be giving an error in your case may be because you might be declaring the lenght as something other then the default lenght ... may be that is the error ... please try to remove the length you have declared and it will take the default length..... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be this will solve the problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jayant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:12:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216660#M475381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216661#M475382</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;&lt;/P&gt;&lt;P&gt;If First time Sno is created as char type, after activating, if you try to modify it   as int type it gives error.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Solution:&lt;/P&gt;&lt;P&gt;At the Menu in database tables: Go to &lt;DEL&gt;&amp;gt;Utilities&lt;/DEL&gt;&amp;gt;Database utilities--&amp;gt;Adjust and activate database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Rama chary.Pammi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:12:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216661#M475382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216662#M475383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi viji,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is u use INT1, the length is predetermined to be 3,&lt;/P&gt;&lt;P&gt;INT2 - 5 length&lt;/P&gt;&lt;P&gt;INT4 - 10 length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do u mean that if we declare int1 it accepts only 3 characters.plz help me to understand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 09:20:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/2216662#M475383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T09:20:42Z</dc:date>
    </item>
  </channel>
</rss>

