<?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 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/3738063#M899659</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:07:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-28T19:07:09Z</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/3738063#M899659</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:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738063#M899659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T19:07:09Z</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/3738064#M899660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check the table REPOSRC ..give the name of the program name ---see the code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 19:40:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738064#M899660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T19:40:01Z</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/3738065#M899661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You must do it like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: BEGIN OF SOURCE_TABLE OCCURS 0,
      LINE(150) TYPE C.
DATA: END OF SOURCE_TABLE.

DATA: NAME LIKE TRDIR-NAME.

NAME = 'Z_PROGRAM'.

READ REPORT NAME INTO SOURCE_TABLE.

LOOP AT SOURCE_TABLE.
WRITE:/ SOURCE_TABLE-LINE.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 19:44:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738065#M899661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T19:44:23Z</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/3738066#M899662</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;Thanks for your reply. But the table REPOSRC does not exist in SAP database . I am using SAP 4.6 Version . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this table exist in higher version ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we get the program code by any other table / or by any other means through database . Sap database is migrated to oracle 10g.&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:46:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738066#M899662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T19:46:08Z</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/3738067#M899663</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;Thanks for your reply . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But as SAP is decommissioned , we are not able to access SAP Frontend .SAP database is migrated to oracle 10g . I am looking for table where SAP program source code is stored so that it can be retrieved from the database table if possible . &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:59:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738067#M899663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T19:59:12Z</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/3738068#M899664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is an interesting question as the answer is may be different depending on your version.  For example, in new releases the table REPOSRC appears to hold a compress version of the course code in the DATA field, but you would need to be able to decompress it if trying to read this directly out of the DB.  I would assume that it uses gZip to do the compression, and there are ABAP utilities built in to do the compress/decompress.  Of course you can always read the source code by using the READ REPORT statement in any release, but of course this will not help you if you can not log on to your system.  Basically, if you system is corrupt for some reason, the best option is to restore from a backup.&lt;/P&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>Mon, 28 Apr 2008 20:03:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738068#M899664</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-04-28T20:03:33Z</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/3738069#M899665</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;Is there any other table where report source code is stored in SAP &lt;/P&gt;&lt;P&gt;in lower versions(i.e 4.6 and lower versions) other than REPOSRC. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are few tables which just gives the information about the program code but i am still not able to get source code of program .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will be very helpful if someone can suggest some means of retrieving the abap code from SAP table .&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 20:59:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738069#M899665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T20:59:53Z</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/3738070#M899666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jain, &lt;/P&gt;&lt;P&gt;We are trying to do the exact same thing of decommissioning SAP and migrating just the data base to Oracle 11g. &lt;/P&gt;&lt;P&gt;Can you share the steps that you followed for decommissioning SAP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 18:02:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-sap-table-stores-the-abap-program-source-code/m-p/3738070#M899666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T18:02:29Z</dc:date>
    </item>
  </channel>
</rss>

