<?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 Fuction Module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317400#M794633</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;Is there any functional module to convert char number to currency text like below example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x = 12345678.00 change to 12,345,678.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Jan 2008 07:04:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-30T07:04:52Z</dc:date>
    <item>
      <title>Fuction Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317400#M794633</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;Is there any functional module to convert char number to currency text like below example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x = 12345678.00 change to 12,345,678.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 07:04:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317400#M794633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T07:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Fuction Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317401#M794634</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;Use FM HRCM_STRING_TO_AMOUNT_CONVERT&lt;/P&gt;&lt;P&gt;pass the char(amount) and decimal separator, thousand separator.&lt;/P&gt;&lt;P&gt;you get the char converted to amount/currency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 07:10:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317401#M794634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T07:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Fuction Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317402#M794635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the FM ISM_CONVERT_CHAR_TO_CURR or BAPI BAPI_CURRENCY_CONV_TO_INTERNAL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 07:12:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317402#M794635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T07:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: Fuction Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317403#M794636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  U can use this code&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'&lt;/P&gt;&lt;P&gt;EXPORTING DATE = BKPF-WWERT&lt;/P&gt;&lt;P&gt;FOREIGN_CURRENCY = BKPF-WAERS&lt;/P&gt;&lt;P&gt;LOCAL_CURRENCY = T001-WAERS&lt;/P&gt;&lt;P&gt;FOREIGN_AMOUNT = BSEG-WRBTR&lt;/P&gt;&lt;P&gt;RATE = BKPF-KURSF&lt;/P&gt;&lt;P&gt;TYPE_OF_RATE = 'M'&lt;/P&gt;&lt;P&gt;IMPORTING EXCHANGE_RATE = KURS&lt;/P&gt;&lt;P&gt;LOCAL_AMOUNT = BSEG-DMBTR&lt;/P&gt;&lt;P&gt;FOREIGN_FACTOR = FAKTOR-F&lt;/P&gt;&lt;P&gt;LOCAL_FACTOR = FAKTOR-L&lt;/P&gt;&lt;P&gt;FIXED_RATE = FIXKURS&lt;/P&gt;&lt;P&gt;EXCEPTIONS NO_RATE_FOUND = 4&lt;/P&gt;&lt;P&gt;NO_FACTORS_FOUND = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Plzz reward points if it helps.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 07:14:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317403#M794636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T07:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Fuction Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317404#M794637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the function module but it is giving the same value what i passed in the string. can you kindly tell how to use this function module or is there any other function module which ll change da value from 211881.00 to 211,881.00.&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;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 13:03:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317404#M794637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T13:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: Fuction Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317405#M794638</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;here are few function modules related to currency:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CURRENCY_AMOUNT_SAP_TO_IDOC - Convert currency to IDOC format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT_TO_LOCAL_CURRENCY - Conversion of currency&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLOI_PUT_SIGN_IN_FRONT Move the negative sign from the left hand side of a number, to the right hand side of the number. Note that The result will be left justified (like all&lt;/P&gt;&lt;P&gt;character fields), not right justifed as numbers normally are.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT_TO_FOREIGN_CURRENCY Convert local currency to foreign currency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT_TO_LOCAL_CURRENCY Convert from foreign currency to local currency&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example 1: Convert amount to/from string&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amount to string:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HRCM_AMOUNT_TO_STRING_CONVERT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;betrg = 3000&lt;/P&gt;&lt;P&gt;WAERS = 'DKK'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NEW_DECIMAL_SEPARATOR =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NEW_THOUSANDS_SEPARATOR =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;STRING = slam&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;String to amount:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HRCM_STRING_TO_AMOUNT_CONVERT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;string = slam2&lt;/P&gt;&lt;P&gt;DECIMAL_SEPARATOR = '.'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;THOUSANDS_SEPARATOR =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WAERS = 'HUF'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;BETRG = b2&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CONVERT_ERROR = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OTHERS = 2 &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward if useful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 14:09:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fuction-module/m-p/3317405#M794638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T14:09:46Z</dc:date>
    </item>
  </channel>
</rss>

