<?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 Function  module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2040278#M419442</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 want a function module that convert integer into characher&lt;/P&gt;&lt;P&gt;ex if i give 1 it has to give FIRST and 2 then it has to give SECOND  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or do we have any other way to get that . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Gopan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Mar 2007 13:42:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-20T13:42:57Z</dc:date>
    <item>
      <title>Function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2040278#M419442</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 want a function module that convert integer into characher&lt;/P&gt;&lt;P&gt;ex if i give 1 it has to give FIRST and 2 then it has to give SECOND  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or do we have any other way to get that . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Gopan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2007 13:42:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2040278#M419442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-20T13:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: Function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2040279#M419443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:v_curr LIKE SPELL.
clear v_curr.
CALL FUNCTION 'SPELL_AMOUNT'
 EXPORTING
   AMOUNT          = 100
   CURRENCY        = ' '
*   FILLER          = ' '
*   LANGUAGE        = SY-LANGU
 IMPORTING
   IN_WORDS        = v_curr
 EXCEPTIONS
   NOT_FOUND       = 1
   TOO_LARGE       = 2
   OTHERS          = 3
          .
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.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2007 13:50:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2040279#M419443</guid>
      <dc:creator>former_member187255</dc:creator>
      <dc:date>2007-03-20T13:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: Function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2040280#M419444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gopan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go execute the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : t001.&lt;/P&gt;&lt;P&gt;DATA:v_curr(100).&lt;/P&gt;&lt;P&gt;DATA:  spell LIKE spell.&lt;/P&gt;&lt;P&gt;parameters : P_int type i.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SPELL_AMOUNT'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            amount    = p_int&lt;/P&gt;&lt;P&gt;            currency  = t001-waers&lt;/P&gt;&lt;P&gt;            filler    = space&lt;/P&gt;&lt;P&gt;            language  = sy-langu&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            in_words  = spell&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            not_found = 01&lt;/P&gt;&lt;P&gt;            too_large = 02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; MOVE spell-word TO v_curr.&lt;/P&gt;&lt;P&gt; WRITE : V_CURR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sreeni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2007 14:14:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2040280#M419444</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-20T14:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2040281#M419445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: amount TYPE bseg-wrbtr DEFAULT '67000.00'.
 
 
DATA hfield TYPE p DECIMALS 0.
TABLES spell.
 
MOVE amount TO hfield.
 
CALL FUNCTION 'SPELL_AMOUNT'
     EXPORTING
          amount   = hfield
*          currency = waers
*         language = 'EN'
     IMPORTING
          in_words = spell.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2007 14:24:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/2040281#M419445</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-20T14:24:21Z</dc:date>
    </item>
  </channel>
</rss>

