<?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 converting unit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554503#M582054</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai all,&lt;/P&gt;&lt;P&gt;pls help me with this&lt;/P&gt;&lt;P&gt;i have two info object with masterdata. i want to convert the quantity feild of one info object to the same unit as other in the start routine for updating to ODS.&lt;/P&gt;&lt;P&gt;how to do this problem? pls help me for a solution.&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jul 2007 10:14:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-10T10:14:10Z</dc:date>
    <item>
      <title>converting unit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554503#M582054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai all,&lt;/P&gt;&lt;P&gt;pls help me with this&lt;/P&gt;&lt;P&gt;i have two info object with masterdata. i want to convert the quantity feild of one info object to the same unit as other in the start routine for updating to ODS.&lt;/P&gt;&lt;P&gt;how to do this problem? pls help me for a solution.&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 10:14:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554503#M582054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T10:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: converting unit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554504#M582055</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;You can use this function module..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'VHUMISC_CONVERT_TO_BASEUNIT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      MATNR             = fs_vbap-matnr&lt;/P&gt;&lt;P&gt;      QUANTITY          = fs_vbap-kwmeng&lt;/P&gt;&lt;P&gt;      UNITQTY           = fs_vbap-vrkme&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      BASEQUANTITY      = fs_final-qty_order&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      BASEUNIT          = fs_vbap-meins&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      CONVERSION_FAILED = 1&lt;/P&gt;&lt;P&gt;      ROUNDING_ERROR    = 2&lt;/P&gt;&lt;P&gt;      OTHERS            = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sai ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 10:24:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554504#M582055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T10:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: converting unit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554505#M582056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for this...&lt;/P&gt;&lt;P&gt;pls show this with one example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 11:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554505#M582056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T11:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: converting unit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554506#M582057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;You can also use the fun modules&lt;/P&gt;&lt;P&gt;UNIT_CONVERSION_SIMPLE or&lt;/P&gt;&lt;P&gt;MD_CONVERT_MATERIAL_UNIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just enter these fun modules name in SE37 and search for where used list&lt;/P&gt;&lt;P&gt;you will find lot of programs &lt;/P&gt;&lt;P&gt;see the one as sample and use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 11:37:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554506#M582057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T11:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: converting unit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554507#M582058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 11:41:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554507#M582058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T11:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: converting unit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554508#M582059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but its not working for the problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 11:42:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554508#M582059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-10T11:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: converting unit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554509#M582060</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;use FM MD_CONVERT_MATERIAL_UNIT, it takes your MATNR, an input unit of measurement, an input quantity, and your desired output unit of measurement, and then it gives the result of quantity conversion from input unit to output unit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2007 14:44:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554509#M582060</guid>
      <dc:creator>younes_bouaouad</dc:creator>
      <dc:date>2007-07-10T14:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: converting unit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554510#M582061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my input is the unit&amp;lt;weight&amp;gt; of an infobject capa_wt.&lt;/P&gt;&lt;P&gt;my output should be capa_wt with converted unit as that of basic unit, there in master data, bas_unit.&lt;/P&gt;&lt;P&gt;pls help me with this.&lt;/P&gt;&lt;P&gt;i think the above function modules will not work for this problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2007 07:23:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554510#M582061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-11T07:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: converting unit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554511#M582062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 10:05:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-unit/m-p/2554511#M582062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T10:05:24Z</dc:date>
    </item>
  </channel>
</rss>

