<?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: How to avoid alphabets while calculation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982197#M1341033</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try this....This is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;  w_value(30) type c value '9DT108657',&lt;/P&gt;&lt;P&gt;w_len type i,&lt;/P&gt;&lt;P&gt;w_i type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_len = strlen( w_value ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do w_len times.&lt;/P&gt;&lt;P&gt;if w_value+w_i(1) CA sy-abcde.&lt;/P&gt;&lt;P&gt;  w_value+w_i(1) = ' '.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;add 1 to w_i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;subtract 1 from w_len.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;condense w_value no-gaps.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; w_value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Aug 2009 09:40:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-12T09:40:49Z</dc:date>
    <item>
      <title>How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982185#M1341021</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 m doing some calculation using two fields which contain values in numbers and alphabets and also alpha numberic. Requirement is i should skip the alphabet values and pick only number values and do the caluculation. What is the condition should i give to achive this? And also for alphanumeric values like 9DTI10000789, i should pick only the number part. How to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ezhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 07:42:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982185#M1341021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T07:42:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982186#M1341022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For 9DTI10000789 what result do you expect. 910000789?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, you can use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TRANSLATE value TO UPPER CASE.
TRANSLATE value USING 'A B C D E F G H I J K L M N O P Q R S T U V W X Y Z '.
CONDENSE value NO-GAPS&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An alternative is to consider each character of the string at a time using value+offset(length).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the alpha part fixed?  Then you could just use value(1) to get '9' and value+4(8) to  get '10000789'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 07:47:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982186#M1341022</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-08-12T07:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982187#M1341023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ezhil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please explain if you have "9DTI10000789" do you want "910000789" or "10000789"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 07:48:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982187#M1341023</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-08-12T07:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982188#M1341024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use fm PREPARE_STRING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 07:49:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982188#M1341024</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2009-08-12T07:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982189#M1341025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Requirement is i should skip the alphabet values and pick only number values and do the caluculation. &lt;/P&gt;&lt;P&gt;&amp;gt; Ezhil&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if not a CA sy-abcde or not b CA Sy-abcde.
c = a + b.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 07:51:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982189#M1341025</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-08-12T07:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982190#M1341026</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;&lt;/P&gt;&lt;P&gt;                 1                      2                   3 &lt;/P&gt;&lt;P&gt;Field A: 900000000    AAAAAAA   9DTI10000000&lt;/P&gt;&lt;P&gt;Field B: 999999999    ZZZZZZZZ   9DTI10000099&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like this, the values are there, Here column 1 is no problem. Column 2 contains only alphabets, so i should totally skip this. And column 3 contains alphanumberic values so  i should consider only number part (10000000 and 10000099).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ezhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 07:58:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982190#M1341026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T07:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982191#M1341027</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;var = fieldA-col3+4(8).&lt;/P&gt;&lt;P&gt;it will give you '10000000'&lt;/P&gt;&lt;P&gt;same for fieldB-col3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ch(15) VALUE '9DTI10000000',&lt;/P&gt;&lt;P&gt;      var(8).&lt;/P&gt;&lt;P&gt;var = ch+4(8).&lt;/P&gt;&lt;P&gt;WRITE / var.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: mayank jain on Aug 12, 2009 10:06 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: mayank jain on Aug 12, 2009 10:07 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 08:04:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982191#M1341027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T08:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982192#M1341028</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;&lt;/P&gt;&lt;P&gt;  If the positions of the number to be use are fixed you can use off sets like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 2 3 &lt;/P&gt;&lt;P&gt;Field A: 900000000 AAAAAAA 9DTI10000000&lt;/P&gt;&lt;P&gt;Field B: 999999999 ZZZZZZZZ 9DTI10000099&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: lv_field(10).

move itab-col3+4(8) to lv_field.

result = lv_field + itab-col1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is not fixed and would only appear on the left hand side you can do like below:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
do.
 if itab-col3 ca sy-abdce.
 shift itab-col3 left by 1 places.
