<?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 Replace occurs with work area in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-occurs-with-work-area/m-p/3447974#M828201</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one requirement to check and replace in my old program through new program... I have to Check if the OCCURS is used in the old program we have to modify in the program with corresponding Work Area but then how we are going to handle wherever you used this and corresponding calculations also. Through a automated Report Program.. Could any body help coding or idea will be appreciated...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Feb 2008 06:12:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-12T06:12:25Z</dc:date>
    <item>
      <title>Replace occurs with work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-occurs-with-work-area/m-p/3447974#M828201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one requirement to check and replace in my old program through new program... I have to Check if the OCCURS is used in the old program we have to modify in the program with corresponding Work Area but then how we are going to handle wherever you used this and corresponding calculations also. Through a automated Report Program.. Could any body help coding or idea will be appreciated...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 06:12:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-occurs-with-work-area/m-p/3447974#M828201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T06:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: Replace occurs with work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-occurs-with-work-area/m-p/3447975#M828202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ayyapa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First thing you do is, perform a search and replace all OCCURS 0 declarations with TYPE STANDARD TABLE OF ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you do this, perform a syntax check on the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will automatically lead you to all the points in the program which need the "incorporation" of work area. Primarily in places where you have performed a MOVE, INSERT, APPEND, MODIFY etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT queries doing move INTO the internal table WILL NOT be impacted by this change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are looking at creating a program to perform this for you, then it would be a real challenge considering many QA aspects also invovled.&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;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 06:18:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-occurs-with-work-area/m-p/3447975#M828202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T06:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Replace occurs with work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-occurs-with-work-area/m-p/3447976#M828203</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;Try this FM  RS_FIND_REPLACE_GLOBAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 06:40:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-occurs-with-work-area/m-p/3447976#M828203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T06:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Replace occurs with work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-occurs-with-work-area/m-p/3447977#M828204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mr. Aditya Laud ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply ... Could you advise me more idea so that i can go for a new coding... It wont affect QA we will take care of that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will award points ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 10:07:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-occurs-with-work-area/m-p/3447977#M828204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T10:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Replace occurs with work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-occurs-with-work-area/m-p/3447978#M828205</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 below report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report - RPR_ABAP_SOURCE_SCAN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                This report will help to scan for a particular STRING specified in the given program(s) and displays source code lines in which the String present. We can use this not only for ABAP reports but also for Screen flows. Below is the selection screen of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 14:06:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-occurs-with-work-area/m-p/3447978#M828205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T14:06:42Z</dc:date>
    </item>
  </channel>
</rss>

