<?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: Case insensitive search in select statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735547#M1457769</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Searching for strings (parts or with pattern) is cumbersome if the table field isn't defined as case-insensitive. &lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search all requests in "E07T" where "AS4TEXT" contains "Sales." &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With a normal SELECT * FROM E070T WHERE AS4TEXT LIKE gv_text" values like SALES or sales will not be found. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using EXEC-SQL, there's a way to do this selection Case-insensitive:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT xy.&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  gt_e07t       TYPE TABLE OF e07t WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;  gv_reqtxt(60).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS p_text TYPE rzielort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Selection by Request text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Native SQL needed since as4text is case sensitive but we&lt;/P&gt;&lt;/LI&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;want to search case-insensitive&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;gv_reqtxt = p_text.&lt;/P&gt;&lt;P&gt;TRANSLATE gv_reqtxt TO UPPER CASE.&lt;/P&gt;&lt;P&gt;CONCATENATE '%' gv_reqtxt '%' INTO gv_reqtxt.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Change SAP-wildcards to DB-wildcards TRANSLATE gv_reqtxt USING '*%'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;TRANSLATE gv_reqtxt USING '+_'.&lt;/P&gt;&lt;P&gt;EXEC SQL PERFORMING append_e07t.&lt;/P&gt;&lt;P&gt;  SELECT * FROM e07t INTO :gt_e07t&lt;/P&gt;&lt;P&gt;      WHERE upper(as4text) LIKE :gv_reqtxt ENDEXEC.&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE gt_e07t LINES sy-dbcnt.&lt;/P&gt;&lt;P&gt;CHECK sy-dbcnt GT 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT gt_e07t.&lt;/P&gt;&lt;P&gt;  WRITE: / gt_e07t-trkorr, gt_e07t-as4text.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  append_e07t&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM append_e07t.&lt;/P&gt;&lt;P&gt;  APPEND gt_e07t.&lt;/P&gt;&lt;P&gt;ENDFORM.                    "append_e07t&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jun 2010 12:41:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-06-17T12:41:02Z</dc:date>
    <item>
      <title>Case insensitive search in select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735539#M1457761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have select over table RSAABAP &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE line LIKE '%ABC%', because LINE has "data Element" EDPLINE with mark "Lower Case" , the result will be case sensitive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It means that i don't find the row with e.g. 'abc' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i would like to use case insensitive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one solution is add rows from SAP table to internal and use TRANSLATE to upper case and search int. table again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is existing another solution ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for help in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 11:09:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735539#M1457761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-08T11:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Case insensitive search in select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735540#M1457762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Martin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Native SQL may be an option but it has its own limitations. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP documentation on using Native SQL in ABAP: [http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb3b8b358411d1829f0000e829fbfe/content.htm|http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb3b8b358411d1829f0000e829fbfe/content.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check Bart &amp;amp; Rob's response to this thread: &lt;SPAN __jive_macro_name="thread" id="659323"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Mar 8, 2010 4:53 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 11:21:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735540#M1457762</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-03-08T11:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Case insensitive search in select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735541#M1457763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE TO UPPER CASE&lt;/P&gt;&lt;P&gt;TRANSLATE TO LOWER CASE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before the select ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 14:48:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735541#M1457763</guid>
      <dc:creator>former_member770378</dc:creator>
      <dc:date>2010-03-08T14:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: Case insensitive search in select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735542#M1457764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My blog&amp;gt;&amp;gt;&amp;gt; &lt;A href="https://wiki.sdn.sap.com/wiki/x/6gGHBQ" target="test_blank"&gt;https://wiki.sdn.sap.com/wiki/x/6gGHBQ&lt;/A&gt; -get all case of a word&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 01:21:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735542#M1457764</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2010-03-09T01:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: Case insensitive search in select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735543#M1457765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;J@Y  - does your method work for something like "General Motors"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 03:00:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735543#M1457765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-09T03:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: Case insensitive search in select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735544#M1457766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;J@Y's method seems faulty to me. The coding he posted basically creates a range with &lt;EM&gt;strlen&lt;/EM&gt; entries, where for the &lt;EM&gt;i-th&lt;/EM&gt; entry the &lt;EM&gt;i-th&lt;/EM&gt; character is upper case. I'm not sure if the initial intent was to create a range with all possible combinations, but this doesn't sound like a good solution to me (too many combinations possible).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this special case of a search string with &lt;EM&gt;%ABC%&lt;/EM&gt; it wouldn't be too bad, because we'd end up with 8 combinations:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%abc%&lt;/P&gt;&lt;P&gt;%Abc%&lt;/P&gt;&lt;P&gt;%aBc%&lt;/P&gt;&lt;P&gt;%ABc%&lt;/P&gt;&lt;P&gt;%abC%&lt;/P&gt;&lt;P&gt;%AbC%&lt;/P&gt;&lt;P&gt;%aBC%&lt;/P&gt;&lt;P&gt;%ABC%&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's some coding that would generate a table with all text strings (could be easily modified to build a range). However, for a string like &lt;EM&gt;General Motors&lt;/EM&gt; you wouldn't want to apply this, because this leads to way too many combinations (2^strlen to be precise, so 8,192 for &amp;lt;i&amp;gt;General Motors&amp;lt;/i&amp;gt;):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES:
  t_text     TYPE text40,
  t_text_tab TYPE STANDARD TABLE OF t_text.

