<?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: ABAP Code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763008#M37174</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have never gone looking for the table itself, but you might want to look at the ABAP syntax READ REPORT.&amp;nbsp;&amp;nbsp;&amp;nbsp;This command lets you read into an internal table the source code for any program.  This might do what you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Nov 2003 16:56:18 GMT</pubDate>
    <dc:creator>thomas_jung</dc:creator>
    <dc:date>2003-11-17T16:56:18Z</dc:date>
    <item>
      <title>ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763007#M37173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dose someone know what is the table name which hold all the ABAP code in it ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2003 13:29:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763007#M37173</guid>
      <dc:creator>herzelhaimharel_gilor</dc:creator>
      <dc:date>2003-11-17T13:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763008#M37174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have never gone looking for the table itself, but you might want to look at the ABAP syntax READ REPORT.&amp;nbsp;&amp;nbsp;&amp;nbsp;This command lets you read into an internal table the source code for any program.  This might do what you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2003 16:56:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763008#M37174</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2003-11-17T16:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763009#M37175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also table trdir contains a list of program names.&amp;nbsp;&amp;nbsp;Then you can use the READ REPORT like Thomas said to get the sourxe code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2003 18:59:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763009#M37175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2003-11-17T18:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763010#M37176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Table TRDIR contains the program names, but the actual code is sotored in the file server (UNIX for example), so it is not stored in any table for security and consistency purposes. You can use the suggestions from the previous notes if you want to get the code of a program dynamically, though it is not crear to my why you would want to have access to a table where the source code of programs would be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2003 19:09:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763010#M37176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2003-11-17T19:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763011#M37177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"actual code is sotored in the file server "&lt;/P&gt;&lt;P&gt;?????&lt;/P&gt;&lt;P&gt;The code is stored in a database table (don't remember the name), which cannot be displayed from SAP, SE11 says table does not exist, but you can reach this table on SQL level. &lt;/P&gt;&lt;P&gt;The content is encrypted somehow, so you can not read it directly from the database table itself, you have to use statement ' READ REPORT prog FROM itab.'.&lt;/P&gt;&lt;P&gt;View TRDIR contains only the attributes of the programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Incho&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2003 17:56:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763011#M37177</guid>
      <dc:creator>Peter_Inotai</dc:creator>
      <dc:date>2003-11-20T17:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763012#M37178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;The code is stored in a database table (don't remember the name)&lt;/P&gt;&lt;P&gt;&amp;gt;which cannot be displayed from SAP&lt;/P&gt;&lt;P&gt;...and which won't be of much use either - AFAIR the ABAP code ist stored in encrypted (or at least compressed) form. Stick to READ REPORT &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2003 11:45:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763012#M37178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2003-11-28T11:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763013#M37179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think it is D010S.&lt;/P&gt;&lt;P&gt;And that's the reason why in SQL trace list they placed a default excluding selection for D010* on the popup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vili&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Mar 2004 13:03:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763013#M37179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-03-01T13:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763014#M37180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Vili.  This is a cluster table, meaning that what appear as logical records (lines of source for example) are actually stored as one record in the database.  Clusters are used when you want to get all lines/items at a time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Mar 2004 13:31:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763014#M37180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-03-01T13:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763015#M37181</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;On 4.5 it was still stored in the DB table TRDIR. As from 4.6 the code is in a special cluster and can only be accessed via the read report statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;koen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Mar 2004 12:40:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763015#M37181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-03-14T12:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763016#M37182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Herzel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on 4.5B now, here it seems the best way using Func. mod. 'SCWB_GET_ABAP_CODE_OF_OBJECT'...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check it.&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;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Mar 2004 11:51:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763016#M37182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-03-16T11:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763017#M37183</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;for 6.XX systems you should take a look at the table REPOSRC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2004 08:59:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763017#M37183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-03-17T08:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763018#M37184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;D010* and REPOSRC (depending of SAP release) are accessed through view TRDIR. This is compatible cross releases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For code itself, in 4.6 it is even stored in database in compiled form. So you can't read it even with a SQL statement (once it has been activated).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Mar 2004 10:54:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-code/m-p/763018#M37184</guid>
      <dc:creator>franois_henrotte</dc:creator>
      <dc:date>2004-03-22T10:54:11Z</dc:date>
    </item>
  </channel>
</rss>

