<?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: SAP SCRIPTS - Urgent Please in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-urgent-please/m-p/2350421#M518804</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 subroutines. In program use FM: 'SPELL_AMOUNT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Jun 2007 11:35:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-08T11:35:49Z</dc:date>
    <item>
      <title>SAP SCRIPTS - Urgent Please</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-urgent-please/m-p/2350418#M518801</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;     How can I convert currency in to words in SAP scripts.&lt;/P&gt;&lt;P&gt;     And how can I change currencies in to different country currencies.&lt;/P&gt;&lt;P&gt;     Please explain me with examples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;SAISRI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 11:31:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-urgent-please/m-p/2350418#M518801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T11:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SCRIPTS - Urgent Please</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-urgent-please/m-p/2350419#M518802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the FM &amp;lt;b&amp;gt;SPELL_AMOUNT&amp;lt;/b&amp;gt; and &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CONVERT_TO_LOCAL_CURRENCY&lt;/P&gt;&lt;P&gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 11:33:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-urgent-please/m-p/2350419#M518802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T11:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SCRIPTS - Urgent Please</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-urgent-please/m-p/2350420#M518803</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 the function module &lt;/P&gt;&lt;P&gt;spell_amount&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for inr use the function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this works less than hundred crores only&lt;/P&gt;&lt;P&gt;  IF G_AMOUNT LT '1000000000'.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'HR_IN_CHG_INR_WRDS'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        AMT_IN_NUM         = G_AMOUNT&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        AMT_IN_WORDS       = L_SPELLAMOUNT&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        DATA_TYPE_MISMATCH = 1&lt;/P&gt;&lt;P&gt;        OTHERS             = 2.&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;    ENDIF.&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;reward points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 11:33:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-urgent-please/m-p/2350420#M518803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T11:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SCRIPTS - Urgent Please</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-urgent-please/m-p/2350421#M518804</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 subroutines. In program use FM: 'SPELL_AMOUNT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 11:35:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-urgent-please/m-p/2350421#M518804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T11:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAP SCRIPTS - Urgent Please</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-urgent-please/m-p/2350422#M518805</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;we can convert  currency in to words in SAP scripts by using function modules.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SPELL_AMOUNT &amp;lt;/b&amp;gt; and &lt;/P&gt;&lt;P&gt;we can  change currencies in to different country currencies by using function modules.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;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&amp;lt;/b&amp;gt; . we call these FM in subroutine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or by using &amp;lt;b&amp;gt;set country key &amp;lt;key&amp;gt;&amp;lt;/b&amp;gt;  control statement also we can print the data asper country base. we keep this control statement in script edior.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;AshokReddy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 12:02:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-urgent-please/m-p/2350422#M518805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T12:02:55Z</dc:date>
    </item>
  </channel>
</rss>

