<?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 download in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620816#M277754</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this link:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="298388"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;check the program:&lt;/P&gt;&lt;P&gt;SAPBC405_OTH_DOWNLOAD_SOURCE  iif you are on 4.7 or above.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Oct 2006 11:03:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-06T11:03:54Z</dc:date>
    <item>
      <title>function module download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620813#M277751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frnd's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my appliction i want to download all the function modules and includes when i enter the package name how to do this using coding.&lt;/P&gt;&lt;P&gt;is there any sap function modules to downlaod it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;P&gt;Suganya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 10:47:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620813#M277751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T10:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: function module download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620814#M277752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First check in  tadir that the given package is valid&lt;/P&gt;&lt;P&gt;    SELECT SINGLE devclass FROM tadir INTO ws_devclass  WHERE devclass = p_devcls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select all the records from TADIR table where OBJECT = 'FUGR' and PGMID = 'R3TR '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this way u can get all the FUnction group for that package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For getting the function module under the function module use the FM &amp;lt;b&amp;gt;RS_FUNCTION_POOL_CONTENTS&amp;lt;/b&amp;gt; to get all the function module under the Function group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usign the table &amp;lt;b&amp;gt;tfdir&amp;lt;/b&amp;gt; get the program name of the Function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the FM &amp;lt;b&amp;gt;'GET_INCLUDETAB'&amp;lt;/b&amp;gt; get all the includes &lt;/P&gt;&lt;P&gt;for that PRogram name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at the internal table which you got from the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the READ REPORT prog INTO itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Download the contents to the place where you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it is helpfull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 10:52:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620814#M277752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T10:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: function module download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620815#M277753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can do the needful by following the below logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Check the validity of the function group.&lt;/P&gt;&lt;P&gt;2. Get the ABAPs information for the particular group from TaDIR.&lt;/P&gt;&lt;P&gt;3. Loop at the ABAPs.&lt;/P&gt;&lt;P&gt;     read the report into an internal table.&lt;/P&gt;&lt;P&gt;     append the report in output table.&lt;/P&gt;&lt;P&gt;   endloop.&lt;/P&gt;&lt;P&gt;4. Download the output table with FM gui_download.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can combine 3 and 4 steps if you wish to download it as individual ABAPs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 10:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620815#M277753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T10:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: function module download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620816#M277754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this link:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="298388"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;check the program:&lt;/P&gt;&lt;P&gt;SAPBC405_OTH_DOWNLOAD_SOURCE  iif you are on 4.7 or above.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 11:03:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620816#M277754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T11:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: function module download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620817#M277755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   you can download includes using below logic&lt;/P&gt;&lt;P&gt;   get all includes under function group using &lt;/P&gt;&lt;P&gt;   table tadir&lt;/P&gt;&lt;P&gt;   after this&lt;/P&gt;&lt;P&gt;    DATA: PROGRAM LIKE SY-REPID VALUE 'lslsttop'.&lt;/P&gt;&lt;P&gt; DATA: BEGIN OF T OCCURS 500,&lt;/P&gt;&lt;P&gt;         LINE(72),&lt;/P&gt;&lt;P&gt;       END   OF T.&lt;/P&gt;&lt;P&gt; READ REPORT PROGRAM INTO T.&lt;/P&gt;&lt;P&gt; IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;   ...&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function gui_download&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;  exporting ..&lt;/P&gt;&lt;P&gt;  tables  = t.&lt;/P&gt;&lt;P&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;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 11:15:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620817#M277755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T11:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: function module download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620818#M277756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frnd,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This Syntax is used to read data form the program.&lt;/P&gt;&lt;P&gt;READ REPORT PROGRAM INTO T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But how to read data that is source code in the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any body help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;suganya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2006 09:34:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620818#M277756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-10T09:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: function module download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620819#M277757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A FM is also has a ABAP name attached to it usually starting with SAPL*. But usually the code is all in the INCLUDE ABAPs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for FM, you need to get the module name ie SAPL&amp;lt;funcgroup&amp;gt;.&lt;/P&gt;&lt;P&gt;find all the includes L&amp;lt;funcgroup&amp;gt;.&lt;/P&gt;&lt;P&gt;read report &amp;lt;include&amp;gt; into t.&lt;/P&gt;&lt;P&gt;download t.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;DEL&gt;Please note to assign points to all helpful answers&lt;/DEL&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2006 09:40:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620819#M277757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-10T09:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: function module download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620820#M277758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thnks Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Oct 2006 09:47:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620820#M277758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-10T09:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: function module download</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620821#M277759</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;How to Download the screens used in the function module.&lt;/P&gt;&lt;P&gt;i downloaded screens in program but i am not able to download screens in fm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advnce&lt;/P&gt;&lt;P&gt;suganya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 10:50:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-download/m-p/1620821#M277759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T10:50:47Z</dc:date>
    </item>
  </channel>
</rss>

