<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607122#M272443</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;The BSTKD value in the table VBKD is case-sensitive as per the Data definition in the Data Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the table field may contain either lower case or upper case or mix of these. It is totally depends upon your data entered by users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So better not to convert this case. You have to the parameter value that exists in the data base.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your entire data for VBKD-BSTKD is in uppercase , then you want to convert the parameter, you can do it in the AT SELECTION-SCREEN event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  LOOP AT S_BSTKD.&lt;/P&gt;&lt;P&gt;   TRANSLATE S_BSTKD-LOW TO UPPER CASE.&lt;/P&gt;&lt;P&gt;   TRANSLATE S_BSTKD-HIGH TO UPPER CASE.&lt;/P&gt;&lt;P&gt;   MODIFY S_BSTKD.&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 help you.&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Oct 2006 11:23:33 GMT</pubDate>
    <dc:creator>venkata_ramisetti</dc:creator>
    <dc:date>2006-10-18T11:23:33Z</dc:date>
    <item>
      <title>case-insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607116#M272437</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;In Select-options i have a field batkd(po number).&lt;/P&gt;&lt;P&gt;Based on this bstkd i am retieving data from 4 tables.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_bstkd FOR vbkd-bstkd,&lt;/P&gt;&lt;P&gt;but the problem is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In data base one record is existing for this condition but the bstkd is the lower case in database.when i give in upper case in the select options it is not retrieveing the record&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body give me solution to ignore the case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards.&lt;/P&gt;&lt;P&gt;Ramu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Oct 2006 11:10:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607116#M272437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-18T11:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: case-insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607117#M272438</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; the field vbkd-bstkd has got a check for lower case. so u need to give the values in lower case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or u can do one change the values to lower case and modify the select options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Madhavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Oct 2006 11:13:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607117#M272438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-18T11:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: case-insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607118#M272439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;logic should be written to change this value to lowercase, eventhough when we are giving it in uppercase,&lt;/P&gt;&lt;P&gt;make it always to lowercase, so that it will not create any problem in fetching records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Oct 2006 11:14:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607118#M272439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-18T11:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: case-insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607119#M272440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramu,&lt;/P&gt;&lt;P&gt;  Is this the only select-option?&lt;/P&gt;&lt;P&gt;If there are other select-options, get the data based on the other select options.&lt;/P&gt;&lt;P&gt;Then loop at the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;translate itab-bstkd to upper-case.&lt;/P&gt;&lt;P&gt;modify itab index sy-tabix.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab where bstkd in s_bstkd.&lt;/P&gt;&lt;P&gt;move-correspoding itab to itab_final.&lt;/P&gt;&lt;P&gt;append itab_final.&lt;/P&gt;&lt;P&gt;clear itab_final.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab_final will have the required records.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Oct 2006 11:15:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607119#M272440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-18T11:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: case-insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607120#M272441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramu,&lt;/P&gt;&lt;P&gt;loop at table VBKD there is an field BSTKD_M in upper letters.&lt;/P&gt;&lt;P&gt;Make your selection on this field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here a short Code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZGRO_TEST.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;TABLES: VBKD.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: S_BSTKDM FOR VBKD-BSTKD_M.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;BREAK-POINT.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;SELECT * FROM VBKD WHERE BSTKD_M IN S_BSTKDM.&lt;/P&gt;&lt;P&gt;  WRITE: / VBKD-VBELN, VBKD-BSTKD, VBKD-BSTKD_M.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Redards, Dieter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Dieter Gröhn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Oct 2006 11:16:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607120#M272441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-18T11:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: case-insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607121#M272442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     loop at s_bstkd .&lt;/P&gt;&lt;P&gt;     &amp;lt;b&amp;gt; translate s_bstkd-low to lower case.&lt;/P&gt;&lt;P&gt;      modify s_bstkd . &amp;lt;/b&amp;gt;      endloop. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Oct 2006 11:19:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607121#M272442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-18T11:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: case-insensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607122#M272443</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;The BSTKD value in the table VBKD is case-sensitive as per the Data definition in the Data Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the table field may contain either lower case or upper case or mix of these. It is totally depends upon your data entered by users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So better not to convert this case. You have to the parameter value that exists in the data base.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your entire data for VBKD-BSTKD is in uppercase , then you want to convert the parameter, you can do it in the AT SELECTION-SCREEN event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  LOOP AT S_BSTKD.&lt;/P&gt;&lt;P&gt;   TRANSLATE S_BSTKD-LOW TO UPPER CASE.&lt;/P&gt;&lt;P&gt;   TRANSLATE S_BSTKD-HIGH TO UPPER CASE.&lt;/P&gt;&lt;P&gt;   MODIFY S_BSTKD.&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 help you.&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Oct 2006 11:23:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-insensitive/m-p/1607122#M272443</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-10-18T11:23:33Z</dc:date>
    </item>
  </channel>
</rss>

