<?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: Problems testing/using UNIT_CONVERSION_SIMPLE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781714#M1120191</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The easiest way to avoid this is to not use the test tool for import fields that are numeric.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to write a quick sample program and pass a numeric (type i, f, p) value to the parameter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Nov 2008 19:44:38 GMT</pubDate>
    <dc:creator>bryan_cain</dc:creator>
    <dc:date>2008-11-20T19:44:38Z</dc:date>
    <item>
      <title>Problems testing/using UNIT_CONVERSION_SIMPLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781709#M1120186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to use UNIT_CONVERSION_SIMPLE to convert units.  The units I have tested all belong to the VOLUME Dimension.  I have tried the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input = 100.00&lt;/P&gt;&lt;P&gt;No_type_check = 'X'&lt;/P&gt;&lt;P&gt;round_Sign = ' '&lt;/P&gt;&lt;P&gt;unit_in = '4G'&lt;/P&gt;&lt;P&gt;unit_out = 'CCM'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I execute that it gives me an error saying:  "Specify at least 1 unit".  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I then debugged and found that it is, for some reason, clearing the unit_in and unit_out parameters as soon as you execute.  If I debug and reenter the units it says that my input (100.00) is of type C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have no idea why either of these things are happening.  I am using the FM test tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Davis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 18:32:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781709#M1120186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T18:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problems testing/using UNIT_CONVERSION_SIMPLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781710#M1120187</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;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
        EXPORTING
          input                = ekpo-ntgew   " input amount
          unit_in              = ekpo-meins  " unit in which it is now 
          unit_out             = 'KG'            " unit u want to change
        IMPORTING
          output               = ekpo-ntgew   " result in new unit
        EXCEPTIONS 
          conversion_not_found = 01
          overflow             = 02
          OTHERS               = 03.
      menge_floating = ekpo-ntgew * h_menge.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 18:42:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781710#M1120187</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-11-20T18:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problems testing/using UNIT_CONVERSION_SIMPLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781711#M1120188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;J@y, I misspoke.  Here is the updated issue.  I realized that the first issue was because I wasn't using the technical names.  it is, however, still thinking that any value is of type C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to use UNIT_CONVERSION_SIMPLE to convert units.  The units I have tested all belong to the VOLUME Dimension.  I have tried the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input = 100.00&lt;/P&gt;&lt;P&gt;No_type_check = 'X'&lt;/P&gt;&lt;P&gt;round_Sign = ' '&lt;/P&gt;&lt;P&gt;unit_in = 'M3'&lt;/P&gt;&lt;P&gt;unit_out = 'CM3'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I debug and reenter the units it says that my input (100.00) is of type C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have no idea why this is happening.  I am using the FM test tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Davis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 18:44:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781711#M1120188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T18:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problems testing/using UNIT_CONVERSION_SIMPLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781712#M1120189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Davis &lt;/P&gt;&lt;P&gt;when I check in ECC6.0 unit CM3 is not created in EN is the error I am getting in table T006. Check may be thats the reason you are unable to convert the value&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 18:53:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781712#M1120189</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-11-20T18:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problems testing/using UNIT_CONVERSION_SIMPLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781713#M1120190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CM3 is the technical name (CCM is in T006).  You can see CM3 by using table T006a or T006b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Davis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 19:01:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781713#M1120190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T19:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problems testing/using UNIT_CONVERSION_SIMPLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781714#M1120191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The easiest way to avoid this is to not use the test tool for import fields that are numeric.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to write a quick sample program and pass a numeric (type i, f, p) value to the parameter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 19:44:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781714#M1120191</guid>
      <dc:creator>bryan_cain</dc:creator>
      <dc:date>2008-11-20T19:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problems testing/using UNIT_CONVERSION_SIMPLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781715#M1120192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bryan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, I just did that and tested it.  I have never seen an instance where the test tool couldn't be used so I wasn't sure if it was the tool or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Davis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 19:48:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-testing-using-unit-conversion-simple/m-p/4781715#M1120192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T19:48:14Z</dc:date>
    </item>
  </channel>
</rss>

