<?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 exit module error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315647#M1536154</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i was working on DMEE, i came across a scenario, where i needed to write to write a code like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  o_value = round( fpayhx-ubnky/940 + 1 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i compile this, i got an error saying:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*The syntax for a method specification is "objref-&amp;gt;method" or		*&lt;/P&gt;&lt;P&gt;*"class=&amp;gt;method". "class=&amp;gt;method". "class=&amp;gt;method". "class=&amp;gt;method".		*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know wat am i supposed to do with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks, &lt;/P&gt;&lt;P&gt;trishnau&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Oct 2010 10:21:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-07T10:21:21Z</dc:date>
    <item>
      <title>exit module error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315647#M1536154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i was working on DMEE, i came across a scenario, where i needed to write to write a code like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  o_value = round( fpayhx-ubnky/940 + 1 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i compile this, i got an error saying:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*The syntax for a method specification is "objref-&amp;gt;method" or		*&lt;/P&gt;&lt;P&gt;*"class=&amp;gt;method". "class=&amp;gt;method". "class=&amp;gt;method". "class=&amp;gt;method".		*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know wat am i supposed to do with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks, &lt;/P&gt;&lt;P&gt;trishnau&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Oct 2010 10:21:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315647#M1536154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-07T10:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: exit module error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315648#M1536155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand that you're using DMEE Exit Module to code the logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;o_value = round( fpayhx-ubnky/940 + 1 ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway i don't think there is any in-built ABAP function defined as 'ROUND'. You can use use the Function Module 'ROUND' to do the rounding of the values.&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>Thu, 07 Oct 2010 10:43:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315648#M1536155</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-10-07T10:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: exit module error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315649#M1536156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used the function module "round"  as following...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'ROUND'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    DECIMALS            = 0&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      INPUT               = fpayhx-ubnky/940+1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    SIGN                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     OUTPUT              = &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    INPUT_INVALID       = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    OVERFLOW            = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    TYPE_INVALID        = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    OTHERS              = 4&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it gives me an error again,&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data object "FPAYHX" has no component called "UBNKY/940", but there		&lt;/P&gt;&lt;P&gt;	is a component called "UBNKY".		&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since I am a beginner in ABAP, i need your guidance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Oct 2010 11:11:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315649#M1536156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-07T11:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: exit module error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315650#M1536157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ignore !!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Oct 2010 11:21:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315650#M1536157</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-10-07T11:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: exit module error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315651#M1536158</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;You cannot call a function module with an expression.&lt;/P&gt;&lt;P&gt;In this case, you have to compute the result of : fpayhx-ubnky / 940 + 1 in a variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : notice the spaces between the '/' and the operands&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Guillaume&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Oct 2010 12:00:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315651#M1536158</guid>
      <dc:creator>guillaume-hrc</dc:creator>
      <dc:date>2010-10-07T12:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: exit module error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315652#M1536159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can't pass a formula directly to a FM interface. You need to take it in a variable &amp;amp; pass to 'ROUND'.&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>Thu, 07 Oct 2010 12:00:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315652#M1536159</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-10-07T12:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: exit module error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315653#M1536160</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;Wat u can do is tat, u hav to declare a varable and store the rsult of the calculation there. Then pass that variable as the input to ur function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Data: Value type f.&lt;/P&gt;&lt;P&gt;      value = ( fpayhx-ubnky / 940 )  + 1 ).&lt;/P&gt;&lt;P&gt;call function ........&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; input = value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;importing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output = result  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know if it help u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Oct 2010 12:53:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exit-module-error/m-p/7315653#M1536160</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-07T12:53:22Z</dc:date>
    </item>
  </channel>
</rss>

