<?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: spell amount functional module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455645#M215403</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, that will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.

data: words(50) type c.

call function 'HR_IN_CHG_INR_WRDS'
     exporting
          amt_in_num   = '100000'
     importing
          amt_in_words = words.


write:/ words.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Jul 2006 13:29:31 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-07-07T13:29:31Z</dc:date>
    <item>
      <title>spell amount functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455640#M215398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys,&lt;/P&gt;&lt;P&gt;         i want u guys to help me out here.i need a functional module which works exactly like SPELL_AMOUNT.The issue is that i want the amount 100,000 to be spelt as 1 lakh instead of one hundred thousand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 13:22:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455640#M215398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T13:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: spell amount functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455641#M215399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Check this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HR_IN_CHG_INR_WRDS                  -&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;&lt;P&gt;number (price) to words.&lt;/P&gt;&lt;P&gt;SPELL_AMOUNT -&lt;/P&gt;&lt;HR originaltext="----------------------------------" /&gt;&lt;P&gt;Same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1st Functional Module works the same way u want&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;HR_IN_CHG_INR_WRDS
Importing
   AMT_IN_NUM  = '100000'
Exporting
  AMT_IN_WORDS = ans&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ans = ONE LAKH Rupees&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards points if solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 13:23:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455641#M215399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T13:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: spell amount functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455642#M215400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know this is probably not what you are looking for, but I'm not sure that you will find a function module to do this for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.

data: words type spell.

call function 'SPELL_AMOUNT'
 exporting
    amount          = '100000'
*   CURRENCY        = ' '
*   FILLER          = ' '
*   LANGUAGE        = SY-LANGU
  importing
    in_words        = words.

if words-word = 'ONE HUNDRED THOUSAND'.
  words-word = '1 LAKH'.
endif.


