<?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 move value before decimals to integer in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651365#M1285833</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi MAtt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I regret posting that kind of a reply. I apologize for my mistake.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 May 2009 05:41:34 GMT</pubDate>
    <dc:creator>Mohamed_Mukhtar</dc:creator>
    <dc:date>2009-05-07T05:41:34Z</dc:date>
    <item>
      <title>How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651351#M1285819</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;I am having value A which is defined in deciamls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A = '1.765'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to move the value to B only the digit one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what B should be defined oF? how many values before the decimal i need to move that many values to b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;generally not more that 2 char A is having before decimal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A = ' 12.375 '    B = 12&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A = 8.65' b = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can we achieve?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 13:30:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651351#M1285819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T13:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651352#M1285820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;field1 type p decimals 0...&lt;/P&gt;&lt;P&gt;field1 = '12.22'&lt;/P&gt;&lt;P&gt;value of field will be 12.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 13:35:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651352#M1285820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T13:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651353#M1285821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I this case, declare b as type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b = floor(a).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b will have the value that you wanted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 13:36:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651353#M1285821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T13:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651354#M1285822</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; Hi all,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; I am having value A which is defined in deciamls.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; A = '1.765'.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; i want to move the value to B only the digit one.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; what B should be defined oF? how many values before the decimal i need to move that many values to b.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; generally not more that 2 char A is having before decimal.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; A = ' 12.375 '    B = 12&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; A = 8.65' b = 8.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; how can we achieve?&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; regards&lt;/P&gt;&lt;P&gt;&amp;gt; sas&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A = FLOOR( A ) .&lt;/P&gt;&lt;P&gt;B = A .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 13:37:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651354#M1285822</guid>
      <dc:creator>Pawan_Kesari</dc:creator>
      <dc:date>2009-05-06T13:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651355#M1285823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI PAWAN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FLOOR is fine or TRUNC keyword is fine?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please any one answer before i relase my transport &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 13:42:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651355#M1285823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T13:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651356#M1285824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess in your case FLOOR would do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hey. I dont see a keyword called TRUNC. Are you sure about that?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Babu Kilari&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Babu Kilari on May 6, 2009 7:23 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 13:44:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651356#M1285824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T13:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651357#M1285825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 13:45:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651357#M1285825</guid>
      <dc:creator>Mohamed_Mukhtar</dc:creator>
      <dc:date>2009-05-06T13:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651358#M1285826</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;PRE&gt;&lt;CODE&gt;data: v_data1 type p decimals 3 value '12.860',
      v_char1 type char20,
      v_char2 type char20,
      v_char3 type char20.

write v_data1 to v_char1.

split v_char1 at '.' into v_char2 v_char3.

write:/ v_char2, v_char3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above v_char2 holds the digit value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks\&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 13:50:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651358#M1285826</guid>
      <dc:creator>former_member222860</dc:creator>
      <dc:date>2009-05-06T13:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651359#M1285827</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; hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;CODE&gt;data : a type i value '1.765',
&amp;gt;           b type i,
&amp;gt;           c type i.
&amp;gt; split a at '.' into b c.
&amp;gt; write :/ b , c.&lt;/CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Thanks and regards&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;That doesn't even syntax check!&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;"A" must be a character-like data object (data type C, N, D, T, or&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;STRING) field string).&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 14:28:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651359#M1285827</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-05-06T14:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651360#M1285828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: a(10) TYPE c ,&lt;/P&gt;&lt;P&gt;      lv_num1(10) TYPE c,&lt;/P&gt;&lt;P&gt;     lv_num2 TYPE c.&lt;/P&gt;&lt;P&gt;a = '12.12'.&lt;/P&gt;&lt;P&gt;SPLIT a  AT '.' INTO lv_num1&lt;/P&gt;&lt;P&gt;                       lv_num2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: lv_num1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: BrightSide on May 6, 2009 3:59 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 14:45:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651360#M1285828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T14:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651361#M1285829</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;it will resolve your issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;data: a type p decimals 2 value '8.65',&lt;/P&gt;&lt;P&gt;      b type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b = TRUNC( a ).&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Peranandam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 17:03:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651361#M1285829</guid>
      <dc:creator>Peranandam</dc:creator>
      <dc:date>2009-05-06T17:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651362#M1285830</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; I guess in your case FLOOR would do.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;STRONG&gt;Hey. I dont see a keyword called TRUNC. Are you sure about that?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Thanks,&lt;/P&gt;&lt;P&gt;&amp;gt; Babu Kilari&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Edited by: Babu Kilari on May 6, 2009 7:23 PM&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Babu,&lt;/P&gt;&lt;P&gt;Thanks for your response. If u take F1 help on FLOOR u would observe the TRUNC just down the FLOOR word.Just make a note &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is for this scenario what best suits FLOOR or TRUNC. sap help is not clear enough to understand is there any one here....&lt;/P&gt;&lt;P&gt;PS: Transport stoped &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 17:26:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651362#M1285830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T17:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651363#M1285831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Sas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could see that now. Thanks for the information yaar. If you see that table, Return value description says that trunc function gives you the Value of the integer part of the argument passed. So, this can also be used for your purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, when you consider the floor function it does the same functionality but generally it is used in a scenario where you are trying to round off the value to the closest integer. Ciel function works in a different way as it round offs the value to the highest integer. So, these two functions depend on the decimal part of the argument that you pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, In your case Floor/Trunc gives you the same result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note: The actual difference come in to picture if you are passing the negative values as an argument to the function. For example,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;b=FLoor(-5.45) would give you -6&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;b=Trunc(-5.45) would give you -5&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Now you can decide which one to use.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If you are sure that you are not passing negative values, then use either&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If you are not sure, then use TRUNC.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this clears the dilemma....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Babu Kilari&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Babu Kilari on May 7, 2009 9:15 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Babu Kilari on May 7, 2009 9:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 03:43:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651363#M1285831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-07T03:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651364#M1285832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for CRYSTAL clear response Babu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its pretty much clear now...actually i am passing the months value to this which are coming in decimals just to take the value...so Months are always +ve i think either can work  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 05:32:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651364#M1285832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-07T05:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to move value before decimals to integer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651365#M1285833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi MAtt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I regret posting that kind of a reply. I apologize for my mistake.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 05:41:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-move-value-before-decimals-to-integer/m-p/5651365#M1285833</guid>
      <dc:creator>Mohamed_Mukhtar</dc:creator>
      <dc:date>2009-05-07T05:41:34Z</dc:date>
    </item>
  </channel>
</rss>

