<?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: Issue with the read statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821719#M1682176</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;Sorry for misleading.&lt;/P&gt;&lt;P&gt;We cannot use CS and I dont beleive LIKE will solve your issue here.&lt;/P&gt;&lt;P&gt;LIKE is case sensitive.&lt;/P&gt;&lt;P&gt;You can use &lt;/P&gt;&lt;P&gt;SELECT name1 from Kna1 into table lt_kna1 where name1 LIKE '%department%' or name1 like '%Department%'.&amp;nbsp; IF these are the only two combinations.&lt;/P&gt;&lt;P&gt;If you have multiple combinations like DePartMent, then this will not work.&lt;/P&gt;&lt;P&gt;You can use native sql to solve this or select all the entries and then eliminate the entries as told in the first question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check some posts on Case insensitive select queries.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/thread/1626987"&gt;http://scn.sap.com/thread/1626987&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 May 2012 03:25:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-05-23T03:25:20Z</dc:date>
    <item>
      <title>Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821712#M1682169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an internal table with one field that contains the name of all the customers and the name can be in lower case, upper case or a mix of both, now I need to read this table into another table for all the names those have the word 'DEPARTMENT'. So if there are entries in the internal table like IT_DEPARTMENT or it_department or It_Department then all these should show up when I read my internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried the below code but it's not correct :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;read &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;table &lt;/SPAN&gt;it_data &lt;SPAN class="L0S52"&gt;into &lt;/SPAN&gt;wa_data &lt;SPAN class="L0S52"&gt;with &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;KEY &lt;/SPAN&gt;name CO 'DEPARTMENT'&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S52"&gt;if &lt;/SPAN&gt;sy&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;subrc &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;0&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;append &lt;/SPAN&gt;wa_data &lt;SPAN class="L0S52"&gt;to &lt;/SPAN&gt;it_final_data&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CLEAR &lt;/SPAN&gt;wa_data&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;endif.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;can you please help me this. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Thanks. &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 00:38:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821712#M1682169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-23T00:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821713#M1682170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Try to loop in it_data and append the matching records which has DEPARTMENT in customer field using Contains Pattern(CP).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; TYPES : BEGIN OF ty_itab,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; kunnr TYPE c LENGTH 20,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END OF ty_itab.&lt;/P&gt;&lt;P&gt;DATA : i_itab&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE STANDARD TABLE OF ty_itab,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i_itab1&amp;nbsp;&amp;nbsp; TYPE STANDARD TABLE OF ty_itab,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_itab TYPE ty_itab,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v_kunnr TYPE c LENGTH 20.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;wa_itab-kunnr = 'it_department'.&lt;BR /&gt;APPEND wa_itab TO i_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-kunnr = 'It_Department'.&lt;BR /&gt;APPEND wa_itab TO i_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-kunnr = 'lt_department'.&lt;BR /&gt;APPEND wa_itab TO i_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-kunnr = 'Nt_department'.&lt;BR /&gt;APPEND wa_itab TO i_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-kunnr = 'Ot_department'.&lt;BR /&gt;APPEND wa_itab TO i_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-kunnr = 'Bala Krishna'.&lt;BR /&gt;APPEND wa_itab TO i_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT i_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_itab INTO wa_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; v_kunnr = wa_itab-kunnr.&lt;/P&gt;&lt;P&gt;&amp;nbsp; TRANSLATE v_kunnr TO UPPER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF v_kunnr CP '*DEPARTMENT'.&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND wa_itab TO i_itab1.&amp;nbsp;&amp;nbsp;&amp;nbsp; " you will have only records with customer with DEPARTMENT&lt;BR /&gt;&amp;nbsp; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; CLEAR : v_kunnr, wa_itab.&lt;BR /&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Note If for some customers other texts exists after 'Department' use '*DEPARTMENT*', just click F1 on CP option, it will list you all the available options on that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Bala Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 01:26:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821713#M1682170</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2012-05-23T01:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821714#M1682171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bala, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for the reply and it works. I I have another can I do something same with the select statement. Can I select the data from table KNA1...and the scenario is still the same that I listed above. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 01:51:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821714#M1682171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-23T01:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821715#M1682172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Yes, you can use LIKE operator in WHERE clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT kunnr&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM kna1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTO TABLE i_itab&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE kunnr LIKE '%115'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SAP help on Select&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-indent: 0px; color: #000080; font-style: normal; font-size: 14pt; font-family: Arial;"&gt;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Comparing Strings&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: normal; text-indent: 0px; font-family: Arial; color: #000000; font-size: 10pt; font-weight: normal;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;To find out whether the value of a column matches a pattern, use:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="text-indent: 0px; color: #000000;"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;SELECT ... WHERE&lt;SPAN class="Apple-converted-space"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Arial; color: #0000ff; font-size: 10pt;"&gt;&amp;lt;s&amp;gt;&lt;SPAN class="Apple-converted-space"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: Symbol;"&gt;[&lt;/SPAN&gt;NOT&lt;SPAN class="Apple-converted-space"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: Symbol;"&gt;]&lt;/SPAN&gt;&lt;SPAN class="Apple-converted-space"&gt; &lt;/SPAN&gt;LIKE &amp;lt;f&amp;gt; [ESCAPE &amp;lt;h&amp;gt;]&lt;SPAN class="Apple-converted-space"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-indent: 0px; color: #000000;"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;The condition is true if the value of the column &amp;lt;s&amp;gt; matches [does not match] the pattern in the data object &amp;lt;f&amp;gt;. You can only use this test for text fields. The data type of the column must be alphanumeric. &amp;lt;f&amp;gt; must have data type C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-indent: 0px; color: #000000;"&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;You can use the following wildcard characters in &amp;lt;f&amp;gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;% for a sequence of any characters (including spaces).&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;_ for a single character.﻿&lt;/SPAN&gt;﻿&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN style="font-style: normal; text-indent: 0px; font-family: Arial; color: #000000; font-size: 10pt; font-weight: normal;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;For example, ABC_EFG% matches the strings ABCxEFGxyz and ABCxEFG, but not ABCEFGxyz. If you want to use the two wildcard characters explicitly in the comparison, use the ESCAPE option. ESCAPE &amp;lt;h&amp;gt; specifies an escape symbol &amp;lt;h&amp;gt;. If preceded by &amp;lt;h&amp;gt;, the wildcards and the escape symbol itself lose their usual function within the pattern &amp;lt;f&amp;gt;. The use of _ and % corresponds to Standard SQL usage. Logical expressions elsewhere in ABAP use other wildcard characters (+ and *).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Bala Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 02:29:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821715#M1682172</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2012-05-23T02:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821716#M1682173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use &lt;/P&gt;&lt;P&gt;SELECT name1 from Kna1 into table lt_kna1 where name CS 'department'.&lt;/P&gt;&lt;P&gt;The CS operator is not Case sensitive.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 02:52:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821716#M1682173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-23T02:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821717#M1682174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I tried using operator CS I got this error message: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'CS' is not a valid comparison operator&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 03:06:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821717#M1682174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-23T03:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821718#M1682175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You cannot use 'CS' or 'CP' etc in SELECT statements, have you tries with LIKE statement which i gave in my last post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 03:14:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821718#M1682175</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2012-05-23T03:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821719#M1682176</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;Sorry for misleading.&lt;/P&gt;&lt;P&gt;We cannot use CS and I dont beleive LIKE will solve your issue here.&lt;/P&gt;&lt;P&gt;LIKE is case sensitive.&lt;/P&gt;&lt;P&gt;You can use &lt;/P&gt;&lt;P&gt;SELECT name1 from Kna1 into table lt_kna1 where name1 LIKE '%department%' or name1 like '%Department%'.&amp;nbsp; IF these are the only two combinations.&lt;/P&gt;&lt;P&gt;If you have multiple combinations like DePartMent, then this will not work.&lt;/P&gt;&lt;P&gt;You can use native sql to solve this or select all the entries and then eliminate the entries as told in the first question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check some posts on Case insensitive select queries.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/thread/1626987"&gt;http://scn.sap.com/thread/1626987&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 03:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821719#M1682176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-23T03:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821720#M1682177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For time being convert the internal table value to upper case and also the comparing value to upper case. Then loop and check it using CP *DEPARTMENT*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 06:58:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821720#M1682177</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2012-05-23T06:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821721#M1682178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in select queries you can't use, CP CS CO etc. just translate everything in the internal table to upper case and then check for the pattern. If that matches the pattern move it to the another table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 10:58:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821721#M1682178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-23T10:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821722#M1682179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Depending on your database, you may be able to use native SQL to SELECT data regardless of case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 14:12:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821722#M1682179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-23T14:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821723#M1682180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you need to match more strict format checking you can use &lt;STRONG&gt;find&lt;/STRONG&gt; instead, with regex and ignoring case addition.&lt;/P&gt;&lt;P&gt;Regular Expressions are just too powerful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 15:42:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821723#M1682180</guid>
      <dc:creator>Private_Member_49934</dc:creator>
      <dc:date>2012-05-23T15:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with the read statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821724#M1682181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why dont you Try 'SEARCH'. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 15:59:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-the-read-statement/m-p/8821724#M1682181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-23T15:59:55Z</dc:date>
    </item>
  </channel>
</rss>

