<?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 search option for case sensitive fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068483#M972555</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Plz Help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jul 2008 17:13:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-07T17:13:12Z</dc:date>
    <item>
      <title>Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068476#M972548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having one situation where i have to pick all the line items which are containing "Equity" text. And I am giving this "Equity" text in one of the selection-screen of Bseg-sgtxt field. I am including this text filed as &lt;STRONG&gt;Equity&lt;/STRONG&gt; in that selection-screen filed. So it has to pick all the line items from Bseg table which contains this "Equity" text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bseg is a cluster table , so i am not using this selecion in where condition of that select query except key fields.&lt;/P&gt;&lt;P&gt;After select query on Bseg, i am looping that Bseg internal table and reading selection table of s_sgtxt and using SEARCH option of that "Equity" text , if entered text in selection field contains Equity then it comes out of the loop otherwise if entered text is not contains Equity text then it will delete that row from Bseg internal table. So at last we are getting only those data which contains "Equity" text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But whats the problem am gettig is its picking all the line items which are containing this Equity text irrespective of caps or small letters, its pulling equity, EQUITY etc...text line items. I want only those Line items which is exactly having "Equity" text. So how can I use this one in SEARCH option or any bosy plz help me in this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will get reward points for gud answer....:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BALU.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 16:42:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068476#M972548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T16:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068477#M972549</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;try to use FIND with addition "IGNORING CASE" to find every match "RESPECTING CASE" addition to find match with case sensitive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bi&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 16:53:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068477#M972549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T16:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068478#M972550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can see my code also....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select bukrs&lt;/P&gt;&lt;P&gt;         belnr&lt;/P&gt;&lt;P&gt;         gjahr&lt;/P&gt;&lt;P&gt;         shkzg&lt;/P&gt;&lt;P&gt;         sgtxt&lt;/P&gt;&lt;P&gt;         vbund&lt;/P&gt;&lt;P&gt;         kostl&lt;/P&gt;&lt;P&gt;         hkont&lt;/P&gt;&lt;P&gt;         dmbtr&lt;/P&gt;&lt;P&gt;         menge&lt;/P&gt;&lt;P&gt;         abper into table g_t_bseg&lt;/P&gt;&lt;P&gt;         from bseg&lt;/P&gt;&lt;P&gt;         for all entries in g_t_bkpf&lt;/P&gt;&lt;P&gt;         where belnr = g_t_bkpf-belnr&lt;/P&gt;&lt;P&gt;         and   bukrs = g_t_bkpf-bukrs&lt;/P&gt;&lt;P&gt;         and   gjahr = g_t_bkpf-gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here l_v2 is having "Equity" Text and s_text is selection-screen field for Bseg-sgtxt Text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    loop at g_t_bseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      if not s_text is initial.&lt;/P&gt;&lt;P&gt;        search g_t_bseg-sgtxt for l_v2.&lt;/P&gt;&lt;P&gt;        if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;          delete g_t_bseg.&lt;/P&gt;&lt;P&gt;          continue.&lt;/P&gt;&lt;P&gt;        endif.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So plz how can I write the code to select only line items which contains exactly "Equity" text.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 16:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068478#M972550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T16:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068479#M972551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select bukrs&lt;/P&gt;&lt;P&gt;belnr&lt;/P&gt;&lt;P&gt;gjahr&lt;/P&gt;&lt;P&gt;shkzg&lt;/P&gt;&lt;P&gt;sgtxt&lt;/P&gt;&lt;P&gt;vbund&lt;/P&gt;&lt;P&gt;kostl&lt;/P&gt;&lt;P&gt;hkont&lt;/P&gt;&lt;P&gt;dmbtr&lt;/P&gt;&lt;P&gt;menge&lt;/P&gt;&lt;P&gt;abper into table g_t_bseg&lt;/P&gt;&lt;P&gt;from bseg&lt;/P&gt;&lt;P&gt;for all entries in g_t_bkpf&lt;/P&gt;&lt;P&gt;where belnr = g_t_bkpf-belnr&lt;/P&gt;&lt;P&gt;and bukrs = g_t_bkpf-bukrs&lt;/P&gt;&lt;P&gt;and gjahr = g_t_bkpf-gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here l_v2 is having "Equity" Text and s_text is selection-screen field for Bseg-sgtxt Text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at g_t_bseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_text is initial.&lt;/P&gt;&lt;P&gt;*search g_t_bseg-sgtxt for l_v2.&lt;/P&gt;&lt;P&gt;find g_t_bseg-sgtxt for lv_v2 respecting case.        " new statement instead of search&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;delete g_t_bseg.&lt;/P&gt;&lt;P&gt;continue.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 16:57:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068479#M972551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T16:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068480#M972552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi 1st of all thnx for ur reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried ur code also, but its giving error as statement "FIND" is not defined,please check ur spelling.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So shalli have 2 define it or plz give me any suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Balu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 17:04:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068480#M972552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T17:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068481#M972553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hope this will work.................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at g_t_bseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_text is initial.&lt;/P&gt;&lt;P&gt;*search g_t_bseg-sgtxt for l_v2.&lt;/P&gt;&lt;P&gt;find  lv_v2 in g_t_bseg-sgtxt respecting case. " new statement instead of search&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;delete g_t_bseg.&lt;/P&gt;&lt;P&gt;continue.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 17:05:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068481#M972553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T17:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068482#M972554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No its still giving same error.... Plz help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 17:07:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068482#M972554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T17:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068483#M972555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Plz Help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 17:13:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068483#M972555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T17:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068484#M972556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select bukrs&lt;/P&gt;&lt;P&gt;belnr&lt;/P&gt;&lt;P&gt;gjahr&lt;/P&gt;&lt;P&gt;shkzg&lt;/P&gt;&lt;P&gt;sgtxt&lt;/P&gt;&lt;P&gt;vbund&lt;/P&gt;&lt;P&gt;kostl&lt;/P&gt;&lt;P&gt;hkont&lt;/P&gt;&lt;P&gt;dmbtr&lt;/P&gt;&lt;P&gt;menge&lt;/P&gt;&lt;P&gt;abper into table g_t_bseg&lt;/P&gt;&lt;P&gt;from bseg&lt;/P&gt;&lt;P&gt;for all entries in g_t_bkpf&lt;/P&gt;&lt;P&gt;where belnr = g_t_bkpf-belnr&lt;/P&gt;&lt;P&gt;and bukrs = g_t_bkpf-bukrs&lt;/P&gt;&lt;P&gt;and gjahr = g_t_bkpf-gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : lv_v2(6) type c value 'Equity'.&lt;/P&gt;&lt;P&gt;loop at g_t_bseg .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_text is initial.&lt;/P&gt;&lt;P&gt;*search g_t_bseg-sgtxt for l_v2.&lt;/P&gt;&lt;P&gt;find lv_v2 in g_t_bseg-sgtxt respecting case. " new statement instead of search&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;delete g_t_bseg.&lt;/P&gt;&lt;P&gt;continue.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif. &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;for me the program is syntactically correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 17:13:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068484#M972556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T17:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068485#M972557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its giving same error, i m using 4.6 version , is thr any version problem. and also is thr any other way 2 write the code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 17:19:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068485#M972557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T17:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068486#M972558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wht is the error u are exactly facing?&lt;/P&gt;&lt;P&gt;let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 17:22:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068486#M972558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T17:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068487#M972559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its giving error as "statement "FIND" is not defined,please check ur spelling".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 17:24:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068487#M972559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T17:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068488#M972560</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;in your loop use IF-statement with 'CP' option. to compare case sensitive you've had to add "#" in front of every character of the sequence to compare.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;lv_one = 'Hello, World'
