<?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: Function Module not getting called in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723605#M1298598</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here is what you can do, put a break point in the first line of the function. And make sure there is a commit work implicit or explicit after the function call. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because only a commit work will only tigger the call to the function when you use the 'IN UPDATE TASK' addition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Jun 2009 13:05:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-11T13:05:20Z</dc:date>
    <item>
      <title>Function Module not getting called</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723601#M1298594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am calling a Z function module created by me like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; When I do F5 while debugging, the debugger does not enter the FM at all.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZZBAPI_BUPA_ROLE_ADD' IN UPDATE TASK       &lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;           businesspartner                = ls_but000-partner&lt;/P&gt;&lt;P&gt;           businesspartnerrole            = 'BUP002' .             "Prospective Customer/Prospect&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working in sandbox system but is not working in development system.&lt;/P&gt;&lt;P&gt;I have put the same attribute in processing type as update module and start immediately in the attribute section of the FM. I have also activated it but it is not working in development system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody tell me the fix for this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sangeeta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 07:24:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723601#M1298594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T07:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module not getting called</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723602#M1298595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sangeeta,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Execute your Function Module from se37 and then see if it really works or not.&lt;/P&gt;&lt;P&gt;If its working in se37 then use sy-subrc = 0 when calling this FM.&lt;/P&gt;&lt;P&gt;if subrc NE 0 while debugging, check the last statement before calling the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ibrar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 07:40:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723602#M1298595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T07:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module not getting called</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723603#M1298596</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;If you have used the xtension With update task it will not go inside the function module... To debug it first you have to remove the UPdate task extension , debug and test it adn then puit it back again...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 07:42:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723603#M1298596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T07:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module not getting called</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723604#M1298597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is anybody having the answer as I have not  been able to figure out. &lt;/P&gt;&lt;P&gt;In sandbox system, the FM is working fine but in development system the FM is not getting invoked for CRM Web UI only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to debug it by saving update debugger but it is not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 12:55:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723604#M1298597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T12:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module not getting called</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723605#M1298598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here is what you can do, put a break point in the first line of the function. And make sure there is a commit work implicit or explicit after the function call. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because only a commit work will only tigger the call to the function when you use the 'IN UPDATE TASK' addition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 13:05:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723605#M1298598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T13:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module not getting called</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723606#M1298599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This is happening for the simple reason that you have called the FM in update task.&lt;/P&gt;&lt;P&gt;It will go to this FM oonly in update task.&lt;/P&gt;&lt;P&gt;Turn on Update debugging in your debugger and you will see that it goes to this FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 13:10:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723606#M1298599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T13:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module not getting called</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723607#M1298600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have explictely specified commit work after the FM in update task call but it is throwing dump.&lt;/P&gt;&lt;P&gt;This particular code which I have mentioned above is working in sandbox but not in development.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, since I am doing from Web UI, so I have put external debugging. When I am trying to save the particular update setting in debugging which you  need to debug this kind of FMs, it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sangeeta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 13:43:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723607#M1298600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T13:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module not getting called</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723608#M1298601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the dump analysis ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 21:26:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-not-getting-called/m-p/5723608#M1298601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-16T21:26:04Z</dc:date>
    </item>
  </channel>
</rss>

