<?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: Program Name which helps to hide the code of abap program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440560#M826267</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As the code is hidden, it is not possible to retrieve the code back. You have to backup it before hiding it!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Feb 2008 10:00:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-13T10:00:52Z</dc:date>
    <item>
      <title>Program Name which helps to hide the code of abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440555#M826262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;          Could anybody help me in finding the name of the program on running which we can hide the CODE OF Abap program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 07:15:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440555#M826262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T07:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Program Name which helps to hide the code of abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440556#M826263</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;You can create the Transaction code (may be your program name too) for your program using se93.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So that you can execute your program just by giving the transaction code without entering into the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just try it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;K.Tharani.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 07:23:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440556#M826263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T07:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Program Name which helps to hide the code of abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440557#M826264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry tharani i m not asking to hide the program name &lt;/P&gt;&lt;P&gt;i m asking to hide the entire code so that nobody can see it&lt;/P&gt;&lt;P&gt;there is a program on running which with the name of the program in the selection screen it will hide entire sap program code which u have entered in the selection screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 07:38:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440557#M826264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T07:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: Program Name which helps to hide the code of abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440558#M826265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here´s a snippet demonstrating how to hide the ABAP code of a given program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT z_hide_abap
  NO STANDARD PAGE HEADING.

DATA: gt_code(72)  TYPE c OCCURS 0,
      gv_code      LIKE LINE OF gt_code,
      gt_code2(72) TYPE c OCCURS 0.

PARAMETERS: program LIKE sy-repid.

START-OF-SELECTION.

  READ REPORT program INTO gt_code.

  IF sy-subrc NE 0.
    MESSAGE e398(00) WITH 'Report' program 'not found.'.
*   ATTENTION:
*   READ REPORT on a hidden source code return SY-SUBRC=8 !!!
  ENDIF. "IF sy-subrc NE 0

  READ TABLE gt_code INDEX 1 INTO gv_code.

* append *special* 1st line to hide cource code
  APPEND '*@#@@[SAP]' TO gt_code2.
  LOOP AT gt_code INTO gv_code.
    APPEND gv_code TO gt_code2.
  ENDLOOP.

  INSERT REPORT program FROM gt_code2.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 07:40:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440558#M826265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T07:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: Program Name which helps to hide the code of abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440559#M826266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mike,&lt;/P&gt;&lt;P&gt;     Could U please help me to know how to retrieve the code back or unhide the same code which is under hide&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 09:57:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440559#M826266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T09:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Program Name which helps to hide the code of abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440560#M826267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As the code is hidden, it is not possible to retrieve the code back. You have to backup it before hiding it!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 10:00:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440560#M826267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T10:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Program Name which helps to hide the code of abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440561#M826268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;too late! ;-D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 10:05:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440561#M826268</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-02-13T10:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: Program Name which helps to hide the code of abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440562#M826269</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;If you had created any versions of the prog.&lt;/P&gt;&lt;P&gt;You can try Utilities-&amp;gt;Version-&amp;gt;version management&lt;/P&gt;&lt;P&gt;select the required version and click on retrieve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;teja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 11:25:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440562#M826269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T11:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Program Name which helps to hide the code of abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440563#M826270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is possible to hide classes and Methods in ABAP Object environment?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 09:16:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440563#M826270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T09:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Program Name which helps to hide the code of abap program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440564#M826271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, but this is wrong...&lt;/P&gt;&lt;P&gt;without comments you just need 31 lines of coding to write the coding of !!!ANY!!! report into list-output... Tested on ERP 4.7 and 7.0&lt;/P&gt;&lt;P&gt;Even if the code is hidden via *@#@@[SAP]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Mar 2012 16:16:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-name-which-helps-to-hide-the-code-of-abap-program/m-p/3440564#M826271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-14T16:16:43Z</dc:date>
    </item>
  </channel>
</rss>

