<?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: Using LIKE in SELECT ..... WHERE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841563#M44337</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not in a position to hardcode or use a select-option for the input.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Jun 2005 20:01:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-06-01T20:01:58Z</dc:date>
    <item>
      <title>Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841556#M44330</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;    I need to do pattern matching during SELECT so that a table field contains or is the same as an input variable. How can I accomplish this? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nanditha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2005 19:23:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841556#M44330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-01T19:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841557#M44331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use SELECT-OPTIONS for your select screen.&lt;/P&gt;&lt;P&gt;Then in your select statement use the IN operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data: imakt type table of makt with header line.

select-options: s_maktx for imakt-maktx.

select * from makt
         into corresponding fields of table imakt
                   where maktx in s_maktx.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you can "hardcode" the patterns&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

* This code selects all material groups that start with 
* DRA or DWA

data: begin of i_matkl occurs 0,
      matkl type mara-matkl.
data: end of i_matkl.

  select matkl from  t023
          into corresponding fields of table i_matkl
                  where ( matkl like 'DRA%'
                    or matkl like 'DWA%' ).

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2005 19:41:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841557#M44331</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-06-01T19:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841558#M44332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nanditha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use LIKE as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * FROM mara
       INTO TABLE lt_mara
       WHERE matnr LIKE '%AD%' .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar &amp;lt;a href="https://www.sdn.sap.com:443http://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=qbk%2bsag%2bjiw%3d"&amp;gt;[ BC ]&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich, you are here again &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Serdar Simsekler&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2005 19:42:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841558#M44332</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2005-06-01T19:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841559#M44333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Example to select all customers whose name begins with 'M': &lt;/P&gt;&lt;P&gt;SELECT ID NAME FROM SCUSTOM &lt;/P&gt;&lt;P&gt;       INTO CORRESPONDING FIELDS OF SCUSTOM_WA &lt;/P&gt;&lt;P&gt;       WHERE NAME LIKE 'M%'. &lt;/P&gt;&lt;P&gt;you can find more examples under : &lt;/P&gt;&lt;P&gt;Logical Condition in Database Access Statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be this is what you were looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2005 19:43:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841559#M44333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-01T19:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841560#M44334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the "help" for the syntax of LIKE in SELECT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f [NOT] LIKE g &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition: &lt;/P&gt;&lt;P&gt;... ESCAPE h &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The condition is met for a table entry if the statement "f (does not) equal the pattern in g" is true for the values of f and g. f must always be a field descriptor, and g an ABAP field. If f has the value NULL, then the result of the check for the statement is unknown. Within a pattern, there are two special characters: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'_' (underscore) stands for any single character. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'%' (percentage sign) stands for any sequence of characters, including an empty string. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples &lt;/P&gt;&lt;P&gt;Example to select all customers whose name begins with 'M': &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES SCUSTOM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT ID NAME FROM SCUSTOM &lt;/P&gt;&lt;P&gt;       INTO CORRESPONDING FIELDS OF SCUSTOM &lt;/P&gt;&lt;P&gt;       WHERE NAME LIKE 'M%'. &lt;/P&gt;&lt;P&gt;  WRITE: / SCUSTOM-ID, SCUSTOM-NAME. &lt;/P&gt;&lt;P&gt;ENDSELECT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example to select all customers whose name contains 'huber': &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES SCUSTOM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT ID NAME FROM SCUSTOM &lt;/P&gt;&lt;P&gt;       INTO CORRESPONDING FIELDS OF SCUSTOM &lt;/P&gt;&lt;P&gt;       WHERE NAME LIKE '%huber%'. &lt;/P&gt;&lt;P&gt;  WRITE: / SCUSTOM-ID, SCUSTOM-NAME. &lt;/P&gt;&lt;P&gt;ENDSELECT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example to select all customers whose name does not contain 'n' as the second character: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES SCUSTOM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT ID NAME FROM SCUSTOM &lt;/P&gt;&lt;P&gt;       INTO CORRESPONDING FIELDS OF SCUSTOM &lt;/P&gt;&lt;P&gt;       WHERE NAME NOT LIKE '_n%'. &lt;/P&gt;&lt;P&gt;  WRITE: / SCUSTOM-ID, SCUSTOM-NAME. &lt;/P&gt;&lt;P&gt;ENDSELECT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes &lt;/P&gt;&lt;P&gt;LIKE can only be used for alphanumeric database fields. In other words, table field f must have Dictionary type ACCP, CHAR, CLNT, CUKY, LCHR, NUMC, UNIT, VARC, TIMS or DATS. The comparison field g must always have type C. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The maximum length of the pattern is 2n - 1 characters, where n is the length of field f. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trailing spaces are ignored in comparison field g. If a pattern contains trailing spaces, you must enclose it in single inverted commas ('). If your pattern is enclosed in inverted commas and you also want to include inverted commas as part of the pattern, the inverted commas in the pattern must be doubled. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot use this variant in the ON addition to the FROM clause. &lt;/P&gt;&lt;P&gt;&amp;lt;/i&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2005 19:44:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841560#M44334</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-06-01T19:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841561#M44335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Serdar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been working on J2ee stuff for quite a while.  It has been keeping me busy and very frustrated.  But now, I should have some more time to contribute to SDN.  Don't know how you and Anand find the time.  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2005 19:47:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841561#M44335</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-06-01T19:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841562#M44336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;During the day I seldomly connect to SDN since our work computers are not connected to the internet for security. So, I am nonstop online at nights here in Turkey and it is day time in the USA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should be really good that you deal with new innovations. But like in all software business it can make anyone really angry. I believe you can handle it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May it be easy!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar &amp;lt;a href="https://www.sdn.sap.com:443http://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=qbk%2bsag%2bjiw%3d"&amp;gt;[ BC ]&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2005 19:59:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841562#M44336</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2005-06-01T19:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841563#M44337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not in a position to hardcode or use a select-option for the input.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2005 20:01:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841563#M44337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-01T20:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841564#M44338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My req is something like if the user enters a first name or a last name and I have a table field with the full name, how do I select that particular full name using the first/last name?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2005 20:03:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841564#M44338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-01T20:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841565#M44339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nanditha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK, the LIKE addition should solve your problem. Try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT Zlike_example .
