<?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: Logarithmic expressions in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/logarithmic-expressions/m-p/1170112#M122845</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;Chk this out as this is the simplest way to achieve what you wanted.&lt;/P&gt;&lt;P&gt;data: v_num type p, v_exp type p, v_res type p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_num = 10.&lt;/P&gt;&lt;P&gt;v_exp = '2.47'.&lt;/P&gt;&lt;P&gt;v_res = v_num ** v_exp.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; v_res.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jhansi.&lt;/P&gt;&lt;P&gt;Reward points for helpful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Feb 2006 16:20:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-03T16:20:43Z</dc:date>
    <item>
      <title>Logarithmic expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logarithmic-expressions/m-p/1170109#M122842</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 want to perform logarithmical expressions in ABAP.&lt;/P&gt;&lt;P&gt;For example i want to have the LOG10 from 300 and get it back with another function, which i don't know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 300, i use the line&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;lv_value := LOG10( 300 ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;to get the value 2,477...... in lv_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to use a function to get back the number 300 from 2,477.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know which function i have to use for that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Marcel Leeraar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2006 15:35:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logarithmic-expressions/m-p/1170109#M122842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-03T15:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: Logarithmic expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logarithmic-expressions/m-p/1170110#M122843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the EXP command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exp ( Log10 * Ln(10) )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgd&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Frédéric Girod&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2006 15:44:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logarithmic-expressions/m-p/1170110#M122843</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-02-03T15:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Logarithmic expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logarithmic-expressions/m-p/1170111#M122844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please see the following sample program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002 .

data: lv_value type p decimals 9.
data: lv_value2 type p decimals 2.


lv_value = log10( 300 ).

write:/ lv_value.

lv_value2 =  exp( lv_value  * log( 10 ) ) .

write:/ lv_value2.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2006 16:12:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logarithmic-expressions/m-p/1170111#M122844</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-03T16:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Logarithmic expressions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logarithmic-expressions/m-p/1170112#M122845</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;Chk this out as this is the simplest way to achieve what you wanted.&lt;/P&gt;&lt;P&gt;data: v_num type p, v_exp type p, v_res type p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_num = 10.&lt;/P&gt;&lt;P&gt;v_exp = '2.47'.&lt;/P&gt;&lt;P&gt;v_res = v_num ** v_exp.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; v_res.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jhansi.&lt;/P&gt;&lt;P&gt;Reward points for helpful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2006 16:20:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logarithmic-expressions/m-p/1170112#M122845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-03T16:20:43Z</dc:date>
    </item>
  </channel>
</rss>

