<?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: Convert RAWSTRING(compressed ) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-rawstring-compressed/m-p/5249339#M1212814</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been looking into this myself recently and I've found this utility on the internet. It works well so far and should do the same for you, it even includes an abap program to down the content from SAP to disk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.daniel-berlin.de/devel/sap-dev/decompress-abap-source-code/" title="http://www.daniel-berlin.de/devel/sap-dev/decompress-abap-source-code/"&gt;Decompress ABAP source code from table REPOSRC&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Nov 2014 12:07:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-11-11T12:07:29Z</dc:date>
    <item>
      <title>Convert RAWSTRING(compressed )</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-rawstring-compressed/m-p/5249336#M1212811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does any one know how to display and download the contents of table REPOSRC-DATA (field). This field holds the source code in compressed mode. I don't want to use the READ REPORT command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one suggest a  alternate solution.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2009 10:58:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-rawstring-compressed/m-p/5249336#M1212811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-23T10:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Convert RAWSTRING(compressed )</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-rawstring-compressed/m-p/5249337#M1212812</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;Use the following code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : t_itab TYPE TABLE OF reposrc,&lt;/P&gt;&lt;P&gt;       fs_itab LIKE LINE OF t_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT data FROM  reposrc INTO CORRESPONDING FIELDS OF  TABLE t_itab WHERE progname = 'YH1319'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT t_itab INTO fs_itab.&lt;/P&gt;&lt;P&gt;  WRITE / :fs_itab-data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2009 11:18:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-rawstring-compressed/m-p/5249337#M1212812</guid>
      <dc:creator>rejish_balakrishnan</dc:creator>
      <dc:date>2009-02-23T11:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: Convert RAWSTRING(compressed )</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-rawstring-compressed/m-p/5249338#M1212813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi RBK,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With your code the output looks like&lt;/P&gt;&lt;P&gt;eg. FF00E40900121F9D0269DF4C9BDB489234ED3F05CD356..................................... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ouput is already in RAWSTRING format. I need help to convert it to TEXT,  so that I am able to display and download it.( it should look same as abap source code ).&lt;/P&gt;&lt;P&gt;Thanks for your efforts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2009 13:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-rawstring-compressed/m-p/5249338#M1212813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-23T13:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Convert RAWSTRING(compressed )</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-rawstring-compressed/m-p/5249339#M1212814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been looking into this myself recently and I've found this utility on the internet. It works well so far and should do the same for you, it even includes an abap program to down the content from SAP to disk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.daniel-berlin.de/devel/sap-dev/decompress-abap-source-code/" title="http://www.daniel-berlin.de/devel/sap-dev/decompress-abap-source-code/"&gt;Decompress ABAP source code from table REPOSRC&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2014 12:07:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-rawstring-compressed/m-p/5249339#M1212814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-11-11T12:07:29Z</dc:date>
    </item>
  </channel>
</rss>

