<?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 case sensitive in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359454#M178712</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; TABLES : ADRC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF IT_ADRC OCCURS 0,&lt;/P&gt;&lt;P&gt;       ADDRNUMBER LIKE ADRC-ADDRNUMBER,&lt;/P&gt;&lt;P&gt;       DATE_FROM LIKE ADRC-DATE_FROM,&lt;/P&gt;&lt;P&gt;       NATION LIKE ADRC-NATION,&lt;/P&gt;&lt;P&gt;       DATE_TO LIKE ADRC-DATE_TO,&lt;/P&gt;&lt;P&gt;       TITLE LIKE ADRC-TITLE,&lt;/P&gt;&lt;P&gt;       END OF IT_ADRC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_NAME FOR ADRC-NAME1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT ADDRNUMBER DATE_FROM NATION DATE_TO TITLE FROM ADRC INTO TABLE&lt;/P&gt;&lt;P&gt;IT_ADRC WHERE NAME1 IN S_NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT IT_ADRC.&lt;/P&gt;&lt;P&gt;WRITE : / IT_ADRC-ADDRNUMBER.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     In the above program S_NAME is char field so while fetching the data from the database table it will consider lower case and upper case i.e. case sensitive.&lt;/P&gt;&lt;P&gt;My requirement is that it should not be case sensitive it should be case insensitive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Ramu N.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 May 2006 19:50:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-15T19:50:11Z</dc:date>
    <item>
      <title>case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359454#M178712</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; TABLES : ADRC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF IT_ADRC OCCURS 0,&lt;/P&gt;&lt;P&gt;       ADDRNUMBER LIKE ADRC-ADDRNUMBER,&lt;/P&gt;&lt;P&gt;       DATE_FROM LIKE ADRC-DATE_FROM,&lt;/P&gt;&lt;P&gt;       NATION LIKE ADRC-NATION,&lt;/P&gt;&lt;P&gt;       DATE_TO LIKE ADRC-DATE_TO,&lt;/P&gt;&lt;P&gt;       TITLE LIKE ADRC-TITLE,&lt;/P&gt;&lt;P&gt;       END OF IT_ADRC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_NAME FOR ADRC-NAME1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT ADDRNUMBER DATE_FROM NATION DATE_TO TITLE FROM ADRC INTO TABLE&lt;/P&gt;&lt;P&gt;IT_ADRC WHERE NAME1 IN S_NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT IT_ADRC.&lt;/P&gt;&lt;P&gt;WRITE : / IT_ADRC-ADDRNUMBER.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     In the above program S_NAME is char field so while fetching the data from the database table it will consider lower case and upper case i.e. case sensitive.&lt;/P&gt;&lt;P&gt;My requirement is that it should not be case sensitive it should be case insensitive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Ramu N.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2006 19:50:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359454#M178712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-15T19:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359455#M178713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use TRANSLATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ex : TRANSLATE S_NAME-LOW UPPER CASE&lt;/P&gt;&lt;P&gt;        OR&lt;/P&gt;&lt;P&gt;      TRANSLATE S_NAME-LOW LOWER CASE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use either of the above,as per your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the above statement, in the LOOP of S_NAME select-option, to make sure all the input values should be in UPPER/LOWER Case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT S_NAME.&lt;/P&gt;&lt;P&gt;  TRANSLATE S_NAME-LOW UPPER CASE.&lt;/P&gt;&lt;P&gt;  MODIFY S_NAME.&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;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Kidambi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2006 19:52:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359455#M178713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-15T19:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359456#M178714</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;   Use &amp;lt;b&amp;gt;Translate&amp;lt;/b&amp;gt; Statement for the smae&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Converting to Upper or Lower Case or Replacing Characters&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;The TRANSLATE statement converts characters into upper or lower case, or uses substitution rules to convert all occurrences of one character to another character. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Converting to Upper or Lower Case&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE &amp;lt;c&amp;gt; TO UPPER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE &amp;lt;c&amp;gt; TO LOWER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These statements convert all lower case letters in the field &amp;lt;c&amp;gt; to upper case or vice versa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Substituting Characters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE &amp;lt;c&amp;gt; USING &amp;lt;r&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement replaces all characters in field &amp;lt;c&amp;gt; according to the substitution rule stored in field &amp;lt;r&amp;gt; . &amp;lt;r&amp;gt; contains pairs of letters, where the first letter of each pair is replaced by the second letter. &amp;lt;r&amp;gt; can be a variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more variants of the TRANSLATE statement with more complex substitution rules, see the keyword documentation in the ABAP Editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: T(10) VALUE 'AbCdEfGhIj',&lt;/P&gt;&lt;P&gt;STRING LIKE T,&lt;/P&gt;&lt;P&gt;RULE(20) VALUE 'AxbXCydYEzfZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;WRITE STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE STRING TO UPPER CASE.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;TRANSLATE STRING TO LOWER CASE.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING = T.&lt;/P&gt;&lt;P&gt;TRANSLATE STRING USING RULE.&lt;/P&gt;&lt;P&gt;WRITE / STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AbCdEfGhIj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABCDEFGHIJ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abcdefghij&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xXyYzZGhIj&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;/P&gt;&lt;P&gt;Check this Link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/fc/eb33a5358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/fc/eb33a5358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2006 19:53:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359456#M178714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-15T19:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359457#M178715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Syntax Diagram &lt;/P&gt;&lt;P&gt;TRANSLATE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variants: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. TRANSLATE c TO UPPER CASE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. TRANSLATE c TO LOWER CASE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. TRANSLATE c USING r. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. TRANSLATE c ...FROM CODE PAGE g1...     TO CODE PAGE g2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. TRANSLATE f ...FROM NUMBER FORMAT n1... TO NUMBER FORMAT n2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending on whether byte or character string processing is carried out, the operands can only be byte-type or character-type (see Overview). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax check performed in an ABAP Objects context is stricter than in other ABAP areas. See Only character-type fields allowed in string processing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In some cases, the syntax rules that apply to Unicode programs are different than those for non-Unicode programs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See String processing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variant 1 &lt;/P&gt;&lt;P&gt;TRANSLATE c TO UPPER CASE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variant 2 &lt;/P&gt;&lt;P&gt;TRANSLATE c TO LOWER CASE.&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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The first variant converts all lowercase letters in c to uppercase. The second variant converts all uppercase letters to lowercase. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;DATA letters(3) TYPE C. &lt;/P&gt;&lt;P&gt;MOVE 'abc' TO letters. &lt;/P&gt;&lt;P&gt;TRANSLATE letters TO UPPER CASE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;letters now has the contents 'ABC'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;The classification of upper- and lowercase, and the actual characters used are determined by the current text environment (see SET LOCALE LANGUAGE). Problems may occur when the system converts the characters, if the wrong language has been specified in SET LOCALE LANGUAGE, or if data has been processed that does &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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variant 3 &lt;/P&gt;&lt;P&gt;TRANSLATE c USING r. &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;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Replaces all the characters in the field c according to the rule in field r. c1 containscharacter pairs. The second character in each pair replaces the first. If r does not contain a character in c, this character remains unchanged. r can also be a variable. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;DATA: letters(20) TYPE C VALUE 'abcabcabcXab', &lt;/P&gt;&lt;P&gt;      change(15)  TYPE C VALUE 'aXbaYBabZacZ'. &lt;/P&gt;&lt;P&gt;TRANSLATE letters USING change. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;letters now contains 'XaZXaZXaZXXaZ'. &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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variant 4 &lt;/P&gt;&lt;P&gt;TRANSLATE c ...FROM CODE PAGE g1 ...TO CODE PAGE g2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parts marked with " ..." are interchangeable &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE c TO   CODE PAGE g2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE c FROM CODE PAGE g1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead you can use conversion classes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Converts the contents of the field c from character set g1 to character set g2. This variant uses the conversion table g1 to determine the SAP character, which is then used to determine the new character from g2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transaction SPAD allows you to display and maintain character sets. If one of the conversion tables does not exist, the runtime error CONVERSION_CODEPAGE_UNKNOWN occurs. Conversion combinations that are maintained as part of the runtime system for performance reasons do not trigger runtime errors, and you cannot change them using Transaction SPAD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;DATA c(72) TYPE C. &lt;/P&gt;&lt;P&gt;TRANSLATE c FROM CODE PAGE '1110' TO CODE PAGE '0100'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement converts the contents of field c from the HP-UX character set to IBM EBCDIC. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Fields with types I, P, F, and X remain unchanged by the conversion. The syntax check only allows character fields for specifying the codepage. However, since the codepage is maintained in table TCP00 as a type N field with length 4, you should use this type. &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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variant 5 &lt;/P&gt;&lt;P&gt;TRANSLATE f ...FROM NUMBER FORMAT n1 ...TO NUMBER FORMAT n2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parts marked with " ..." are interchangeable &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE f TO NUMBER FORMAT n1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE f FROM NUMBER FORMAT n1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead you can use conversion classes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Converts the number formats in f. Currently, the number formats '0000' (HP, SINIX, IBM) and '0101' (DEC-alpha OSF) are supported. Other formats trigger the runtime error TRANSLATE_WRONG_NUM_FORMAT . If you omit FROM NUMBER FORMAT or TO NUMBER FORMAT, the system uses the system number format. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;DATA: f TYPE F, &lt;/P&gt;&lt;P&gt;      hex(2) TYPE X, &lt;/P&gt;&lt;P&gt;      nform LIKE tcp00-cpcodepage. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;The contents of fields hex and f are stored in /ARCHIV &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;from another platform. hex is stored in a valid number &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;form when it is saved, and can therefore be read on &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;all platforms. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ DATASET '/ARCHIV' INTO hex. &lt;/P&gt;&lt;P&gt;READ DATASET '/ARCHIV' INTO f. &lt;/P&gt;&lt;P&gt;nform = hex.  "Conversion from non-host-specific. HEX into N(4) &lt;/P&gt;&lt;P&gt;TRANSLATE f FROM NUMBER FORMAT nform. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Converts the contents of f from the nform format of a given platform into the system representation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;This converts fields with types I and F. As in variant 4, you should define the number formats with type N and length 4. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can display system codepage and number formats using the function module SYSTEM_FORMAT. This allows you to store additional information for archiving purposes. &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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Performance: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Converting lowercase letters to uppercase (or the other way round) in a 10 byte character field requires around 7 msn (standardized microseconds). &lt;/P&gt;&lt;P&gt;If you use ... c USING c1... to replace two characters of a 10 byte character field,the runtime is around 9 msn. &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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exceptions &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;/P&gt;&lt;P&gt;Non-Catchable Exceptions &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: Invalid number format. &lt;/P&gt;&lt;P&gt;TRANSLATE_WRONG_NUM_FORMAT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Related &lt;/P&gt;&lt;P&gt;REPLACE, OVERLAY, Conversion Classes &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additional help &lt;/P&gt;&lt;P&gt;Converting to Upper or Lower Case or Converting Characters &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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this&amp;#146;ll give you idea!!&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;P.S award the points.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Good luck &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Saquib Khan&lt;/P&gt;&lt;P&gt;"Some are wise and some are otherwise"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2006 19:56:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359457#M178715</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2006-05-15T19:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359458#M178716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    In may database table i have data for adrc-name1 = 'Super Gas'. If i give &amp;lt;b&amp;gt;'super gas'&amp;lt;/b&amp;gt; or &amp;lt;b&amp;gt;'SUPER GAS'&amp;lt;/b&amp;gt; in the selection screen i.e S_NAME it is not fetching data it is fetching when i give &amp;lt;b&amp;gt;'Super Gas'&amp;lt;/b&amp;gt; only. Is there any way such that if i give 'super gas' or 'SUPER GAS' it should fetch data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Ramu N.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2006 20:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359458#M178716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-15T20:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359459#M178717</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;&lt;/P&gt;&lt;P&gt;The field adrc-name1 can have both upper &amp;amp; lower case characters. So I don't think you can restrict by case in your where clause. You will have to select it &amp;amp; then translate to upper /lower case &amp;amp; compare with the input string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2006 20:08:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359459#M178717</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-05-15T20:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359460#M178718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at s_name.&lt;/P&gt;&lt;P&gt;   translate s_name-low to upper case.&lt;/P&gt;&lt;P&gt;   translate s_name-high to upper case.&lt;/P&gt;&lt;P&gt;   modify s_name.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;SELECT ADDRNUMBER DATE_FROM NATION DATE_TO TITLE FROM ADRC INTO IT_ADRC.&lt;/P&gt;&lt;P&gt;  translate it_adrc-NAME1 to upper case.&lt;/P&gt;&lt;P&gt;  check it_adrc-name1 in s_name.&lt;/P&gt;&lt;P&gt;  append it_adrc.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2006 20:10:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359460#M178718</guid>
      <dc:creator>nablan_umar</dc:creator>
      <dc:date>2006-05-15T20:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359461#M178719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you have to use native SQL for this if you want to capture it in the select statement.&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, 15 May 2006 20:18:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359461#M178719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-15T20:18:23Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359462#M178720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; first get all the entries from ADRC then check those records with your S_NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from adrc into table it_adrc.&lt;/P&gt;&lt;P&gt;loop at it_adrc.&lt;/P&gt;&lt;P&gt;  translate it_adrc-name1 to upper case.&lt;/P&gt;&lt;P&gt;  modify it_adrc.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at s_name1.&lt;/P&gt;&lt;P&gt;  v_tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;  translate s_name1-low upper case.&lt;/P&gt;&lt;P&gt;  read table it_adrc with key name1 = s_name1-low.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    delete s_name1 index v_tabix.&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;*--now S_NAME1 will have all valid records.&lt;/P&gt;&lt;P&gt;*--SO Delete unwanted records from IT_ADRC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete IT_ADRC where name1 not in S_NAME1.&lt;/P&gt;&lt;P&gt;*--now IT_ADRC will have all name1 matches with S_NAME1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;may be this is big tedious &amp;amp; time consuming process,but check this once, till you get another good logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2006 20:20:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359462#M178720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-15T20:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359463#M178721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ztest.

