<?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: RS_TOOL_ACCESS for program edit through program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876397#M1960313</link>
    <description>&lt;P&gt;Hi Gregor,&lt;/P&gt;&lt;P&gt;Thanks , will take a look at abapGit&lt;/P&gt;</description>
    <pubDate>Wed, 22 May 2019 07:05:25 GMT</pubDate>
    <dc:creator>Madhurivs23</dc:creator>
    <dc:date>2019-05-22T07:05:25Z</dc:date>
    <item>
      <title>RS_TOOL_ACCESS for program edit through program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876391#M1960307</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
  &lt;P&gt;I want to make use of this FM to modify the custom program in certain cases. For e.g. - if there is a statement "Break-point" then need to comment that and get this change in the Transport request.&lt;/P&gt;
  &lt;P&gt;Have anyone used this FM for this requirement?changing custom program through custom program (programatically)&lt;/P&gt;
  &lt;P&gt;Can anyone please send me sample code if its available as this is urgent&lt;/P&gt;
  &lt;P&gt;thanks&lt;/P&gt;
  &lt;P&gt;Madhuri&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 13:12:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876391#M1960307</guid>
      <dc:creator>Madhurivs23</dc:creator>
      <dc:date>2019-05-21T13:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: RS_TOOL_ACCESS for program edit through program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876392#M1960308</link>
      <description>&lt;P&gt;I've updated the tag of your question to "ABAP Development" as this would be more accurate. You might check how &lt;A href="http://abapgit.org/" target="_blank"&gt;abapGit&lt;/A&gt; does export and import programs, classes and function groups. &lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 14:02:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876392#M1960308</guid>
      <dc:creator>gregorw</dc:creator>
      <dc:date>2019-05-21T14:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: RS_TOOL_ACCESS for program edit through program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876393#M1960309</link>
      <description>&lt;P&gt;You could configure Code Inspector to prevent BREAK-POINT keyword, and configure the transport to check Code Inspector at release time.&lt;/P&gt;&lt;P&gt;If you want to change a source code, use the ABAP statement INSERT REPORT ("for internal use only").&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 14:58:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876393#M1960309</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-05-21T14:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: RS_TOOL_ACCESS for program edit through program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876394#M1960310</link>
      <description>&lt;P&gt;Programmatically changing programs in the background in this way is a bad idea. Far better to highlight it as an error and make the programmer change it.&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 15:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876394#M1960310</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2019-05-21T15:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: RS_TOOL_ACCESS for program edit through program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876395#M1960311</link>
      <description>&lt;P&gt;That function module purpose is:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;General interface for all tools of the Abap Development Workbench&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;so, if you send operations 'EDIT', it will call SE38 to show your program in edit mode only.&lt;/P&gt;&lt;P&gt;Suggestion: instead of develop a new program to edit others program, you can use SCI, which is standard transaction, to scan them and do the manual work, it easier and quicker.&lt;/P&gt;&lt;P&gt;If you still want to do it with your own program, using READ REPORT to load program source code, change it and use GENERATE SUBROUTINE POOL, INSERT REPORT...read more in F1 help&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 01:06:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876395#M1960311</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2019-05-22T01:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: RS_TOOL_ACCESS for program edit through program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876396#M1960312</link>
      <description>&lt;P&gt;Hi thanks all for the reply.&lt;/P&gt;Hi &lt;A href="https://answers.sap.com/users/36313/quynhdoanmanh.html"&gt;Quynh Doan Manh&lt;/A&gt;,My purpose basically is during s4 hana migration. ( if not wrong during brownfield implementation)to auto change the previous program to make it compatible with S4 HANA.For eg. if somewhere, matnr has been declared as char18 then change it to declare as with data element matnr to match up with the char40 declartion. like that.so my approach is, first scan the custom program, fill up some table with the "wrong" or "incompatible" tags and the line number and through this FM, go to that line and change that line. or comment the line and copy the "compatible" line and get all this in one TR.I will try your approach and get back &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;thanks a lot!regards,Madhuri</description>
      <pubDate>Wed, 22 May 2019 07:00:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876396#M1960312</guid>
      <dc:creator>Madhurivs23</dc:creator>
      <dc:date>2019-05-22T07:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: RS_TOOL_ACCESS for program edit through program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876397#M1960313</link>
      <description>&lt;P&gt;Hi Gregor,&lt;/P&gt;&lt;P&gt;Thanks , will take a look at abapGit&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 07:05:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rs-tool-access-for-program-edit-through-program/m-p/11876397#M1960313</guid>
      <dc:creator>Madhurivs23</dc:creator>
      <dc:date>2019-05-22T07:05:25Z</dc:date>
    </item>
  </channel>
</rss>

