<?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: Amount conversion based on currency in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829300#M353578</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the Function Module SPELL_AMOUNT to convert the integer into text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA v_int TYPE i VALUE '1000'.&lt;/P&gt;&lt;P&gt;DATA words LIKE SPELL.&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          = v_int&lt;/P&gt;&lt;P&gt;   LANGUAGE        = SY-LANGU&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   IN_WORDS        = words&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;WRITE words-word.&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jan 2007 12:14:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-24T12:14:13Z</dc:date>
    <item>
      <title>Amount conversion based on currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829297#M353575</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;I have a requirement for converting amount into words based on given currency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried doing this using function module spell_amount, but it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be rewarded to the helpful answers.&lt;/P&gt;&lt;P&gt;Its very urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 12:09:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829297#M353575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T12:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Amount conversion based on currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829298#M353576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haritha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Chek this program &amp;lt;b&amp;gt;RF_SPELL&amp;lt;/b&amp;gt; with similar requirement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 12:11:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829298#M353576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T12:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Amount conversion based on currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829299#M353577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Haritha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check with &amp;lt;b&amp;gt;HR_IN_CHG_INR_WRDS&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: words(100) 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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 12:13:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829299#M353577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T12:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Amount conversion based on currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829300#M353578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the Function Module SPELL_AMOUNT to convert the integer into text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA v_int TYPE i VALUE '1000'.&lt;/P&gt;&lt;P&gt;DATA words LIKE SPELL.&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          = v_int&lt;/P&gt;&lt;P&gt;   LANGUAGE        = SY-LANGU&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   IN_WORDS        = words&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;WRITE words-word.&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 12:14:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829300#M353578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T12:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Amount conversion based on currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829301#M353579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use the Function module to convert the currency &amp;lt;b&amp;gt;CONVERT_TO_FOREIGN_CURRENCY&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to convert the Amount in words, look this link &lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/victorav15/sapr3/abapfun.html" target="test_blank"&gt;http://www.geocities.com/victorav15/sapr3/abapfun.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 12:15:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829301#M353579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T12:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Amount conversion based on currency</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829302#M353580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi haritha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZSPELL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES SPELL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : T_SPELL LIKE SPELL OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA : PAMOUNT LIKE SPELL-NUMBER  VALUE '1234510'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-TITLE = 'SPELLING NUMBER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM SPELL_AMOUNT USING PAMOUNT 'USD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: 'NUMBERS', T_SPELL-WORD, 'DECIMALS ', T_SPELL-DECWORD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM SPELL_AMOUNT USING PWRBTR PWAERS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SPELL_AMOUNT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            AMOUNT    = PAMOUNT&lt;/P&gt;&lt;P&gt;            CURRENCY  = PWAERS&lt;/P&gt;&lt;P&gt;            FILLER    = SPACE&lt;/P&gt;&lt;P&gt;            LANGUAGE  = 'E'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            IN_WORDS  = T_SPELL&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            NOT_FOUND = 1&lt;/P&gt;&lt;P&gt;            TOO_LARGE = 2&lt;/P&gt;&lt;P&gt;            OTHERS    = 3.&lt;/P&gt;&lt;P&gt;ENDFORM.                               " SPELL_AMOUNT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 12:15:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-conversion-based-on-currency/m-p/1829302#M353580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T12:15:19Z</dc:date>
    </item>
  </channel>
</rss>