lv_two = '#H#e#l#l#o'.

if lv_one cp lv_two.
"do whatevet you like
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should work with all releases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 17:28:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068488#M972560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T17:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068489#M972561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you do f1 on FIND and check what exactly its showing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;find should be there in 4.6 as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 17:28:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068489#M972561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T17:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068490#M972562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No documentation is avaliable in 4.6 version, I checked with f1 option also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 17:31:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068490#M972562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T17:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068491#M972563</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;As addition, the 'FIND' statement was introduced in release 6.10!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 17:31:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068491#M972563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T17:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068492#M972564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;after the select from BSEG juss say&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete tb_bseg where sgxtxt ne 'Equity'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all the records which dont match the exact string 'Equity' will be deleted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 18:31:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068492#M972564</guid>
      <dc:creator>former_member1007904</dc:creator>
      <dc:date>2008-07-07T18:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Using search option for case sensitive fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068493#M972565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simply do it all at once:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT bukrs
belnr
gjahr
shkzg
sgtxt
vbund
kostl
hkont
dmbtr
menge
abper INTO TABLE g_t_bseg
FROM bseg
FOR ALL ENTRIES IN g_t_bkpf
WHERE belnr = g_t_bkpf-belnr
AND bukrs = g_t_bkpf-bukrs
AND gjahr = g_t_bkpf-gjahr
AND ( sgtxt LIKE '%Equity%'
 OR   sgtxt LIKE '%equity%'
 OR   sgtxt LIKE '%EQUITY%' ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have made it not case sensitive, but you can leave it the way it was.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jul 2008 19:16:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-search-option-for-case-sensitive-fields/m-p/4068493#M972565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-07T19:16:09Z</dc:date>
    </item>
  </channel>
</rss>

