<?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: Which SAP table stores the ABAP program Source Code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738283#M899713</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  check the table &lt;STRONG&gt;REPOSRC&lt;/STRONG&gt;-field &lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This stores the source code.&lt;/P&gt;&lt;P&gt;(but its in RAW format)&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;Kiran Sure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kiran Sure(skk) on Apr 29, 2008 1:09 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Apr 2008 07:38:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-29T07:38:39Z</dc:date>
    <item>
      <title>Which SAP table stores the ABAP program Source Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738279#M899709</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;Which SAP table stores the ABAP source code .&lt;/P&gt;&lt;P&gt;Is it possible to retrieve the abap program code from database table &lt;/P&gt;&lt;P&gt;wherein it is stored .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scenario :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In our project SAP got decommissioned and SAP database is migrated to Oracle . As SAP is decomissioned , we are not able to access the SAP frontend . But we need a program code to service a request . Is it possible to retrieve the program code from the database &lt;/P&gt;&lt;P&gt;which is migrated to oracle .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Shikha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 19:09:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738279#M899709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T19:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Which SAP table stores the ABAP program Source Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738280#M899710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I do not know whether any table stores the source code of programs but given below is the sample code to read the source code of a given program and prints the same as output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab occurs 0 ,&lt;/P&gt;&lt;P&gt;        w_field(100) type c,&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;read report sy-repid into itab.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;  loop at itab.&lt;/P&gt;&lt;P&gt;    write : itab-w_field.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;endif      .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If it can be helpful to you then pls reward points&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 06:25:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738280#M899710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T06:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Which SAP table stores the ABAP program Source Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738281#M899711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All sap abap programs are stored in TRDIR table...you just check within this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Dara.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 06:48:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738281#M899711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T06:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: Which SAP table stores the ABAP program Source Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738282#M899712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi shikha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use this API. 'RPY_PROGRAM_READ'. Just pass the program name and you will get all the coding part of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpfull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 07:12:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738282#M899712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T07:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Which SAP table stores the ABAP program Source Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738283#M899713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  check the table &lt;STRONG&gt;REPOSRC&lt;/STRONG&gt;-field &lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This stores the source code.&lt;/P&gt;&lt;P&gt;(but its in RAW format)&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;Kiran Sure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kiran Sure(skk) on Apr 29, 2008 1:09 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2008 07:38:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738283#M899713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-29T07:38:39Z</dc:date>
    </item>
  </channel>
</rss>

