<?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 Function Module or Class to write the source code of a class in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-or-class-to-write-the-source-code-of-a-class/m-p/2661598#M614043</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know a FM or a class using which I can read the source code of the methods of the class? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sükrü&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Aug 2007 17:45:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-15T17:45:34Z</dc:date>
    <item>
      <title>Function Module or Class to write the source code of a class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-or-class-to-write-the-source-code-of-a-class/m-p/2661598#M614043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know a FM or a class using which I can read the source code of the methods of the class? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sükrü&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2007 17:45:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-or-class-to-write-the-source-code-of-a-class/m-p/2661598#M614043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-15T17:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module or Class to write the source code of a class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-or-class-to-write-the-source-code-of-a-class/m-p/2661599#M614044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure,  something like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

REPORT  zrich_0002.

DATA includename TYPE program.
DATA _classname TYPE seoclsname VALUE 'CL_GUI_ALV_GRID'.
DATA isource TYPE STANDARD TABLE OF string WITH HEADER LINE.

includename = cl_oo_classname_service=&amp;gt;get_pubsec_name( _classname ).
READ REPORT includename INTO isource.
LOOP AT isource.
  WRITE:/ isource.
ENDLOOP.

includename = cl_oo_classname_service=&amp;gt;get_prosec_name( _classname ).
READ REPORT includename INTO isource.
LOOP AT isource.
  WRITE:/ isource.
ENDLOOP.

includename = cl_oo_classname_service=&amp;gt;get_prisec_name( _classname ).
READ REPORT includename INTO isource.
LOOP AT isource.
  WRITE:/ isource.
ENDLOOP.

includename = cl_oo_classname_service=&amp;gt;get_ccimp_name( _classname ).
READ REPORT includename INTO isource.
LOOP AT isource.
  WRITE:/ isource.
ENDLOOP.

includename = cl_oo_classname_service=&amp;gt;get_ccdef_name( _classname ).
READ REPORT includename INTO isource.
LOOP AT isource.
  WRITE:/ isource.
ENDLOOP.

includename = cl_oo_classname_service=&amp;gt;get_ccmac_name( _classname ).
READ REPORT includename INTO isource.
LOOP AT isource.
  WRITE:/ isource.
ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2007 17:56:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-or-class-to-write-the-source-code-of-a-class/m-p/2661599#M614044</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-08-15T17:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module or Class to write the source code of a class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-or-class-to-write-the-source-code-of-a-class/m-p/2661600#M614045</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;Check this &lt;A href="http://wiki.ittoolbox.com/index.php/Download_and_upload_OO_ABAP_class_in_XML_format"&gt;Link &lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Aug 2007 18:11:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-or-class-to-write-the-source-code-of-a-class/m-p/2661600#M614045</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-08-15T18:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module or Class to write the source code of a class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-or-class-to-write-the-source-code-of-a-class/m-p/2661601#M614046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or this one...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://scn.sap.com/message/16160540#16160540" title="https://scn.sap.com/message/16160540#16160540"&gt;How to upload/download the class files in the A... | SCN&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2015 13:14:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-or-class-to-write-the-source-code-of-a-class/m-p/2661601#M614046</guid>
      <dc:creator>lars_grabenhorst</dc:creator>
      <dc:date>2015-08-12T13:14:42Z</dc:date>
    </item>
  </channel>
</rss>

