<?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 Time conversion function with bigger input field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-function-with-bigger-input-field/m-p/1276492#M151640</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to convert time using the "CF_UT_UNIT_CONVERSION" function.  The problem is that the inport/input field "VALUE_OLD_IMP" is to small.  The input field on the function is 9,3 and I have a field that is 13,3 that contains a value that is specified in PICO seconds.  In the T006 table the entry is 'MS' type which is PICO seconds.  Well needless to say the value in this field is sometimes to big to fit into the 9,3 field used in the "CF_UT_UNIT_CONVERSION" function module.  Is there another function module out there that does the exact same thing using a bigger input field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Mar 2006 20:22:49 GMT</pubDate>
    <dc:creator>paul_pendleton</dc:creator>
    <dc:date>2006-03-06T20:22:49Z</dc:date>
    <item>
      <title>Time conversion function with bigger input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-function-with-bigger-input-field/m-p/1276492#M151640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to convert time using the "CF_UT_UNIT_CONVERSION" function.  The problem is that the inport/input field "VALUE_OLD_IMP" is to small.  The input field on the function is 9,3 and I have a field that is 13,3 that contains a value that is specified in PICO seconds.  In the T006 table the entry is 'MS' type which is PICO seconds.  Well needless to say the value in this field is sometimes to big to fit into the 9,3 field used in the "CF_UT_UNIT_CONVERSION" function module.  Is there another function module out there that does the exact same thing using a bigger input field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Mar 2006 20:22:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-function-with-bigger-input-field/m-p/1276492#M151640</guid>
      <dc:creator>paul_pendleton</dc:creator>
      <dc:date>2006-03-06T20:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion function with bigger input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-function-with-bigger-input-field/m-p/1276493#M151641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just another bit of info.  We are trying to convert everything into hours for reporting purposes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Mar 2006 20:24:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-function-with-bigger-input-field/m-p/1276493#M151641</guid>
      <dc:creator>paul_pendleton</dc:creator>
      <dc:date>2006-03-06T20:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion function with bigger input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-function-with-bigger-input-field/m-p/1276494#M151642</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;For Operation time (in Milli secods, Seconds) in Prodution order we have similar issue and we have used the followig function. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'COR0_CONF_TO_OPR_UNIT_CONVERT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      I_QUANTITY             = P_ACTI1&lt;/P&gt;&lt;P&gt;      I_CONF_UNIT            = P_UNIT1&lt;/P&gt;&lt;P&gt;      I_OPER_UNIT            = 'H'         " into hours&lt;/P&gt;&lt;P&gt;      I_NOMINATOR            = ' '&lt;/P&gt;&lt;P&gt;      I_DENOMINATOR          = ' '&lt;/P&gt;&lt;P&gt;      I_MATERIAL             = ' '&lt;/P&gt;&lt;P&gt;      I_ROUT_UNIT            = ' '&lt;/P&gt;&lt;P&gt;      I_ORDER_UNIT           = ' '&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_BASE_UNIT            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_ROUND                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_AUFNR                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     E_QUAN_OPR             = P_ACTI1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  E_QUAN_F               =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     CONVERSION_ERROR       = 1&lt;/P&gt;&lt;P&gt;     OTHERS                 = 2          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe useful for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lanka&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Mar 2006 20:30:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-function-with-bigger-input-field/m-p/1276494#M151642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-06T20:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion function with bigger input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-function-with-bigger-input-field/m-p/1276495#M151643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all, let's make sure we're talking about the same thing. A pico-second is a 1 millionth millionth of a second. A micro-second is a millionth of a second. So I think that the MS entry in t006 is a micro second.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In any event, if you really have pico-seconds (or many many micro-seconds), you could divide the input by 1,000 (or 1,000,000) before passing it to the FM. Then multiply the result by 1,000(or 1,000,000).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Mar 2006 21:01:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-function-with-bigger-input-field/m-p/1276495#M151643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-06T21:01:08Z</dc:date>
    </item>
  </channel>
</rss>

