<?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: Programming Logic in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/programming-logic/m-p/1423318#M203022</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TRANSLATE WA_TEST USING '# '.&lt;/P&gt;&lt;P&gt;CONDENSE WA_TEST.  "tHIS WOULD DELETE ONLY EXTRANEOUS SPACES ONLY.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Jun 2006 15:47:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-30T15:47:29Z</dc:date>
    <item>
      <title>Programming Logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programming-logic/m-p/1423317#M203021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  I have a question which I think is dumb but I was unable to think of any easy way out. I have a string which contains spaces with an uneven count between them for example &lt;/P&gt;&lt;P&gt;wa_test = 'firstname"space"lastname#"space"#"space"    #address"space"#'.here space means ''.&lt;/P&gt;&lt;P&gt; and # is the delimiter. The wa_test would be written to an outbound file later. We need the space between the first name and the last name but we do not need any spaces between the hashes or before the # indicator, the key word condense would remove all the spaces which I do not want. Any ideas would be appreciated and rewarded.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vick&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: vick vennav&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 15:44:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programming-logic/m-p/1423317#M203021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T15:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Programming Logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programming-logic/m-p/1423318#M203022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TRANSLATE WA_TEST USING '# '.&lt;/P&gt;&lt;P&gt;CONDENSE WA_TEST.  "tHIS WOULD DELETE ONLY EXTRANEOUS SPACES ONLY.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 15:47:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programming-logic/m-p/1423318#M203022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T15:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Programming Logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programming-logic/m-p/1423319#M203023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi,&lt;/P&gt;&lt;P&gt;    I need the # operator or am I not doing it right.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 15:52:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programming-logic/m-p/1423319#M203023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T15:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: Programming Logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programming-logic/m-p/1423320#M203024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;split wa_test at '#' into name dummy1 dummy2 dummy3 address dummy4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nae would have the required result.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 15:55:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programming-logic/m-p/1423320#M203024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T15:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: Programming Logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programming-logic/m-p/1423321#M203025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi,&lt;/P&gt;&lt;P&gt;        Thanks for your time and effort, I was using condense no-gaps instead of just using condense. I know its dumb of me, I will give u full points regardless.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 16:33:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programming-logic/m-p/1423321#M203025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T16:33:00Z</dc:date>
    </item>
  </channel>
</rss>

