<?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: numeric field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-field/m-p/3733184#M898462</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;while displaying or writing maintain as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;       f1(10) type n,&lt;/P&gt;&lt;P&gt;       f2(10) type n,&lt;/P&gt;&lt;P&gt;       f3(10) type n,&lt;/P&gt;&lt;P&gt;       f4(10) type c,&lt;/P&gt;&lt;P&gt;       f5(10) type n,&lt;/P&gt;&lt;P&gt;       end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : india(10) type c.&lt;/P&gt;&lt;P&gt;parameters : i type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-f1 = ' '.&lt;/P&gt;&lt;P&gt;itab-f2 = ' '.&lt;/P&gt;&lt;P&gt;itab-f3 = ' '.&lt;/P&gt;&lt;P&gt;itab-f4 = 'india '.&lt;/P&gt;&lt;P&gt;itab-f5 = ' ' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;write itab-f5 no-zero to india.&lt;/P&gt;&lt;P&gt;write india.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if u want to display in table control then show india it will work,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with Regards,&lt;/P&gt;&lt;P&gt;Kiran.G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Apr 2008 06:40:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-30T06:40:56Z</dc:date>
    <item>
      <title>numeric field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-field/m-p/3733183#M898461</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;&lt;/P&gt;&lt;P&gt;Iam having one internal table with five fields and 10 records...&lt;/P&gt;&lt;P&gt;Now iam going to add one more record to that internal table in my program by using append statement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-f1 = ' '.&lt;/P&gt;&lt;P&gt;itab-f2 = ' '.&lt;/P&gt;&lt;P&gt;itab-f3 = ' '.&lt;/P&gt;&lt;P&gt;itab-f4 = 'india '.&lt;/P&gt;&lt;P&gt;itab-f5 = ' '.&lt;/P&gt;&lt;P&gt;append itab.clear itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with above syntax i have to get four spaces and one entry....&lt;/P&gt;&lt;P&gt;but i am getting 0 for the last field, which is the numeric field...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to avoid that zero...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is no chanse to change numeric as char or others....because it is database table field using in some other reports and in other conditions in this reoprt also....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;one more thing is iam dispalying this internal table by using table control, not with normal reporting!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you,&lt;/P&gt;&lt;P&gt;naveen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 04:32:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-field/m-p/3733183#M898461</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-04-30T04:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: numeric field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-field/m-p/3733184#M898462</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;while displaying or writing maintain as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;       f1(10) type n,&lt;/P&gt;&lt;P&gt;       f2(10) type n,&lt;/P&gt;&lt;P&gt;       f3(10) type n,&lt;/P&gt;&lt;P&gt;       f4(10) type c,&lt;/P&gt;&lt;P&gt;       f5(10) type n,&lt;/P&gt;&lt;P&gt;       end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : india(10) type c.&lt;/P&gt;&lt;P&gt;parameters : i type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-f1 = ' '.&lt;/P&gt;&lt;P&gt;itab-f2 = ' '.&lt;/P&gt;&lt;P&gt;itab-f3 = ' '.&lt;/P&gt;&lt;P&gt;itab-f4 = 'india '.&lt;/P&gt;&lt;P&gt;itab-f5 = ' ' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;write itab-f5 no-zero to india.&lt;/P&gt;&lt;P&gt;write india.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if u want to display in table control then show india it will work,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with Regards,&lt;/P&gt;&lt;P&gt;Kiran.G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 06:40:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-field/m-p/3733184#M898462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T06:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: numeric field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-field/m-p/3733185#M898463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi there....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yep, try this no zero concept in your code. it should work fine and ur trouble wil be over i guess....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 08:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/numeric-field/m-p/3733185#M898463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T08:19:45Z</dc:date>
    </item>
  </channel>
</rss>

