<?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: String Start With in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-start-with/m-p/2906346#M683724</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if it is in IF condition checking (or any other condition checking)&lt;/P&gt;&lt;P&gt;If itab-str cp 'ABC*'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if it is in select query where clause&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;select * from dbtab into corresponding fields of table itab where str like 'ABC%'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2007 09:51:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-11T09:51:15Z</dc:date>
    <item>
      <title>String Start With</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-start-with/m-p/2906342#M683720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;  I'm looking for a way to check the string that have a prefix 'abc'.  How can i do this kind of checking in ABAP??  Please advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 09:48:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-start-with/m-p/2906342#M683720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T09:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: String Start With</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-start-with/m-p/2906343#M683721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if a+0(3) = 'abc'.&lt;/P&gt;&lt;P&gt;*--a is string&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 09:49:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-start-with/m-p/2906343#M683721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T09:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: String Start With</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-start-with/m-p/2906344#M683722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;say ur variable name is str&lt;/P&gt;&lt;P&gt; then u can check str+0(3) = 'abc'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 09:50:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-start-with/m-p/2906344#M683722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T09:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: String Start With</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-start-with/m-p/2906345#M683723</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;Take the first three letters of the string and compare the same with abc using string operation CO . this will solve your problem&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;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 09:50:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-start-with/m-p/2906345#M683723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T09:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: String Start With</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-start-with/m-p/2906346#M683724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if it is in IF condition checking (or any other condition checking)&lt;/P&gt;&lt;P&gt;If itab-str cp 'ABC*'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if it is in select query where clause&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;select * from dbtab into corresponding fields of table itab where str like 'ABC%'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 09:51:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-start-with/m-p/2906346#M683724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T09:51:15Z</dc:date>
    </item>
  </channel>
</rss>

