<?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: why don't the function module dump? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066849#M1504150</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the program flow the function module will not throw the dump.&lt;/P&gt;&lt;P&gt;But will be indicated in SLIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this happens in ECC Verions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for ex the fm &lt;STRONG&gt;F4_DXFILENAME_TOPRECURSION&lt;/STRONG&gt; has a exporting parameter FILEOPERATION&lt;/P&gt;&lt;P&gt;This param is not available in ecc6 , but still the fm works fine without dump.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Jun 2010 19:35:02 GMT</pubDate>
    <dc:creator>kesavadas_thekkillath</dc:creator>
    <dc:date>2010-06-28T19:35:02Z</dc:date>
    <item>
      <title>why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066840#M1504141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;one funciton module in the program.&lt;/P&gt;&lt;P&gt;like:&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'Z_AA_CHOKA_XXX'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            F_IP_GJAHR      = WK_GJAHR&lt;/P&gt;&lt;P&gt;            F_IP_NENDO_KBN  = TMP_CHAR&lt;/P&gt;&lt;P&gt;            F_IP_BETU16_KBN = CNS_BETU16_KBN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually. only parameter F_IP_GJAHR is defined in the SE37.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;extend check error:&lt;/P&gt;&lt;P&gt;The "EXPORTING" parameter "F_IP_NENDO_KBN" is not defined in the function module&lt;/P&gt;&lt;P&gt;interface "Z_AA_CHOKA_XXX" as a "IMPORTING" parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is strange, when I run the program, no dump happen. It should be dump as I expected and tested in other system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's the reason or there are some configurations?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 07:47:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066840#M1504141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-28T07:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066841#M1504142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;It happens. Nothing strange. &lt;/P&gt;&lt;P&gt;If you try commenting a parameter which is defined as mandatory in se37 then it will definitely dump. Try out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Uma Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 08:16:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066841#M1504142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-28T08:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066842#M1504143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check whether FM is getting executed or not. There will be no dump , in case FM is not getting executed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 08:21:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066842#M1504143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-28T08:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066843#M1504144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello Dave,&lt;/P&gt;&lt;P&gt;I see. But I tried it in another SAP system and the program dumped.   What the reason cause the difference?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 08:37:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066843#M1504144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-28T08:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066844#M1504145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Bhalla    	,&lt;/P&gt;&lt;P&gt;I debug the program. Actually , the code of function module is executed.&lt;/P&gt;&lt;P&gt;BTY, the system is new upgraded .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 08:41:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066844#M1504145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-28T08:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066845#M1504146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;are u working with same data in both the systems  ?&lt;/P&gt;&lt;P&gt;eg : &lt;/P&gt;&lt;P&gt;assume System A : where it is not giving the dump&lt;/P&gt;&lt;P&gt;                System B : where it is giving the dump&lt;/P&gt;&lt;P&gt;1 &amp;gt;there might be a scenario that when executed in A there is no data that u are passing in the extra parameters, wheras the data is present in the parameters when executed in B&lt;/P&gt;&lt;P&gt;2 &amp;gt; Are the A and B of same version ? I am sure they would not be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There happens lot of changes as the SAP version changes.&lt;/P&gt;&lt;P&gt;eg In some SAP standard function modules/BAPIs you will find parameters declared without any type , which is again strange but it not something strange , it gets allowed a far as that version is concerned.&lt;/P&gt;&lt;P&gt;I hope you understand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Uma Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 08:55:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066845#M1504146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-28T08:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066846#M1504147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;UmaDave - please spell words in out FULL. "You" not "u".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 11:53:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066846#M1504147</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2010-06-28T11:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066847#M1504148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The FM raised an exception....that might give you a dump.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 12:26:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066847#M1504148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-28T12:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066848#M1504149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess the parameter validation is brought about in the ECC version which will result in a dump for a invalid paramter while  it was allowed in the older 4.6x versions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 12:48:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066848#M1504149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-28T12:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066849#M1504150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the program flow the function module will not throw the dump.&lt;/P&gt;&lt;P&gt;But will be indicated in SLIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this happens in ECC Verions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for ex the fm &lt;STRONG&gt;F4_DXFILENAME_TOPRECURSION&lt;/STRONG&gt; has a exporting parameter FILEOPERATION&lt;/P&gt;&lt;P&gt;This param is not available in ecc6 , but still the fm works fine without dump.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 19:35:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066849#M1504150</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-06-28T19:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066850#M1504151</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; &lt;STRONG&gt;F4_DXFILENAME_TOPRECURSION&lt;/STRONG&gt;  has that parameter in IMPORT tab., and also available in ECC 6.0.  We r using &lt;STRONG&gt;EhP 4&lt;/STRONG&gt; package. It is available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FILEOPERATION	LIKE	DXFIELDS-FILEOPER&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: karthikeyan palaniayya on Jun 29, 2010 8:41 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 06:41:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066850#M1504151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-29T06:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066851#M1504152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;doubble clik on the function module from program and activate, &amp;amp; try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zashok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 08:59:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066851#M1504152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-29T08:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: why don't the function module dump?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066852#M1504153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;-&amp;gt; hi UmaDave ,&lt;/P&gt;&lt;P&gt;I create one test program. it is very simple and have very short code.  &lt;/P&gt;&lt;P&gt; same  data is passed to the function module in both A and B system. And I deleted all the code in function module, only parameter is left.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System B:  ECC 6.0 system for testing with unicode&lt;/P&gt;&lt;P&gt;System A:  ECC 6.0 system (upgraded from 4.6b) without unicode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also, I created a new program and function module in 4.6b. I found in 4.6b SAP doesn't check for the FM parameter.&lt;/P&gt;&lt;P&gt;I guess if  SAP also doesn't check for the FM parameter after upgrade without unicode.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 09:44:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-don-t-the-function-module-dump/m-p/7066852#M1504153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-29T09:44:42Z</dc:date>
    </item>
  </channel>
</rss>