else.
exit.
endif
enddo.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 08:10:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982192#M1341028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T08:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982193#M1341029</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;Check this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this for your third column&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data : lv_a TYPE String VALUE '9DTI10000789'.
data : lv_b TYPE string,
       lv_c TYPE string.

REPLACE REGEX '([[:alpha:]])(\d)' IN lv_a WITH '$1#$2'.
SPLIT lv_a AT '#' INTO lv_b lv_c.
WRITE:/ lv_b.
WRITE:/ lv_c.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To check if there a string contains any alphabets&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data : lv_a TYPE String VALUE 'DTI'.
if lv_a CO sy-abcde.
  WRITE: 'YES'.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this for your second column.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 08:15:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982193#M1341029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T08:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982194#M1341030</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;The positions are not fixed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ezhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 08:17:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982194#M1341030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T08:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982195#M1341031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in such case you have to use offset&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;find the length of col3.&lt;/P&gt;&lt;P&gt;now set the offset to string length.&lt;/P&gt;&lt;P&gt;now check the char. if it is number or char at offset.&lt;/P&gt;&lt;P&gt;if number(0-9) subtract offset by 1 and repeate the procedure untill you fine the first char. in the string.&lt;/P&gt;&lt;P&gt;once you find the char. take the value from offset+1 to string length to another variable.&lt;/P&gt;&lt;P&gt;this will be the numeric part of col3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: mayank jain on Aug 12, 2009 10:28 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 08:28:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982195#M1341031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T08:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982196#M1341032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ch(15) VALUE '9DTI10000000123',&lt;/P&gt;&lt;P&gt;var(15),&lt;/P&gt;&lt;P&gt;len TYPE i,&lt;/P&gt;&lt;P&gt;ia type i.&lt;/P&gt;&lt;P&gt;len = STRLEN( ch ).&lt;/P&gt;&lt;P&gt;ia = len - 1.&lt;/P&gt;&lt;P&gt;DO len  TIMES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF ch&lt;EM&gt;ia(1) ne '0' and ch&lt;/EM&gt;ia(1) ne '1' and ch&lt;EM&gt;ia(1) ne '2' and ch&lt;/EM&gt;ia(1) ne '3' and&lt;/P&gt;&lt;P&gt;  ch&lt;EM&gt;ia(1) ne '4' and ch&lt;/EM&gt;ia(1) ne '5' and ch&lt;EM&gt;ia(1) ne '6' and ch&lt;/EM&gt;ia(1) ne '7' and ch&lt;EM&gt;ia(1) ne '8' and ch&lt;/EM&gt;ia(1) ne '9'.&lt;/P&gt;&lt;P&gt; add 1 to ia.&lt;/P&gt;&lt;P&gt; len = len - ia.&lt;/P&gt;&lt;P&gt;var = ch+ia(len).&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;  ia = ia - 1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;IF var IS INITIAL.&lt;/P&gt;&lt;P&gt;var = ch.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;WRITE / var.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: mayank jain on Aug 12, 2009 11:02 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 08:57:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982196#M1341032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T08:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982197#M1341033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try this....This is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;  w_value(30) type c value '9DT108657',&lt;/P&gt;&lt;P&gt;w_len type i,&lt;/P&gt;&lt;P&gt;w_i type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_len = strlen( w_value ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do w_len times.&lt;/P&gt;&lt;P&gt;if w_value+w_i(1) CA sy-abcde.&lt;/P&gt;&lt;P&gt;  w_value+w_i(1) = ' '.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;add 1 to w_i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;subtract 1 from w_len.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;condense w_value no-gaps.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; w_value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 09:40:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982197#M1341033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T09:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid alphabets while calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982198#M1341034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everybody. I solved the problem using sy-abcde.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 14:47:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-alphabets-while-calculation/m-p/5982198#M1341034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T14:47:13Z</dc:date>
    </item>
  </channel>
</rss>

