<?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 spell in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693177#M623173</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gupta&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use spell_amount fm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before using split the string into two strings&lt;/P&gt;&lt;P&gt;str1= 1000&lt;/P&gt;&lt;P&gt;str2 = 40&lt;/P&gt;&lt;P&gt;now use spell_amount to two strings &lt;/P&gt;&lt;P&gt;and then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;string1 has one thousand &lt;/P&gt;&lt;P&gt;and string2two has fourty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;finally concatenate str1 ' ' str2 'paise'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&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;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;       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;            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;P&gt;&lt;/P&gt;&lt;P&gt;Please Reward points to all helpful answers &lt;/P&gt;&lt;P&gt;kiran.M&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kiran Machavarapu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Aug 2007 11:18:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-14T11:18:03Z</dc:date>
    <item>
      <title>amount spell</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693172#M623168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everybody,&lt;/P&gt;&lt;P&gt;                   after coverting amount in words , the amount part after decimal is not showing for e.g.  1000.40 is showing one thousand but 40 paise is not coming ,&lt;/P&gt;&lt;P&gt;pls help me regarding this matter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;pankaj&lt;/P&gt;&lt;P&gt;abap developer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 11:09:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693172#M623168</guid>
      <dc:creator>former_member841898</dc:creator>
      <dc:date>2007-08-14T11:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: amount spell</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693173#M623169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hope you are using FM SPELL_AMOUNT.&lt;/P&gt;&lt;P&gt;pass currency as INR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can also see decimal value.Check the below one from SE37&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN_WORDS                                                                                &lt;/P&gt;&lt;P&gt;NUMBER                         000000000001400           &lt;/P&gt;&lt;P&gt;       DECIMAL                        400                       &lt;/P&gt;&lt;P&gt;       CURRDEC                         2                        &lt;/P&gt;&lt;P&gt;       WORD                           &amp;lt;b&amp;gt;ONE THOUSAND FOUR HUNDRED&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;       DECWORD                        &amp;lt;b&amp;gt;FOURTY&amp;lt;/b&amp;gt;                    &lt;/P&gt;&lt;P&gt;       DIG01                          ZERO                      &lt;/P&gt;&lt;P&gt;       DIG02                          ZERO                      &lt;/P&gt;&lt;P&gt;       DIG03                          FOUR                      &lt;/P&gt;&lt;P&gt;       DIG04                          ONE                       &lt;/P&gt;&lt;P&gt;       DIG05                          ZERO                      &lt;/P&gt;&lt;P&gt;       DIG06                          ZERO                      &lt;/P&gt;&lt;P&gt;       DIG07                          ZERO                      &lt;/P&gt;&lt;P&gt;       DIG08                          ZERO                      &lt;/P&gt;&lt;P&gt;       DIG09                          ZERO                      &lt;/P&gt;&lt;P&gt;       DIG10                          ZERO                      &lt;/P&gt;&lt;P&gt;       DIG11                          ZERO                      &lt;/P&gt;&lt;P&gt;       DIG12                          ZERO                      &lt;/P&gt;&lt;P&gt;       DIG13                          ZERO                      &lt;/P&gt;&lt;P&gt;       DIG14                          ZERO                      &lt;/P&gt;&lt;P&gt;       DIG15                          ZERO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eswar Kanakanti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 11:13:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693173#M623169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T11:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: amount spell</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693174#M623170</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 think u declared variable is not in decimal type. or  some value it won't convert decimals it will take comma(,)  bcz convertion routines will be there that perticulor field.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is use full reward me a pointss.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards ,&lt;/P&gt;&lt;P&gt;praveen,,,,,,,.........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 11:14:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693174#M623170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T11:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: amount spell</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693175#M623171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;report zrich_0003 .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: i type i.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: c(10) type c.&lt;/P&gt;&lt;P&gt;data: p(10) type p decimals 2.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;c = '3.520,00'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;catch system-exceptions convt_no_number = 1.&lt;/P&gt;&lt;P&gt;  p = c.&lt;/P&gt;&lt;P&gt;endcatch.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;if sy-subrc  = 1.&lt;/P&gt;&lt;P&gt;  clear sy-subrc.&lt;/P&gt;&lt;P&gt;  while sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    replace ',' with space into c.&lt;/P&gt;&lt;P&gt;  endwhile.&lt;/P&gt;&lt;P&gt;  clear sy-subrc.&lt;/P&gt;&lt;P&gt;  while sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    replace '.' with space into c.&lt;/P&gt;&lt;P&gt;  endwhile.&lt;/P&gt;&lt;P&gt;  condense c no-gaps.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;p = c / 100.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;write:/ p.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 11:14:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693175#M623171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T11:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: amount spell</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693176#M623172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Currency-specific Output Formats&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To format the output of a number field according to a specific currency, use the CURRENCY option of the WRITE statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE &amp;lt;f&amp;gt; CURRENCY &amp;lt;c&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement determines the number of decimal places in the output according to the currency &amp;lt;c&amp;gt;. If the contents of &amp;lt;c&amp;gt; exist in table TCURX as currency key CURRKEY, the system sets the number of decimal places according to the entry CURRDEC in TCURX. Otherwise, it uses the default setting of two decimal places. This means that table TCURX must contain only exceptions where the number of decimal places is unequal to 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output format for currencies does not depend on the decimal places of a number that may exist in the program. The system uses only the sequence of digits. This sequence of digits thus represents an amount specified in the smallest unit of the currency in use, for example Cents for US Dollar (USD) or Francs for Belgian Francs (BEF). For processing currency amounts in ABAP programs, SAP therefore recommends that you use data type P without decimal places.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_list_write_currency LINE-SIZE 40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: num1 TYPE p  DECIMALS 4 VALUE '12.3456',&lt;/P&gt;&lt;P&gt;      num2 TYPE p  DECIMALS 0 VALUE '123456'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET COUNTRY 'US'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: 'USD', num1 CURRENCY 'USD', num2 CURRENCY 'USD',&lt;/P&gt;&lt;P&gt;     / 'BEF', num1 CURRENCY 'BEF', num2 CURRENCY 'BEF',&lt;/P&gt;&lt;P&gt;     / 'KUD', num1 CURRENCY 'KUD', num2 CURRENCY 'KUD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This program defines two packed numbers NUM1 and NUM2, containing the same sequence of digits, but different numbers of decimal places. These numbers appear in the output in several currencies:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each currency, the output formats of NUM1 and NUM2 are the same, since they refer to the sequence of digits only. The currency US Dollar (USD) appears in the default setting of two decimal places, since the smallest unit is one Cent and a hundredth of a Dollar. For Belgian Francs (BEF), CURRDEC in TCURX is set to 0, since the Belgian Franc has no smaller units. Dinars from Kuwait (KUD) have units of a thousandth and therefore three decimal places (CURRDEC is 3).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 11:15:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693176#M623172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T11:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: amount spell</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693177#M623173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gupta&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use spell_amount fm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before using split the string into two strings&lt;/P&gt;&lt;P&gt;str1= 1000&lt;/P&gt;&lt;P&gt;str2 = 40&lt;/P&gt;&lt;P&gt;now use spell_amount to two strings &lt;/P&gt;&lt;P&gt;and then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;string1 has one thousand &lt;/P&gt;&lt;P&gt;and string2two has fourty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;finally concatenate str1 ' ' str2 'paise'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&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;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;       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;            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;P&gt;&lt;/P&gt;&lt;P&gt;Please Reward points to all helpful answers &lt;/P&gt;&lt;P&gt;kiran.M&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Kiran Machavarapu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 11:18:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693177#M623173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T11:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: amount spell</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693178#M623174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pankaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the Code for u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZSEL_AMOUNT                             .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_AMT(10) TYPE P DECIMALS 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : WA_WORD TYPE SPELL.&lt;/P&gt;&lt;P&gt;DATA: V_WORD TYPE STRING.&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          = P_AMT&lt;/P&gt;&lt;P&gt;   CURRENCY        = 'INR'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FILLER          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   LANGUAGE        = SY-LANGU&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   IN_WORDS        = WA_WORD&lt;/P&gt;&lt;P&gt; EXCEPTIONS&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;          .&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;&lt;/P&gt;&lt;P&gt;CONCATENATE wa_WORD-word SPACE&lt;/P&gt;&lt;P&gt;             '  Rupees'&lt;/P&gt;&lt;P&gt;             wa_word-decword&lt;/P&gt;&lt;P&gt;             '  Paise'&lt;/P&gt;&lt;P&gt;       into v_word.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write:/ v_word.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if Helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 11:29:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693178#M623174</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-08-14T11:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: amount spell</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693179#M623175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx mr. verma ur code for amount spell works well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best wishes &lt;/P&gt;&lt;P&gt;pankaj gupta&lt;/P&gt;&lt;P&gt;abap dev.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2007 09:04:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693179#M623175</guid>
      <dc:creator>former_member841898</dc:creator>
      <dc:date>2007-08-17T09:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: amount spell</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693180#M623176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everybody,&lt;/P&gt;&lt;P&gt;                  the code for amount spell works very well.&lt;/P&gt;&lt;P&gt;             &lt;/P&gt;&lt;P&gt;                         i have work this out for simple report.&lt;/P&gt;&lt;P&gt;                                but problem arises to work in alv,&lt;/P&gt;&lt;P&gt;                     i have to use block alv is it?    &lt;/P&gt;&lt;P&gt;  thanx all of u.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;pankaj gupta&lt;/P&gt;&lt;P&gt;abap dev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Aug 2007 09:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/amount-spell/m-p/2693180#M623176</guid>
      <dc:creator>former_member841898</dc:creator>
      <dc:date>2007-08-17T09:09:18Z</dc:date>
    </item>
  </channel>
</rss>

