<?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: Making search non case sensitive in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752791#M1303499</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is the domain case sensitive? please check and let us know first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in general fname is of domain type : FDNAME&lt;/P&gt;&lt;P&gt;which is not case sensitive... so no need to worry about case as for me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: soumya prakash mishra on May 29, 2009 1:11 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 May 2009 11:10:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-29T11:10:53Z</dc:date>
    <item>
      <title>Making search non case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752787#M1303495</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 am using the following statement :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT fname 
             FROM z3af_hcp INTO TABLE lt_select_list
                WHERE fname LIKE lv_first_name.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_first_name is a variable which contains value something like &lt;STRONG&gt;a%, ab%, A%&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want a search criteria which is not case sensitive. Plz suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pankaj Aggarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 10:53:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752787#M1303495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T10:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Making search non case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752788#M1303496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;firstly dat is dependent upon the domain of the data element.&lt;/P&gt;&lt;P&gt;there is a check box in the domain in the domain which when clicked enables the field as case sensitive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i can see u are using a ztable u can very well use a domain of ur choice to make the domain not case sensitive if it case sensitive now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if it is not case sensitive then what ever u pass in that variable it will automatically be considered as non case sensitive..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: soumya prakash mishra on May 29, 2009 12:58 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 10:57:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752788#M1303496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T10:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: Making search non case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752789#M1303497</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 can not change domain or table .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 11:04:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752789#M1303497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T11:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Making search non case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752790#M1303498</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;You can use 'CA' comparision operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Contains Any: True, if operand1 contains at least one character from operand2. Upper/lower case and trailing blanks are taken into account for both operands.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sample code for your reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:begin of itab OCCURS 0,&lt;/P&gt;&lt;P&gt;      matnr type makt-matnr,&lt;/P&gt;&lt;P&gt;      maktx type makt-maktx,&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr maktx&lt;/P&gt;&lt;P&gt;    into table itab&lt;/P&gt;&lt;P&gt;  from makt.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at itab where maktx ca '&lt;STRONG&gt;A&lt;/STRONG&gt;'.&lt;/P&gt;&lt;P&gt;    write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; itab-matnr, itab-maktx.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this solves your issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 11:07:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752790#M1303498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T11:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Making search non case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752791#M1303499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is the domain case sensitive? please check and let us know first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in general fname is of domain type : FDNAME&lt;/P&gt;&lt;P&gt;which is not case sensitive... so no need to worry about case as for me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: soumya prakash mishra on May 29, 2009 1:11 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 11:10:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752791#M1303499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T11:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Making search non case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752792#M1303500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;domain is case sensitive...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz suggest what i can use except like...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 12:02:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752792#M1303500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T12:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: Making search non case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752793#M1303501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is NOT POSSIBLE in opensql to have non-case sensitive selects.  Where SAP have provided functionality that looks like this, they've added a field for searching, which has the contents of the desired fields, in UPPER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must add a field to z3af_hcp, e.g. fname_upper, which contains the values in fname but in upper case.  You must make sure it is populated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TRANSLATE lv_first_name TO UPPER-CASE.
SELECT fname 
             FROM z3af_hcp INTO TABLE lt_select_list
                WHERE fname_upper LIKE lv_first_name.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Matt on May 29, 2009 2:09 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 12:06:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752793#M1303501</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-05-29T12:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Making search non case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752794#M1303502</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;Either remove the tick of case sensitive  from domain or can use the sample code given above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 12:10:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752794#M1303502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T12:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: Making search non case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752795#M1303503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Depending on your database, you can use native SQL to achieve this directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 13:52:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-search-non-case-sensitive/m-p/5752795#M1303503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-29T13:52:03Z</dc:date>
    </item>
  </channel>
</rss>

