<?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: Function Module for time in words in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150172#M117311</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure there is any standard FM avaiable to full fill your requirement. THe best way to write custom FM by refer to "SPELL_AMOUNT" FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 25 Feb 2006 14:02:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-25T14:02:14Z</dc:date>
    <item>
      <title>Function Module for time in words</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150171#M117310</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;   My Requirement is to print the time ie hours and minutes in words in the Smartform. Could you all help me out to find the function module name for which i can pass the sy-uzeit and get the same in words.&lt;/P&gt;&lt;P&gt;Eg: 12:25:00&lt;/P&gt;&lt;P&gt;This should be printed as: tewelve hrs and twenty five minutes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2006 12:51:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150171#M117310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-25T12:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module for time in words</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150172#M117311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure there is any standard FM avaiable to full fill your requirement. THe best way to write custom FM by refer to "SPELL_AMOUNT" FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2006 14:02:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150172#M117311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-25T14:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module for time in words</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150173#M117312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sudhakar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is no Fm for you need but you can write your own fm&lt;/P&gt;&lt;P&gt;like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: mytime type t, hour(2) type c,min(2) type c, sec(2) type c.&lt;/P&gt;&lt;P&gt;data: word(10) type c, compword(50) type c.&lt;/P&gt;&lt;P&gt;mytime = '12:25:00'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hour = mytime+0(2).&lt;/P&gt;&lt;P&gt;min = mytime+3(2).&lt;/P&gt;&lt;P&gt;sec = mytime+6(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform getword using hour changing word.&lt;/P&gt;&lt;P&gt;concatenate compword word 'hour and ' into compword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform getword using min changing word.&lt;/P&gt;&lt;P&gt;concatenate compword word 'minutes and ' into compword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform getword using sec changing word.&lt;/P&gt;&lt;P&gt;concatenate compword word ' seconds' into compword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: compword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form getword using time1(2) type c changing word(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case time1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when '0'.&lt;/P&gt;&lt;P&gt;word = 'zero'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when '1'.&lt;/P&gt;&lt;P&gt;word = 'one'........upto sixty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&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;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2006 14:50:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150173#M117312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-25T14:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module for time in words</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150174#M117313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your replys are there any helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Feb 2006 04:17:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150174#M117313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-26T04:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module for time in words</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150175#M117314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudhakar,&lt;/P&gt;&lt;P&gt;  I dont see any Function Module for this.You need to write a code for this,which seems to be laborious.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Feb 2006 04:31:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150175#M117314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-26T04:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module for time in words</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150176#M117315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Thanks a lot for the solution and I have created a function module and its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; And I have not forgotten you to reward you ther points. Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 06:15:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-time-in-words/m-p/1150176#M117315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T06:15:34Z</dc:date>
    </item>
  </channel>
</rss>