TABLES adrc.

DATA:
wa_src LIKE adrc,
i_src LIKE TABLE OF adrc,
l_str1(20) TYPE c.


PARAMETERS: l_string(20) TYPE c.

START-OF-SELECTION.
  CONCATENATE '%' l_string '%' INTO l_str1.

  EXEC SQL.
    OPEN C FOR
    SELECT *
    FROM  adrc
    WHERE UPPER(NAME1)  LIKE  :L_STR1
  ENDEXEC.

  DO.
    EXEC SQL.
      FETCH NEXT C INTO :wa_SRC
    ENDEXEC.
    IF sy-subrc &amp;lt;&amp;gt; 0.
      EXIT.
    ENDIF.
    APPEND wa_src TO i_src.
  ENDDO.

  EXEC SQL.
    CLOSE C
  ENDEXEC.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This works in DB2 and probably Oracle as well. You'll have to add logic to handle more complex select-options.&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, 15 May 2006 20:48:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359463#M178721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-15T20:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359464#M178722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry - a &amp;lt;b&amp;gt;much&amp;lt;/b&amp;gt; easier example:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT ztest.

TABLES: adrc.

DATA: BEGIN OF it_adrc OCCURS 0,
        addrnumber LIKE adrc-addrnumber,
        date_from  LIKE adrc-date_from,
        nation     LIKE adrc-nation,
        date_to    LIKE adrc-date_to,
        title      LIKE adrc-title,
      END OF it_adrc.

