<?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: Problem with Display? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137437#M449818</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am calcultating totals. But even, IF I use the '0.00' method, it is not working. Could you check in to this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Apr 2007 04:17:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-17T04:17:33Z</dc:date>
    <item>
      <title>Problem with Display?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137430#M449811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I have a currency fields in a Screen, When it's value is null, It is showing me as SPACE. But My requirement is to display 0.00. How can I do this? Please do the favour needful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt; Sathish Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 03:59:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137430#M449811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T03:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Display?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137431#M449812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Sorry i haven't noted that it is currency field ... if that is a case ... do this way &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 loop at itab.
   lv_tabix = sy-tabix.
   if itab-curr = SPACE.
      itab-curr = '0.00'.
     modify itab index lv_tabix transporting curr.
   endif.  

 endloop. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Santosh Kumar Patha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 04:01:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137431#M449812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T04:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Display?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137432#M449813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try intialisaing that field to 0.00 when initial.&lt;/P&gt;&lt;P&gt;if itab-kwert eq space.&lt;/P&gt;&lt;P&gt;itab-kwert = ' 0.00 '.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 04:02:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137432#M449813</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-04-17T04:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Display?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137433#M449814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;whatb ref.field u have take for this Field , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field1  ref == bseg-dmbtr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then it will comes .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;otherwise check the attributes of that fields , have to checked no-zero option or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 04:02:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137433#M449814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T04:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Display?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137434#M449815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sathish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  If it is not standard program,you can set the value like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION_SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;if p_currency is initial.&lt;/P&gt;&lt;P&gt;   p_currency =  '0.00'.&lt;/P&gt;&lt;P&gt;Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget ot reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 04:04:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137434#M449815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T04:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Display?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137435#M449816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I use this way, I need to do further calculations based on that. is it works for calculations.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 04:07:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137435#M449816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T04:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Display?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137436#M449817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Satish,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   What sort of calculations you are trying to do ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 04:15:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137436#M449817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T04:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Display?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137437#M449818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am calcultating totals. But even, IF I use the '0.00' method, it is not working. Could you check in to this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 04:17:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137437#M449818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T04:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Display?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137438#M449819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You make the changes that i have specified at the final display of your internal table ...i.e, when you have all the data into your internal table and the table is ready for display do theser modifications so that it will not affect your calculations ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at it_final.

endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 04:29:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137438#M449819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T04:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Display?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137439#M449820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i send to example to&lt;/P&gt;&lt;P&gt;check it &lt;/P&gt;&lt;P&gt;if u have any doubt in contact this email&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;b&amp;gt;exmple&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;tables : mard.&lt;/P&gt;&lt;P&gt;*this is required inernal table&lt;/P&gt;&lt;P&gt;data : begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;       matnr type mara-matnr,"material field&lt;/P&gt;&lt;P&gt;       werks type mard-werks,"character field&lt;/P&gt;&lt;P&gt;       end of itab.&lt;/P&gt;&lt;P&gt;*it was taken by the use of printing data in presentation server&lt;/P&gt;&lt;P&gt;*here define same itab in above except currency field&lt;/P&gt;&lt;P&gt;data : begin of itab1 occurs 0,&lt;/P&gt;&lt;P&gt;       matnr type mard-matnr,"material field&lt;/P&gt;&lt;P&gt;       vklab type mard-vklab,"currency field&lt;/P&gt;&lt;P&gt;       end of itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options s_matnr for mard-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr werks from mard into table itab where matnr in s_matnr.&lt;/P&gt;&lt;P&gt;*here i  cleared the character field data then this&lt;/P&gt;&lt;P&gt;*field contains only spaces&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;clear itab-werks.&lt;/P&gt;&lt;P&gt;write : / itab-matnr,itab-werks.&lt;/P&gt;&lt;P&gt;modify itab from itab index sy-tabix.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;break-point.&lt;/P&gt;&lt;P&gt;*here i append the all the fields itab to itab1 except  currency field&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;if itab-werks = space.&lt;/P&gt;&lt;P&gt;move itab-matnr to itab1-matnr.&lt;/P&gt;&lt;P&gt;append itab1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;*then i will print the itab1 values to presentation server&lt;/P&gt;&lt;P&gt;loop at itab1.&lt;/P&gt;&lt;P&gt;*clear itab-vklab.&lt;/P&gt;&lt;P&gt;write : / itab1-matnr,itab1-vklab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2007 04:59:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-display/m-p/2137439#M449820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-17T04:59:50Z</dc:date>
    </item>
  </channel>
</rss>

