<?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: Problem with SET LOCALE LANGUAGE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877170#M368729</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I checked for slovakia, there exists an entry.&lt;/P&gt;&lt;P&gt;How ever the MODIFIER does not exist for both CZECH and SLOVAKIA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Jan 2007 13:32:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-23T13:32:03Z</dc:date>
    <item>
      <title>Problem with SET LOCALE LANGUAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877163#M368722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Every body,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i use SET LOACLE LANGUAGE in one of my programs it is going for a DUMP (TEXTENV_INVALID).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body let me know what might be the reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any more inputs from any body.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Venkat Chidurala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 12:27:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877163#M368722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T12:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with SET LOCALE LANGUAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877164#M368723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check below....&lt;/P&gt;&lt;P&gt;Sorting Internal Tables &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can sort a standard or hashed table in a program. To sort a table by its key, use the statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT  &lt;A href="https://community.sap.com/DESCENDING"&gt;ASCENDING&lt;/A&gt; &lt;A href="AS TEXT"&gt;&lt;/A&gt; &lt;A href="https://community.sap.com/STABLE"&gt;&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement sorts the internal table  &lt;A href="https://community.sap.com/DESCENDING"&gt;ASCENDING&lt;/A&gt; &lt;A href="AS TEXT"&gt;&lt;/A&gt; &lt;A href="https://community.sap.com/STABLE"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;             BY  &lt;A href="https://community.sap.com/DESCENDING"&gt;ASCENDING&lt;/A&gt; &lt;A href="AS TEXT"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;                ...&lt;/P&gt;&lt;P&gt;                 &lt;A href="https://community.sap.com/DESCENDING"&gt;ASCENDING&lt;/A&gt; &lt;A href="AS TEXT"&gt;&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table is now sorted by the specified components  ... STABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;allows you to perform a stable sort, that is, the relative sequence of lines that are unchanged by the sort is not changed. If you do not use the STABLE option, the sort sequence is not preserved. If you sort a table several times by the same key, the sequence of the table entries will change in each sort. However, a stable sort takes longer than an unstable sort. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples&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: BEGIN OF LINE,&lt;/P&gt;&lt;P&gt;        LAND(3)  TYPE C,&lt;/P&gt;&lt;P&gt;        NAME(10) TYPE C,&lt;/P&gt;&lt;P&gt;        AGE      TYPE I,&lt;/P&gt;&lt;P&gt;        WEIGHT   TYPE P DECIMALS 2,&lt;/P&gt;&lt;P&gt;      END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA ITAB LIKE STANDARD TABLE OF LINE WITH NON-UNIQUE KEY LAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-LAND = 'G'.   LINE-NAME   = 'Hans'.&lt;/P&gt;&lt;P&gt;LINE-AGE  = 20.    LINE-WEIGHT = '80.00'.&lt;/P&gt;&lt;P&gt;APPEND LINE TO ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-LAND = 'USA'. LINE-NAME   = 'Nancy'.&lt;/P&gt;&lt;P&gt;LINE-AGE  = 35.    LINE-WEIGHT = '45.00'.&lt;/P&gt;&lt;P&gt;APPEND LINE TO ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-LAND = 'USA'. LINE-NAME   = 'Howard'.&lt;/P&gt;&lt;P&gt;LINE-AGE  = 40.    LINE-WEIGHT = '95.00'.&lt;/P&gt;&lt;P&gt;APPEND LINE TO ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-LAND = 'GB'.  LINE-NAME   = 'Jenny'.&lt;/P&gt;&lt;P&gt;LINE-AGE  = 18.    LINE-WEIGHT = '50.00'.&lt;/P&gt;&lt;P&gt;APPEND LINE TO ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-LAND = 'F'.   LINE-NAME   = 'Michele'.&lt;/P&gt;&lt;P&gt;LINE-AGE  = 30.    LINE-WEIGHT = '60.00'.&lt;/P&gt;&lt;P&gt;APPEND LINE TO ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-LAND = 'G'.   LINE-NAME   = 'Karl'.&lt;/P&gt;&lt;P&gt;LINE-AGE  = 60.    LINE-WEIGHT = '75.00'.&lt;/P&gt;&lt;P&gt;APPEND LINE TO ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM LOOP_AT_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT ITAB.&lt;/P&gt;&lt;P&gt;PERFORM LOOP_AT_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT ITAB.&lt;/P&gt;&lt;P&gt;PERFORM LOOP_AT_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT ITAB STABLE.&lt;/P&gt;&lt;P&gt;PERFORM LOOP_AT_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT ITAB DESCENDING BY LAND WEIGHT ASCENDING.&lt;/P&gt;&lt;P&gt;PERFORM LOOP_AT_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM LOOP_AT_ITAB.&lt;/P&gt;&lt;P&gt;  LOOP AT ITAB INTO LINE.&lt;/P&gt;&lt;P&gt;    WRITE: / LINE-LAND, LINE-NAME, LINE-AGE, LINE-WEIGHT.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  SKIP.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output is: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;G   Hans               20         80.00&lt;/P&gt;&lt;P&gt;USA Nancy              35         45.00&lt;/P&gt;&lt;P&gt;USA Howard             40         95.00&lt;/P&gt;&lt;P&gt;GB  Jenny              18         50.00&lt;/P&gt;&lt;P&gt;F   Michele            30         60.00&lt;/P&gt;&lt;P&gt;G   Karl               60         75.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F   Michele            30         60.00&lt;/P&gt;&lt;P&gt;G   Hans               20         80.00&lt;/P&gt;&lt;P&gt;G   Karl               60         75.00&lt;/P&gt;&lt;P&gt;GB  Jenny              18         50.00&lt;/P&gt;&lt;P&gt;USA Howard             40         95.00&lt;/P&gt;&lt;P&gt;USA Nancy              35         45.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F   Michele            30         60.00&lt;/P&gt;&lt;P&gt;G   Karl               60         75.00&lt;/P&gt;&lt;P&gt;G   Hans               20         80.00&lt;/P&gt;&lt;P&gt;GB  Jenny              18         50.00&lt;/P&gt;&lt;P&gt;USA Howard             40         95.00&lt;/P&gt;&lt;P&gt;USA Nancy              35         45.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F   Michele            30         60.00&lt;/P&gt;&lt;P&gt;G   Karl               60         75.00&lt;/P&gt;&lt;P&gt;G   Hans               20         80.00&lt;/P&gt;&lt;P&gt;GB  Jenny              18         50.00&lt;/P&gt;&lt;P&gt;USA Howard             40         95.00&lt;/P&gt;&lt;P&gt;USA Nancy              35         45.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USA Nancy              35         45.00&lt;/P&gt;&lt;P&gt;USA Howard             40         95.00&lt;/P&gt;&lt;P&gt;GB  Jenny              18         50.00&lt;/P&gt;&lt;P&gt;G   Karl               60         75.00&lt;/P&gt;&lt;P&gt;G   Hans               20         80.00&lt;/P&gt;&lt;P&gt;F   Michele            30         60.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program sorts a standard table with one key field four times. First, the table is sorted twice by the key field (LAND) without the STABLE addition. The sort is unstable. The sequence of the second and third lines changes. The same sort is then performed using the STABLE addition. The sort is stable. The lines remain in the same sequence. Then, it is sorted by a sort key defined as LAND and WEIGHT. The general sort order is defined as descending, but for WEIGHT it is defined as ascending. &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: BEGIN OF LINE,&lt;/P&gt;&lt;P&gt;        TEXT(6),&lt;/P&gt;&lt;P&gt;        XTEXT(160) TYPE X,&lt;/P&gt;&lt;P&gt;      END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA ITAB LIKE HASHED TABLE OF LINE WITH UNIQUE KEY TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-TEXT = 'Muller'.&lt;/P&gt;&lt;P&gt;CONVERT TEXT LINE-TEXT INTO SORTABLE CODE LINE-XTEXT.&lt;/P&gt;&lt;P&gt;INSERT LINE INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-TEXT = 'Möller'.&lt;/P&gt;&lt;P&gt;CONVERT TEXT LINE-TEXT INTO SORTABLE CODE LINE-XTEXT.&lt;/P&gt;&lt;P&gt;INSERT LINE INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-TEXT = 'Moller'.&lt;/P&gt;&lt;P&gt;CONVERT TEXT LINE-TEXT INTO SORTABLE CODE LINE-XTEXT.&lt;/P&gt;&lt;P&gt;INSERT LINE INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LINE-TEXT = 'Miller'.&lt;/P&gt;&lt;P&gt;CONVERT TEXT LINE-TEXT INTO SORTABLE CODE LINE-XTEXT.&lt;/P&gt;&lt;P&gt;INSERT LINE INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT ITAB.&lt;/P&gt;&lt;P&gt;PERFORM LOOP_AT_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT ITAB BY XTEXT.&lt;/P&gt;&lt;P&gt;PERFORM LOOP_AT_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT ITAB AS TEXT.&lt;/P&gt;&lt;P&gt;PERFORM LOOP_AT_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM LOOP_AT_ITAB.&lt;/P&gt;&lt;P&gt;  LOOP AT ITAB INTO LINE.&lt;/P&gt;&lt;P&gt;    WRITE / LINE-TEXT.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  SKIP.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This example demonstrates alphabetical sorting of character fields. The internal table ITAB contains a column with character fields and a column with corresponding binary codes that are alphabetically sortable. The binary codes are created with the CONVERT statement (see Converting to a Sortable Format). The table is sorted three times. First, it is sorted binarily by the TEXT field. Second, it is sorted binarily by the XTEXT field. Third, it is sorted alphabetically by the TEXT field. Since there is no directly corresponding case in English, we have taken the results from a German text environment:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miller&lt;/P&gt;&lt;P&gt;Moller&lt;/P&gt;&lt;P&gt;Muller&lt;/P&gt;&lt;P&gt;Möller&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miller&lt;/P&gt;&lt;P&gt;Moller&lt;/P&gt;&lt;P&gt;Möller&lt;/P&gt;&lt;P&gt;Muller&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miller&lt;/P&gt;&lt;P&gt;Moller&lt;/P&gt;&lt;P&gt;Möller&lt;/P&gt;&lt;P&gt;Muller&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the first sorting, 'Möller' follows behind 'Muller' since the internal code for the letter 'ö' comes after the code for 'u'. The other two sorts are alphabetical. The binary sort by XTEXT has the same result as the alphabetical sorting by the field TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 12:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877164#M368723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T12:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with SET LOCALE LANGUAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877165#M368724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the language , country  u had given should exist in the table TCP0C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i guess u had given the langue as 2 characters , it should be only 1 character&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk the languages in TCP0C table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 12:41:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877165#M368724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T12:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with SET LOCALE LANGUAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877166#M368725</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;You need use SET LOCALE LANGUAGE SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 12:43:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877166#M368725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T12:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with SET LOCALE LANGUAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877167#M368726</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, i had given only one character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET LOCALE LANGUAGE 'C'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition to this, this statement is working fine for another country(CZECH),&lt;/P&gt;&lt;P&gt;for SLOVAKIA it is dumping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 12:50:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877167#M368726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T12:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with SET LOCALE LANGUAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877168#M368727</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;If i use SET LOCALE LANGUAGE SPACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i get SLOVAKIA text environment.&lt;/P&gt;&lt;P&gt;If we set to SPACE, it will take the login language text environment.&lt;/P&gt;&lt;P&gt;To over come this we are explicitly using this statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 12:54:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877168#M368727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T12:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with SET LOCALE LANGUAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877169#M368728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then for slovakia check if an entry exists in that table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lang, cntry, and mod should exist for  slovakia in that table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Chandrasekhar Jagarlamudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 12:57:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877169#M368728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T12:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with SET LOCALE LANGUAGE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877170#M368729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I checked for slovakia, there exists an entry.&lt;/P&gt;&lt;P&gt;How ever the MODIFIER does not exist for both CZECH and SLOVAKIA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2007 13:32:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-set-locale-language/m-p/1877170#M368729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-23T13:32:03Z</dc:date>
    </item>
  </channel>
</rss>