PARAMETERS: p_name(40) TYPE c .

DATA lv_srch_str(60) TYPE c .
DATA lv_ename LIKE p0001-ename .

CONCATENATE '%' p_name '%' INTO lv_srch_str .

SELECT ename FROM PA0001
       INTO lv_ename
       WHERE ename LIKE lv_srch_str .

  WRITE:/ lv_ename .

ENDSELECT .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, do not forget to reward points to helpful posts and close the thread if solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar &amp;lt;a href="https://www.sdn.sap.com:443http://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=qbk%2bsag%2bjiw%3d"&amp;gt;[ BC ]&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2005 21:09:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841565#M44339</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2005-06-01T21:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841566#M44340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, that helped.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2005 21:35:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841566#M44340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-02T21:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841567#M44341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I reward points and close the thread?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2005 21:38:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841567#M44341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-02T21:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using LIKE in SELECT ..... WHERE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841568#M44342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nanditha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the scala on the left of each post to reward points. And if you reward a 10-point then your thread is closed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, it seems there may be a problem at the system. If you can not do this by now (i.e. if you can not see the scala radiobuttons), you can do this later. Do not forget to close the thread to save SDNers times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar &amp;lt;a href="https://www.sdn.sap.com:443http://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=qbk%2bsag%2bjiw%3d"&amp;gt;[ BC ]&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2005 21:42:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-like-in-select-where/m-p/841568#M44342</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2005-06-02T21:42:52Z</dc:date>
    </item>
  </channel>
</rss>

