<?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: vofm help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/vofm-help/m-p/2157385#M455933</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u have to maintain the same field length , then u have to div by mul of 100's.&lt;/P&gt;&lt;P&gt;&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>Mon, 07 May 2007 06:46:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-07T06:46:05Z</dc:date>
    <item>
      <title>vofm help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vofm-help/m-p/2157384#M455932</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;ive created a vofm routine in which multiplication of two conditional values is carried out.&lt;/P&gt;&lt;P&gt;if my values are for instance 1100.00 &amp;amp; 20.00 the result shud b 22000.00 but the result is coming out to be 2200000.00&lt;/P&gt;&lt;P&gt;the data type of xkwet which stores the product of the above vales is &lt;/P&gt;&lt;P&gt;p(7) decimals 2.perhaps because of dis it is filling the remaining values by zeros.&lt;/P&gt;&lt;P&gt;can ny1 suggest how to resolve dis issue as i cant divide the result by 100.&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2007 06:42:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vofm-help/m-p/2157384#M455932</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2007-05-07T06:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: vofm help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vofm-help/m-p/2157385#M455933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u have to maintain the same field length , then u have to div by mul of 100's.&lt;/P&gt;&lt;P&gt;&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>Mon, 07 May 2007 06:46:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vofm-help/m-p/2157385#M455933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-07T06:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: vofm help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vofm-help/m-p/2157386#M455934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u b more specific as how to achieve dis.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2007 06:57:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vofm-help/m-p/2157386#M455934</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2007-05-07T06:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: vofm help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vofm-help/m-p/2157387#M455935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Define one field type P and decimals 2.&lt;/P&gt;&lt;P&gt;Then multiply by divident by 10000 and then divide it by your value.&lt;/P&gt;&lt;P&gt;Due to SAP standard data type of structure the values comes always multiple of 1000 in custom routine.&lt;/P&gt;&lt;P&gt;for the reference; please find below example;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA: WORKFIELD(16) TYPE P DECIMALS 2.&lt;/P&gt;&lt;P&gt;    CHECK KOMP-KZWI1 NE 0.&lt;/P&gt;&lt;P&gt;    IF XWORKG NE 0.&lt;/P&gt;&lt;P&gt;      WORKFIELD   =  ( KOMP-KZWI1 - XWORKG ) * 10000 / KOMP-KZWI1.&lt;/P&gt;&lt;P&gt;      XKWERT = WORKFIELD.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      XKWERT = 0.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Nilesh Shete&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2007 07:10:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vofm-help/m-p/2157387#M455935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-07T07:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: vofm help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/vofm-help/m-p/2157388#M455936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;in case of subroutine multiplication and division is not working properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u have to make a function module for muliplication or division.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy .&lt;/P&gt;&lt;P&gt;Rewards point if helpful.&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>Mon, 07 May 2007 07:53:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/vofm-help/m-p/2157388#M455936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-07T07:53:35Z</dc:date>
    </item>
  </channel>
</rss>

