<?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: How to trace Function Modules ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415927#M200051</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;remember, though, that many function modules are simply wrappers for other function modules. Breakpoints will hit these, as will SE30. Searching through the source will not. it will find the first level FM calls, but nothing about what those FMs themselves call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know what the level of detail required is...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Jul 2006 14:24:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-06T14:24:05Z</dc:date>
    <item>
      <title>How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415916#M200040</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; Can anybody tell me how I can trace or find all the function modules called by a trancaction ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried it using transaction ST05 but didn't got the expected result. Is there any other way to find it other than debugging the transaction ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the same for transaction "VK12".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ashwa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 06:38:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415916#M200040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T06:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415917#M200041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;search in the Program itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;search terms are Call or BAPI or Commit.&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;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 06:40:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415917#M200041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T06:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415918#M200042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to debugger  mode.&lt;/P&gt;&lt;P&gt;and  make  break point on statement  call transaction u can get break point  on all fm.&lt;/P&gt;&lt;P&gt;just  click f8 to  go another  fm.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 06:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415918#M200042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T06:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415919#M200043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Place a BREAK_POINT at statement CALL FUNCTION and then when you execute the transaction, it will stop at every function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note :Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 06:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415919#M200043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T06:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415920#M200044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;one way is going inside the program for the transaction ( SE93)..then putting a search in the program for CALL FUNCTION..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 06:42:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415920#M200044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T06:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415921#M200045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashwa,&lt;/P&gt;&lt;P&gt;Approach it in this way. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Goto the transaction VK12, first screen (Change Condition records). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Then in the command prompt enter &amp;lt;b&amp;gt;/h&amp;lt;/b&amp;gt;, ie.. switch debugging on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)Hit Enter, will enter the debugging mode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4)Then in the MENU BAR goto Breakpoints&lt;DEL&gt;&amp;gt;Breakpoints At&lt;/DEL&gt;&amp;gt;Statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5)Enter &amp;lt;b&amp;gt;CALL&amp;lt;/b&amp;gt; here &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6)Save and execute (F8)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now your debugger  will stop at all CALL statements, and thus you can trace the FM's called. &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;Arun Sambargi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 06:46:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415921#M200045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T06:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415922#M200046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashwa,&lt;/P&gt;&lt;P&gt;Active debugger at any point in the transaction.Execute the transaction.There is one tab 'CALL' Press it.You will get all the FM's used in the transaction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 06:48:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415922#M200046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T06:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415923#M200047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys.. thanks for your inputs... but I want to know is there any transaction provided by SAP which traces all the calls to FM's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know debugging is one of the option , but I think there should be some transaction like ST05 to do the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashwa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 06:49:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415923#M200047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T06:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415924#M200048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use the runtime analysis, SE30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make sure to use a special variant to track function module calls. run the transaction, and then look at the output. The list will show every function module call made.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;remember though, that this traes only the path you take through thje code. there may be many more function modules used that you never see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE30 is used here a lot for test coverage analysis, and runtime improvement analysis.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 12:50:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415924#M200048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T12:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415925#M200049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use report RPR_ABAP_SOURCE_SCAN with serach string CALL FUNCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 12:58:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415925#M200049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T12:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415926#M200050</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 want to trace all the Function modules used in Transaction then you should Globally search in the program. or else in Debugging keep the break point for &amp;lt;b&amp;gt;CALL FUNCTION&amp;lt;/b&amp;gt; .this will give Function module -&amp;gt;fucntion calls also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 14:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415926#M200050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T14:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415927#M200051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;remember, though, that many function modules are simply wrappers for other function modules. Breakpoints will hit these, as will SE30. Searching through the source will not. it will find the first level FM calls, but nothing about what those FMs themselves call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know what the level of detail required is...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 14:24:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415927#M200051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T14:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415928#M200052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Trace is the right method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly provide the steps you are following for doing trace.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Surpreet Bal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 14:33:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415928#M200052</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T14:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415929#M200053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In SE30 you can trace the transaction/program you want using the option "In Dialog".&lt;/P&gt;&lt;P&gt;The result will be a list of the runtime measurement.&lt;/P&gt;&lt;P&gt;You have to open the results one by one to find CALL FUNCTION option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 13:18:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415929#M200053</guid>
      <dc:creator>filiperittercruz</dc:creator>
      <dc:date>2014-03-12T13:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415930#M200054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashwani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prg for given tcode is SAPMV13A. Go to that program press search button of standard toolbar&lt;/P&gt;&lt;P&gt;and follow below steps:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/408820" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/408833" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then u can get list of function modules used in that tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vineesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 13:35:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415930#M200054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-12T13:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415931#M200055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashwani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use transaction STAD, fill in the name of the transaction used (and users, etc) and you can get all the info this transactions is doing (and the called FM's).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Andre&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 13:41:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415931#M200055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-12T13:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to trace Function Modules ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415932#M200056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ST05 is SQL trace, SAT is Abap trace (or good old SE30 for old systems)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 14:02:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-trace-function-modules/m-p/1415932#M200056</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2014-03-12T14:02:37Z</dc:date>
    </item>
  </channel>
</rss>

