<?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 replacing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing/m-p/4233635#M1010921</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An internal table with some fields is given. One of them is the&lt;/P&gt;&lt;P&gt;description field. It may contain sometimes characters as ##.&lt;/P&gt;&lt;P&gt;The goal is to replace each double ## (cross hatch) with&lt;/P&gt;&lt;P&gt;one linefeed CR_LF . &lt;/P&gt;&lt;P&gt;Please help on how to implementing !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIPTION	  CCIHE_ACDESCR	CHAR	132	&lt;/P&gt;&lt;P&gt;STATUS	     J_STATUS	      CHAR	5&lt;/P&gt;&lt;P&gt;REF_OBJECT   CCIHE_IHREFOBJ CHAR  3&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Aug 2008 09:12:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-01T09:12:49Z</dc:date>
    <item>
      <title>replacing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing/m-p/4233635#M1010921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An internal table with some fields is given. One of them is the&lt;/P&gt;&lt;P&gt;description field. It may contain sometimes characters as ##.&lt;/P&gt;&lt;P&gt;The goal is to replace each double ## (cross hatch) with&lt;/P&gt;&lt;P&gt;one linefeed CR_LF . &lt;/P&gt;&lt;P&gt;Please help on how to implementing !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIPTION	  CCIHE_ACDESCR	CHAR	132	&lt;/P&gt;&lt;P&gt;STATUS	     J_STATUS	      CHAR	5&lt;/P&gt;&lt;P&gt;REF_OBJECT   CCIHE_IHREFOBJ CHAR  3&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 09:12:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacing/m-p/4233635#M1010921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T09:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: replacing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing/m-p/4233636#M1010922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;try this ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPALCE ALL OCCURENCES OF '##' WITH CR_LF  IN ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK THE SYNTAX...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 09:15:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacing/m-p/4233636#M1010922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T09:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: replacing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replacing/m-p/4233637#M1010923</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;&lt;/P&gt;&lt;P&gt;do like this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; loop at itab.&lt;/P&gt;&lt;P&gt;&amp;gt; if itab-f1+0(2) = '##'.&lt;/P&gt;&lt;P&gt;&amp;gt; itab-f1 = &amp;lt;pass the value&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;gt; modify ITAB index sy-tabix transporting f1.&lt;/P&gt;&lt;P&gt;&amp;gt; endif.&lt;/P&gt;&lt;P&gt;&amp;gt; endloop. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 09:21:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replacing/m-p/4233637#M1010923</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-08-01T09:21:31Z</dc:date>
    </item>
  </channel>
</rss>

