<?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: Function for Case Insensitive in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871796#M930635</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Astha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the field is not case sensitive, you can directly use that inside select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the filed is case sensitive , do use that in the select query.&lt;/P&gt;&lt;P&gt;After fetching the data, compare it with the input as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF ITAB-NAME CS P_NAME&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 May 2008 08:47:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-23T08:47:52Z</dc:date>
    <item>
      <title>Function for Case Insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871791#M930630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody tell any logic or function module to find the records when user enter in selection screem (for ex)&lt;/P&gt;&lt;P&gt;Ram 0r&lt;/P&gt;&lt;P&gt;ram or&lt;/P&gt;&lt;P&gt;RAM or&lt;/P&gt;&lt;P&gt;any such combination. It will consider all the input same and fetch the records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Aastha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 08:38:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871791#M930630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T08:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Function for Case Insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871792#M930631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; No conditions Required as it will be stored in the form of Capital letters in the Database.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 08:40:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871792#M930631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T08:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Function for Case Insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871793#M930632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aastha Gupta,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generally when we enter any value in selection screen field and press enter it automatically coverts the alphabets in to CAPITALS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we declare the parameters as lower case then we need to use some logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as data base stores the data in upper case, we need to convert the data to upper case using TRANSLATE keyword and then we need to fetch data from database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 08:41:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871793#M930632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T08:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Function for Case Insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871794#M930633</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;parameters: p_name(20) type c &lt;STRONG&gt;lower case&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables pa0001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_name type pa0001-ename lower case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_name for pa0001-ename lower case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Velangini Showry Maria Kumar Bandanadham on May 23, 2008 10:47 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 08:43:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871794#M930633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T08:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Function for Case Insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871795#M930634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As such by default SAP uses upper case to store in the database and converts all the inputs on the screen to upper case. However It depends on how the domain has been defined for the field . If the Lowercase checkbox is checked in the Output characteristics of the domain , then the data can be stored in sentence case ex, RAM, Ram or ram. Then it will not find a entry if you have entered 'RAM' in the data base but try to find and entry with 'ram'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 08:46:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871795#M930634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T08:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Function for Case Insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871796#M930635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Astha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the field is not case sensitive, you can directly use that inside select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the filed is case sensitive , do use that in the select query.&lt;/P&gt;&lt;P&gt;After fetching the data, compare it with the input as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF ITAB-NAME CS P_NAME&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 08:47:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871796#M930635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T08:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: Function for Case Insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871797#M930636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use TRANSLATE statement to convert to Upper case or lower &lt;/P&gt;&lt;P&gt;case before the database select.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TRANSLATE string5 TO UPPER CASE
or 
TRANSLATE string5 TO LOWER CASE.  
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 08:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871797#M930636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-23T08:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: Function for Case Insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871798#M930637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the lower case check box is checked in domain (Example TEXT132 domain) then how do we fetch entries by ignoring case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KNA1-knurl is one such example. This field is on the selection screen.&lt;/P&gt;&lt;P&gt;I want to fetch URL entries irrespective of case.&lt;/P&gt;&lt;P&gt;example: &lt;A href="https://community.sap.com/www.sdn.sap.com" target="test_blank"&gt;www.sdn.sap.com&lt;/A&gt; or &lt;A href="https://community.sap.com/WWW.SDN.SAP.COM" target="test_blank"&gt;WWW.SDN.SAP.COM&lt;/A&gt; should both be treated the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 10:22:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-for-case-insensitive/m-p/3871798#M930637</guid>
      <dc:creator>Azeemquadri</dc:creator>
      <dc:date>2008-06-03T10:22:28Z</dc:date>
    </item>
  </channel>
</rss>