write:/ words-word.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 13:27:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455642#M215400</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-07T13:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: spell amount functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455643#M215401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Arup,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you look at the documentation of the Function Module, it tells you that the table T015Z has to be customized for your language if the default format of the spelled amounts is not acceptable. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, the vales are stored only based on the language, and not on the currency. So If you configure the table for the English language, then all users who log on in English will get the same format (LAKHS, CRORES etc.,). This may not be acceptable for users in a country like US where the format preferred might be MILLIONS , BILLIONS etc.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please exercise caution before going ahead with configuring the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only other alternative (to modifying the table) that I can think of will be to write your own function module!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or check the below program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION Z_FI_AMT_WRDS_CONVERT .&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local interface:&lt;/P&gt;&lt;P&gt;*" IMPORTING&lt;/P&gt;&lt;P&gt;*" REFERENCE(AMT)&lt;/P&gt;&lt;P&gt;*" EXPORTING&lt;/P&gt;&lt;P&gt;*" REFERENCE(WORD) TYPE SPELL-WORD&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;amt_c1 = amt.&lt;/P&gt;&lt;P&gt;replace '.' with 'D' into amt_c1.&lt;/P&gt;&lt;P&gt;SEARCH amt_c1 for 'D'.&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;amt_wh1 = amt_c1+0(sy-fdpos).&lt;/P&gt;&lt;P&gt;wrk_fdpos = sy-fdpos + 1.&lt;/P&gt;&lt;P&gt;amt_dc1 = amt_c1+wrk_fdpos(2).&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;amt_wh1 = amt_c1.&lt;/P&gt;&lt;P&gt;amt_dc1 = '00'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;amtnmr = amt_wh1.&lt;/P&gt;&lt;P&gt;amtdec = amt_dc1.&lt;/P&gt;&lt;P&gt;CONCATENATE amtnmr amtdec INTO amount.&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 = amount&lt;/P&gt;&lt;P&gt;currency = 'INR'&lt;/P&gt;&lt;P&gt;filler = ' '&lt;/P&gt;&lt;P&gt;language = 'E'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;in_words = amountrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*WRITE: / 'amount in figures: ' ,'Rs.--&amp;gt;', AMTNMR,'.',AMTDEC.&lt;/P&gt;&lt;P&gt;*WRITE: / 'Amount in WORDS.: ' ,' Rs.' ,AMOUNTRS-WORD,&lt;/P&gt;&lt;P&gt;*'AND' ,AMOUNTRS-DECWORD ,'Paisa Only'.&lt;/P&gt;&lt;P&gt;*SKIP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR: unit1,digit1,unit2,digit2,unit3,digit3,unit4,digit4,word1,word2,&lt;/P&gt;&lt;P&gt;word3,word4,word.&lt;/P&gt;&lt;P&gt;digit1 = amtnmr+14.&lt;/P&gt;&lt;P&gt;unit1 = amtnmr+13.&lt;/P&gt;&lt;P&gt;digit2 = amtnmr+12.&lt;/P&gt;&lt;P&gt;unit2 = '0'.&lt;/P&gt;&lt;P&gt;digit3 = amtnmr+11.&lt;/P&gt;&lt;P&gt;unit3 = amtnmr+10.&lt;/P&gt;&lt;P&gt;digit4 = amtnmr+9.&lt;/P&gt;&lt;P&gt;unit4 = amtnmr+8.&lt;/P&gt;&lt;P&gt;digit5 = amtnmr+7.&lt;/P&gt;&lt;P&gt;unit5 = amtnmr+6.&lt;/P&gt;&lt;P&gt;digit6 = amtnmr+5.&lt;/P&gt;&lt;P&gt;unit6 = '0'.&lt;/P&gt;&lt;P&gt;digit7 = amtnmr+4.&lt;/P&gt;&lt;P&gt;unit7 = amtnmr+3.&lt;/P&gt;&lt;P&gt;digit8 = amtnmr+2.&lt;/P&gt;&lt;P&gt;unit8 = amtnmr+1.&lt;/P&gt;&lt;P&gt;digit9 = amtnmr.&lt;/P&gt;&lt;P&gt;unit9 = '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*WRITE:/ 'UNIT9 = ' , UNIT9, 'DIGIT9 = ', DIGIT9.&lt;/P&gt;&lt;P&gt;IF ( unit1 NE '0' ) OR ( digit1 NE '0' ).&lt;/P&gt;&lt;P&gt;SELECT SINGLE wort INTO word1 FROM t015z WHERE einh = unit1&lt;/P&gt;&lt;P&gt;AND ziff = digit1 AND spras = 'E'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;word1 = t015z-wort.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;REPLACE ';' WITH '' INTO word1.&lt;/P&gt;&lt;P&gt;*write: / word1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF unit2 NE '0' OR digit2 NE '0'.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM t015z WHERE einh = unit2&lt;/P&gt;&lt;P&gt;AND ziff = digit2 AND spras = 'E'.&lt;/P&gt;&lt;P&gt;word2 = t015z-wort.&lt;/P&gt;&lt;P&gt;REPLACE ';' WITH '' INTO word2.&lt;/P&gt;&lt;P&gt;CONCATENATE word2 ' HUNDRED ' INTO word2.&lt;/P&gt;&lt;P&gt;*REPLACE '(FEMININE)' WITH '' INTO WORD2.&lt;/P&gt;&lt;P&gt;*write: / word2.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF unit3 NE '0' OR digit3 NE '0'.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM t015z WHERE einh = unit3&lt;/P&gt;&lt;P&gt;AND ziff = digit3 AND spras = 'E'.&lt;/P&gt;&lt;P&gt;word3 = t015z-wort .&lt;/P&gt;&lt;P&gt;CONCATENATE word3 ' THOUSAND ' INTO word3.&lt;/P&gt;&lt;P&gt;REPLACE ';' WITH '' INTO word3.&lt;/P&gt;&lt;P&gt;*write: / word3.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF unit4 NE '0' OR digit4 NE '0'.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM t015z WHERE einh = unit4&lt;/P&gt;&lt;P&gt;AND ziff = digit4 AND spras = 'E'.&lt;/P&gt;&lt;P&gt;word4 = t015z-wort.&lt;/P&gt;&lt;P&gt;REPLACE ';' WITH '' INTO word4.&lt;/P&gt;&lt;P&gt;CONCATENATE word4 ' LAKH ' INTO word4.&lt;/P&gt;&lt;P&gt;*WRITE: / WORD4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF unit5 NE '0' OR digit5 NE '0'.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM t015z WHERE einh = unit5&lt;/P&gt;&lt;P&gt;AND ziff = digit5 AND spras = 'E'.&lt;/P&gt;&lt;P&gt;word5 = t015z-wort.&lt;/P&gt;&lt;P&gt;REPLACE ';' WITH '' INTO word5.&lt;/P&gt;&lt;P&gt;*write: / word5.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF unit6 NE '0' OR digit6 NE '0'.&lt;/P&gt;&lt;P&gt;*UNIT6 = 'H'.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM t015z WHERE einh = unit6&lt;/P&gt;&lt;P&gt;AND ziff = digit6 AND spras = 'E'.&lt;/P&gt;&lt;P&gt;word6 = t015z-wort.&lt;/P&gt;&lt;P&gt;REPLACE ';' WITH ' ' INTO word6.&lt;/P&gt;&lt;P&gt;CONCATENATE word6 ' HUNDRED ' INTO word6.&lt;/P&gt;&lt;P&gt;*REPLACE '(FEMININE)' WITH '' INTO WORD6.&lt;/P&gt;&lt;P&gt;*write: / word6.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF unit7 NE '0' OR digit7 NE '0'.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM t015z WHERE einh = unit7&lt;/P&gt;&lt;P&gt;AND ziff = digit7 AND spras = 'E'.&lt;/P&gt;&lt;P&gt;word7 = t015z-wort.&lt;/P&gt;&lt;P&gt;REPLACE ';' WITH ' ' INTO word7.&lt;/P&gt;&lt;P&gt;CONCATENATE word7 ' THOUSAND ' INTO word7.&lt;/P&gt;&lt;P&gt;*write: / word7.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF unit8 NE '0' OR digit8 NE '0'.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM t015z WHERE einh = unit8&lt;/P&gt;&lt;P&gt;AND ziff = digit8 AND spras = 'E'.&lt;/P&gt;&lt;P&gt;word8 = t015z-wort.&lt;/P&gt;&lt;P&gt;REPLACE ';' WITH '' INTO word8.&lt;/P&gt;&lt;P&gt;CONCATENATE word8 ' LAKHS ' INTO word8.&lt;/P&gt;&lt;P&gt;*write: / word8.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF digit9 NE '0'.&lt;/P&gt;&lt;P&gt;unit9 = '0'.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM t015z WHERE einh = unit9&lt;/P&gt;&lt;P&gt;AND ziff = digit9 AND spras = 'E'.&lt;/P&gt;&lt;P&gt;word9 = t015z-wort.&lt;/P&gt;&lt;P&gt;REPLACE ';' WITH ' ' INTO word9.&lt;/P&gt;&lt;P&gt;*REPLACE '(FEMININE)' WITH ' ' INTO WORD9.&lt;/P&gt;&lt;P&gt;CONCATENATE word9 ' HUNDRED ' INTO word9.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CONCATENATE word9 word8 word7 word6 word5 ' CRORE ' INTO wordc&lt;/P&gt;&lt;P&gt;SEPARATED BY space.&lt;/P&gt;&lt;P&gt;*WRITE:/ 'Amount in Rs.-------&amp;gt;'.&lt;/P&gt;&lt;P&gt;IF amountrs-decword NE 'ZERO'.&lt;/P&gt;&lt;P&gt;CONCATENATE ' AND PAISE ' amountrs-decword INTO dcwrd&lt;/P&gt;&lt;P&gt;SEPARATED BY space.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF amtnmr &amp;gt; 9999999.&lt;/P&gt;&lt;P&gt;*WRITE: / WORDC.&lt;/P&gt;&lt;P&gt;*ENDIF.&lt;/P&gt;&lt;P&gt;CONCATENATE 'RUPEES' wordc word4 word3 word2 word1 dcwrd 'ONLY'&lt;/P&gt;&lt;P&gt;INTO word SEPARATED BY space.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;CONCATENATE 'RUPEES'word4 word3 word2 word1 dcwrd 'ONLY'&lt;/P&gt;&lt;P&gt;INTO word SEPARATED BY space.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CLEAR dcwrd.&lt;/P&gt;&lt;P&gt;*WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; WORD.&lt;/P&gt;&lt;P&gt;*WRITE: 'AND' ,AMOUNTRS-DECWORD ,'Paise Only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or try to use the below 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;if u find it useful just mark some points&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 13:28:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455643#M215401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T13:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: spell amount functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455644#M215402</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;There is a Fm &amp;lt;b&amp;gt;HR_IN_CHG_INR_WRDS&amp;lt;/b&amp;gt; but it works only for india.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 13:29:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455644#M215402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T13:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: spell amount functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455645#M215403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, that will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.