SELECT-OPTIONS: s_name FOR adrc-name1.

LOOP AT s_name.
  TRANSLATE s_name-low  TO UPPER CASE.
  TRANSLATE s_name-high TO UPPER CASE.
  MODIFY s_name.
ENDLOOP.

SELECT  addrnumber date_from nation date_to title
  FROM  adrc
  INTO  TABLE it_adrc
  WHERE &amp;lt;b&amp;gt;mc_name1&amp;lt;/b&amp;gt; IN s_name.

LOOP AT it_adrc.
  WRITE: / it_adrc-addrnumber.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;MC_NAME1 is an upper case truncated version of NAME1 that is created for use by search helps. But it should be OK here. Users don't often enter more than 25 characters in a select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rob Burbank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2006 21:06:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359464#M178722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-15T21:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359465#M178723</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 best, and SAP recommended, way of doing these kind of searchs is to use the field MC_NAME1 instead of NAME1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MC_NAME1 will always have upper case format of the field content NAME1. The only except is the lenth of the fields (25 chars to 40 chars).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sumant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2006 22:03:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359465#M178723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-15T22:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: case sensitive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359466#M178724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;change ur select statement ...this should work....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT ADDRNUMBER DATE_FROM NATION DATE_TO TITLE FROM ADRC INTO TABLE&lt;/P&gt;&lt;P&gt;IT_ADRC WHERE MC_NAME1 IN S_NAME.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 May 2006 23:34:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive/m-p/1359466#M178724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-15T23:34:21Z</dc:date>
    </item>
  </channel>
</rss>

