<?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 converting amount to amount in words????????? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570938#M586990</link>
    <description>&lt;H1&gt;Function Module For INR USD Currency Formatting?&lt;/H1&gt;</description>
    <pubDate>Fri, 27 Aug 2021 14:46:45 GMT</pubDate>
    <dc:creator>shekhar_439</dc:creator>
    <dc:date>2021-08-27T14:46:45Z</dc:date>
    <item>
      <title>Function module for converting amount to amount in words?????????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570932#M586984</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;&lt;/P&gt;&lt;P&gt;As per the requirement i have to convert amount in indian rupees to words. Which is the function module should i use? I tried using "SPELL_AMOUNT". but it is not dislaying in the correct format. please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 10:00:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570932#M586984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T10:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for converting amount to amount in words?????????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570933#M586985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Function module HR_IN_CHG_INR_WRDS converts a number into words in lakhs, but as this is part of the HR module may not be available in your system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 10:02:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570933#M586985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T10:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for converting amount to amount in words?????????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570934#M586986</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;&lt;/P&gt;&lt;P&gt;Use FM HR_IN_CHG_INR_WRDS or SPELL_AMOUNT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the sample code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA AMT_IN_NUM LIKE PC207-BETRG.
DATA AMT_IN_WORDS(100) TYPE c.
 
PARAMETERS: AMOUNT LIKE AMT_IN_NUM.
 
CALL FUNCTION 'HR_IN_CHG_INR_WRDS'
EXPORTING
amt_in_num = AMOUNT
IMPORTING
AMT_IN_WORDS = AMT_IN_WORDS
EXCEPTIONS
DATA_TYPE_MISMATCH = 1
OTHERS = 2
.
IF sy-subrc &amp;lt;&amp;gt; 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
WRITE AMT_IN_WORDS.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;plz dont forget to reward points if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 10:03:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570934#M586986</guid>
      <dc:creator>Vijay</dc:creator>
      <dc:date>2007-07-30T10:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for converting amount to amount in words?????????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570935#M586987</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 the function module....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HR_IN_CHG_INR_WRDS&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;thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 10:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570935#M586987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T10:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for converting amount to amount in words?????????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570936#M586988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use SPELL_AMOUNT for general values and&lt;/P&gt;&lt;P&gt;HR_IN_CHG_INR_WRDS for Currency related values..&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="484847"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 10:04:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570936#M586988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T10:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for converting amount to amount in words?????????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570937#M586989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: int_val type i,&lt;/P&gt;&lt;P&gt;cent_val type p decimals 2,&lt;/P&gt;&lt;P&gt;val type p decimals 2,&lt;/P&gt;&lt;P&gt;IN_WORDS like spell,&lt;/P&gt;&lt;P&gt;SPELL_VAL(255) type c,&lt;/P&gt;&lt;P&gt;SPELL_CENT(255) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;int_val = trunc( val ).&lt;/P&gt;&lt;P&gt;cent_val = ( val - int_val ) * 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SPELL_AMOUNT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;AMOUNT = val&lt;/P&gt;&lt;P&gt;CURRENCY = 'USD'&lt;/P&gt;&lt;P&gt;LANGUAGE = SY-LANGU&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;IN_WORDS = IN_WORDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPELL_VAL = IN_WORDS-WORD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SPELL_AMOUNT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;AMOUNT = cent_val&lt;/P&gt;&lt;P&gt;CURRENCY = 'USD'&lt;/P&gt;&lt;P&gt;LANGUAGE = SY-LANGU&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;IN_WORDS = IN_WORDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPELL_CENT = IN_WORDS-WORD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE SPELL_VAL ' DOLAR ' SPELL_CENT ' CENTS ' INTO SPELL_VAL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 10:06:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570937#M586989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T10:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for converting amount to amount in words?????????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570938#M586990</link>
      <description>&lt;H1&gt;Function Module For INR USD Currency Formatting?&lt;/H1&gt;</description>
      <pubDate>Fri, 27 Aug 2021 14:46:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-converting-amount-to-amount-in-words/m-p/2570938#M586990</guid>
      <dc:creator>shekhar_439</dc:creator>
      <dc:date>2021-08-27T14:46:45Z</dc:date>
    </item>
  </channel>
</rss>

