<?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: REPLACE RECORD or REPLACE LINE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-record-or-replace-line/m-p/7253867#M1528015</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can declare these as strings...or variables..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and use REPLACE syntax to change values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: STR1(2) value  '00',&lt;/P&gt;&lt;P&gt;         STR2(2) value  '10'.&lt;/P&gt;&lt;P&gt;        STR(2)    value .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE STR1 WITH STR2 INTO STR.&lt;/P&gt;&lt;P&gt;WRITE:/ STR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;orelse..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if str1 = '00'.&lt;/P&gt;&lt;P&gt;replace str1 with str2.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ str1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the output of str1 will be '10'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Ram Ganji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Oct 2010 12:03:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-01T12:03:10Z</dc:date>
    <item>
      <title>REPLACE RECORD or REPLACE LINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-record-or-replace-line/m-p/7253866#M1528014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need hepl to solve this problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The line with 00 is in a currency and the line with 10 is the same amount in EURO.&lt;/P&gt;&lt;P&gt;00   Account1  Currency USD amount&lt;/P&gt;&lt;P&gt;10   Account1  Currency EUR amount&lt;/P&gt;&lt;P&gt;00   Account2  Currency AUD amount&lt;/P&gt;&lt;P&gt;10   Account2  Currency EUR amount&lt;/P&gt;&lt;P&gt;00  Account2   Currency USD amount&lt;/P&gt;&lt;P&gt;10 Account2   Currency EUR amount&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need the ABAP code to replace the line 00 with 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like:&lt;/P&gt;&lt;P&gt;if 00 write me 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Ramona&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 11:55:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-record-or-replace-line/m-p/7253866#M1528014</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-01T11:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE RECORD or REPLACE LINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-record-or-replace-line/m-p/7253867#M1528015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can declare these as strings...or variables..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and use REPLACE syntax to change values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: STR1(2) value  '00',&lt;/P&gt;&lt;P&gt;         STR2(2) value  '10'.&lt;/P&gt;&lt;P&gt;        STR(2)    value .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE STR1 WITH STR2 INTO STR.&lt;/P&gt;&lt;P&gt;WRITE:/ STR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;orelse..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if str1 = '00'.&lt;/P&gt;&lt;P&gt;replace str1 with str2.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ str1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the output of str1 will be '10'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Ram Ganji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 12:03:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-record-or-replace-line/m-p/7253867#M1528015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-01T12:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE RECORD or REPLACE LINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-record-or-replace-line/m-p/7253868#M1528016</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 do not want to show '00' then delete all entries with '00' from your internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Or if the values need to be displayed , but with .10'..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      loop at itab.&lt;/P&gt;&lt;P&gt;        if itab-field1 = '00'.&lt;/P&gt;&lt;P&gt;           itab-field1 = '10'.&lt;/P&gt;&lt;P&gt;       endif.&lt;/P&gt;&lt;P&gt;       write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; itab-field1,&lt;/P&gt;&lt;P&gt;                   itab-field2, ...........  &lt;/P&gt;&lt;P&gt;      endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 12:12:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-record-or-replace-line/m-p/7253868#M1528016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-01T12:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE RECORD or REPLACE LINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-record-or-replace-line/m-p/7253869#M1528017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make use of the syntax &lt;STRONG&gt;find in table&lt;/STRONG&gt; and &lt;STRONG&gt;replace in table&lt;/STRONG&gt; - Hit f1 and find it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Oct 2010 12:17:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-record-or-replace-line/m-p/7253869#M1528017</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-10-01T12:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: REPLACE RECORD or REPLACE LINE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-record-or-replace-line/m-p/7253870#M1528018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 09:01:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-record-or-replace-line/m-p/7253870#M1528018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-05T09:01:42Z</dc:date>
    </item>
  </channel>
</rss>