FORM create_variations USING    value(text) TYPE t_text
                       CHANGING text_tab    TYPE t_text_tab.

  FIELD-SYMBOLS &amp;lt;text&amp;gt; TYPE t_text.
  DATA:
    rest     TYPE t_text,
    rest_tab TYPE t_text_tab,
    lc       TYPE char1,
    uc       TYPE char1.

  TRANSLATE text TO LOWER CASE.

  lc = uc = text(1).
  TRANSLATE uc TO UPPER CASE.

  sy-fdpos = STRLEN( text ).
  IF sy-fdpos = 1.
    APPEND lc TO text_tab.
    IF lc &amp;amp;lt;&amp;amp;gt; uc.
      APPEND uc TO text_tab.
    ENDIF.
    EXIT.
  ENDIF.

  rest = text+1.
  PERFORM create_variations USING    rest
                            CHANGING rest_tab.

  LOOP AT rest_tab ASSIGNING &amp;lt;text&amp;gt;.
    CONCATENATE lc &amp;lt;text&amp;gt; INTO rest RESPECTING BLANKS.
    APPEND rest TO text_tab.
    IF lc &amp;amp;lt;&amp;amp;gt; uc.
      CONCATENATE uc &amp;lt;text&amp;gt; INTO rest RESPECTING BLANKS.
      APPEND rest TO text_tab.
    ENDIF.
  ENDLOOP.

ENDFORM.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers, harald&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 04:10:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735544#M1457766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-09T04:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Case insensitive search in select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735545#M1457767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FYI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the code below (check with CP instead of LIKE &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select distinct infocube line&lt;/P&gt;&lt;P&gt;      into corresponding fields of la       from zv_where_use&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     WHERE LINE LIKE l_find_string&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      order by infocube.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check la-line cp l_find_string_report.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 06:46:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735545#M1457767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-09T06:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Case insensitive search in select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735546#M1457768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think that will work either. So long as your database supports the "TRANSLATE TO UPPER CASE" command (DB2 and Oracle do), your best bet is native SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 13:57:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735546#M1457768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-09T13:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: Case insensitive search in select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735547#M1457769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Searching for strings (parts or with pattern) is cumbersome if the table field isn't defined as case-insensitive. &lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search all requests in "E07T" where "AS4TEXT" contains "Sales." &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With a normal SELECT * FROM E070T WHERE AS4TEXT LIKE gv_text" values like SALES or sales will not be found. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using EXEC-SQL, there's a way to do this selection Case-insensitive:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT xy.&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  gt_e07t       TYPE TABLE OF e07t WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;  gv_reqtxt(60).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS p_text TYPE rzielort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Selection by Request text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Native SQL needed since as4text is case sensitive but we&lt;/P&gt;&lt;/LI&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;want to search case-insensitive&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;gv_reqtxt = p_text.&lt;/P&gt;&lt;P&gt;TRANSLATE gv_reqtxt TO UPPER CASE.&lt;/P&gt;&lt;P&gt;CONCATENATE '%' gv_reqtxt '%' INTO gv_reqtxt.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Change SAP-wildcards to DB-wildcards TRANSLATE gv_reqtxt USING '*%'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;TRANSLATE gv_reqtxt USING '+_'.&lt;/P&gt;&lt;P&gt;EXEC SQL PERFORMING append_e07t.&lt;/P&gt;&lt;P&gt;  SELECT * FROM e07t INTO :gt_e07t&lt;/P&gt;&lt;P&gt;      WHERE upper(as4text) LIKE :gv_reqtxt ENDEXEC.&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE gt_e07t LINES sy-dbcnt.&lt;/P&gt;&lt;P&gt;CHECK sy-dbcnt GT 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT gt_e07t.&lt;/P&gt;&lt;P&gt;  WRITE: / gt_e07t-trkorr, gt_e07t-as4text.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  append_e07t&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM append_e07t.&lt;/P&gt;&lt;P&gt;  APPEND gt_e07t.&lt;/P&gt;&lt;P&gt;ENDFORM.                    "append_e07t&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2010 12:41:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive-search-in-select-statement/m-p/6735547#M1457769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-17T12:41:02Z</dc:date>
    </item>
  </channel>
</rss>

