<?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: ABS statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482536#M559552</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;ABS like i.e. sign, ceil or trunc are so-called overloaded functions. That means that the type of the result is determined by the type of the argument.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When creating such functional methods using the class builder I learned that the RETURN parameter must be explicily typed. So my question is: Can you create overloaded functions with ABAP class builder?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jun 2007 07:21:17 GMT</pubDate>
    <dc:creator>Clemenss</dc:creator>
    <dc:date>2007-06-21T07:21:17Z</dc:date>
    <item>
      <title>ABS statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482530#M559546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone explain me the use of ABS statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg. f = abs(g).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:33:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482530#M559546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: ABS statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482531#M559547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;ABS statement gives the absolute value of any field&lt;/P&gt;&lt;P&gt;means if it is Negative it gives the positive value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:35:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482531#M559547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: ABS statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482532#M559548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use to convert -ve to +ve or viseversa&lt;/P&gt;&lt;P&gt;Use ABS function or multiple it with minus 1 are same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f1 = ABS ( f1 ).&lt;/P&gt;&lt;P&gt;f1 = f1 * -1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:35:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482532#M559548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: ABS statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482533#M559549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Camila,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement returns the absolute value of the number g, ie f will contain the absolute value of g. Absolute value means the value without taking into consideration the sign.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, if g has the value -10, f will get the value 10.&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;Renuka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:38:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482533#M559549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: ABS statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482534#M559550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;camila,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABS()--Means it will convert - sign to + sign&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Ex  :  F1 = -100.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;F2  = ABS ( f1 ).&lt;/P&gt;&lt;P&gt;Write : F2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ans: 100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward if useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 06:45:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482534#M559550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T06:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: ABS statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482535#M559551</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 to convert -ve to +ve or viseversa&lt;/P&gt;&lt;P&gt;Use ABS function or multiple it with minus 1 are same , which gives same result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for ex: &lt;/P&gt;&lt;P&gt;data a type i value -10.&lt;/P&gt;&lt;P&gt;a = ABS(a)&lt;/P&gt;&lt;P&gt;write a. o/p is 10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 07:01:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482535#M559551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T07:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: ABS statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482536#M559552</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;ABS like i.e. sign, ceil or trunc are so-called overloaded functions. That means that the type of the result is determined by the type of the argument.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When creating such functional methods using the class builder I learned that the RETURN parameter must be explicily typed. So my question is: Can you create overloaded functions with ABAP class builder?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 07:21:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482536#M559552</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-06-21T07:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: ABS statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482537#M559553</link>
      <description>&lt;P&gt;Feel like I'm being super picky on a 16 year old post...&lt;BR /&gt;but it's not technically correct to say "ABS function or multiple(sic) it with minus 1 are same"&lt;/P&gt;&lt;P&gt;If the original operand is &lt;EM&gt;negative&lt;/EM&gt;, this is true.&lt;/P&gt;&lt;P&gt;If the original operand is &lt;EM&gt;positive&lt;/EM&gt;... &lt;STRONG&gt;ABS &lt;/STRONG&gt;will return a positive result; &lt;STRONG&gt;* -1&lt;/STRONG&gt; will return a negative result...&lt;/P&gt;&lt;P&gt;So basically, like a cheerful developer... it removes any negativity...&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 15:21:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abs-statement/m-p/2482537#M559553</guid>
      <dc:creator>PatrickDean</dc:creator>
      <dc:date>2023-02-17T15:21:32Z</dc:date>
    </item>
  </channel>
</rss>

