<?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 Need substitute for INT2 data type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-substitute-for-int2-data-type/m-p/7284247#M1531903</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;Currently in my program..we have used a data type INT2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data type INT2 can hold only 5 characters at a time...with no commas in between and left Justified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I got a problem that..the variable which is declard with INT2 was getting populated with more than 5 charaters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it gettin dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I need to change the data type of that variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried declaring with INT4..or Char...all these data types are nt left justified and also have commas in between.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest a data type..which can hold morethan 5 characters..left justified n no commas in between.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem..in declaring  the variable as CHAR and manipulate it as required..is the variable which Im using in my program is called from a zstructure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I wanna modify it in the structure...then I need to change all the programs where the Zstructure is used..which I cant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So request you to help me...is there any data type..which would replace INT2 with more than 5 characters in it and also no cammas in between and should be left justified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Sep 2010 09:20:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-09-16T09:20:32Z</dc:date>
    <item>
      <title>Need substitute for INT2 data type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-substitute-for-int2-data-type/m-p/7284247#M1531903</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;Currently in my program..we have used a data type INT2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data type INT2 can hold only 5 characters at a time...with no commas in between and left Justified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I got a problem that..the variable which is declard with INT2 was getting populated with more than 5 charaters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it gettin dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I need to change the data type of that variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried declaring with INT4..or Char...all these data types are nt left justified and also have commas in between.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest a data type..which can hold morethan 5 characters..left justified n no commas in between.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem..in declaring  the variable as CHAR and manipulate it as required..is the variable which Im using in my program is called from a zstructure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I wanna modify it in the structure...then I need to change all the programs where the Zstructure is used..which I cant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So request you to help me...is there any data type..which would replace INT2 with more than 5 characters in it and also no cammas in between and should be left justified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Sep 2010 09:20:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-substitute-for-int2-data-type/m-p/7284247#M1531903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-16T09:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need substitute for INT2 data type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-substitute-for-int2-data-type/m-p/7284248#M1531904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pure numeric fields (not c, not n, not string, etc.) DO NOT contain punctuation and decimals are implied.  The obvious replacement for INT2 is to simply declare type I.  If I needed decimals, I would convert to (15) type p decimals n.  However, your output process is what is adding the punctuation....it's absolutely not embedded in a numeric field.  You should read available helps (ABAP) on different data types.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Sep 2010 11:45:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-substitute-for-int2-data-type/m-p/7284248#M1531904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-16T11:45:12Z</dc:date>
    </item>
  </channel>
</rss>