data: words(50) type c.

call function 'HR_IN_CHG_INR_WRDS'
     exporting
          amt_in_num   = '100000'
     importing
          amt_in_words = words.


write:/ words.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 13:29:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455645#M215403</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-07T13:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: spell amount functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455646#M215404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi the amount of greater than 1 lakh got transfeerrd to words day before yesterday but for 2 days it is not getting converted.Can nebody pls tell wy this problem is persisiting?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 05:28:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455646#M215404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-13T05:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: spell amount functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455647#M215405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; my requirement is that, i have a smartform,and after i do some calculation of amount, taking that amount in a variable say val5 and i want to pass it in smartform .how do i do??&lt;/P&gt;&lt;P&gt;plzzz do reply..........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2014 06:58:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455647#M215405</guid>
      <dc:creator>former_member536910</dc:creator>
      <dc:date>2014-05-30T06:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: spell amount functional module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455648#M215406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyanka,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you have a custom SMARTFORM. First set an import interface parameter for the form and push your amount from the program. If you want to display the amount in words, then use the function module, HR_IN_CHG_INR_WRDS and pass the amount as parameter. You will get the amount in words.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abijith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2014 07:59:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spell-amount-functional-module/m-p/1455648#M215406</guid>
      <dc:creator>former_member196651</dc:creator>
      <dc:date>2014-05-30T07:59:22Z</dc:date>
    </item>
  </channel>
</rss>

