<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>KB-2303 September abbreviated to "Sept" instead of "Sep" when calling text() with a "mmm" month format</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>KB-2303 September abbreviated to "Sept" instead of "Sep" when calling text() with a "mmm" month format</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format</link><pubDate>Tue, 23 Apr 2024 23:30:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Maggie Deppe-Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Current Revision posted to Appian Knowledge Base by Maggie Deppe-Walker on 4/23/2024 11:30:06 PM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the&amp;nbsp;abbreviated month:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Combining this with the concat() function will allow you to concatenate the day, month and year into a text string in which the&amp;nbsp;month is always abbreviated to 3 characters.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;April 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization, integration, application design&lt;/div&gt;
</description></item><item><title>KB-2303 September abbreviated to "Sept" instead of "Sep" when calling text() with a "mmm" month format</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/26</link><pubDate>Tue, 23 Apr 2024 16:40:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>pauline.delacruz</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 26 posted to Appian Knowledge Base by pauline.delacruz on 4/23/2024 4:40:12 PM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the&amp;nbsp;abbreviated month:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Combining this with the the concat() function will allow you to concatenate the day, month and year into a text string in which the&amp;nbsp;month is always abbreviated to 3 characters.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;April 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization, integration, application design&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] September abbreviated to "Sept" instead of "Sep" when calling text() with a "mmm" month format</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/25</link><pubDate>Wed, 27 Mar 2024 16:00:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>pauline.delacruz</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 25 posted to Appian Knowledge Base by pauline.delacruz on 3/27/2024 4:00:06 PM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the&amp;nbsp;abbreviated month:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Combining this with the the concat() function will allow you to concatenate the day, month and year into a text string in which the&amp;nbsp;month is always abbreviated to 3 characters.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] September abbreviated to "Sept" instead of "Sep" when calling text() with a "mmm" month format</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/24</link><pubDate>Wed, 27 Mar 2024 15:57:51 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>pauline.delacruz</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 24 posted to Appian Knowledge Base by pauline.delacruz on 3/27/2024 3:57:51 PM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the&amp;nbsp;abbreviated month:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Combining this with the the concat() function will allow you to concatenate the day, month and year into a text string in which the&amp;nbsp;month is always abbreviated to 3 characters.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] September abbreviated to "Sept" instead of "Sep" when calling text() with a "mmm" month format</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/23</link><pubDate>Mon, 18 Mar 2024 05:45:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 23 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:45:30 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the&amp;nbsp;abbreviated month:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Combining this with the the concat() function will allow you to concatenate the day, month and year into a text string in which the&amp;nbsp;month is always abbreviated to 3 characters.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/22</link><pubDate>Mon, 18 Mar 2024 05:41:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 22 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:41:28 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the&amp;nbsp;abbreviated month:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Combining this with the the concat() function will allow you to concatenate the day, month and year into a text string in which the&amp;nbsp;month is always abbreviated to 3 characters.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/21</link><pubDate>Mon, 18 Mar 2024 05:37:30 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 21 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:37:30 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the&amp;nbsp;abbreviated month:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Combining this with the the concat() function will allow you to concatenate the day, month and year into a text string in which the&amp;nbsp;month is always abbreviated to 3 characters.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/20</link><pubDate>Mon, 18 Mar 2024 05:36:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 20 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:36:38 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the&amp;nbsp;abbreviated month:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Using this with the the concat() function will allow you to concatenate the day, month and year into a text string in which the&amp;nbsp;month is always abbreviated to 3 characters.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/19</link><pubDate>Mon, 18 Mar 2024 05:36:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 19 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:36:12 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the&amp;nbsp;abbreviated month:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Using this with the the concat() function will allow you to concatenate the day, month and year into a text string in which the date is always abbreviated with 3 letters.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/18</link><pubDate>Mon, 18 Mar 2024 05:35:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 18 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:35:00 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the&amp;nbsp;abbreviated month:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Using this with the the concat() function will allow you to concatenate the day, month and year into a string in which the date is abbreviated with strictly 3 letters.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/17</link><pubDate>Mon, 18 Mar 2024 05:33:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 17 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:33:53 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the&amp;nbsp;abbreviated month:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Using this with the the concat() function will allow you to concatenate the day, month and year into a date with a month that is strictly abbreviated to 3 letters.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/16</link><pubDate>Mon, 18 Mar 2024 05:33:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 16 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:33:06 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the month&amp;#39;s abbreviation:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Using this with the the concat() function will allow you to concatenate the day, month and year into a date with a month that is strictly abbreviated to 3 letters.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/15</link><pubDate>Mon, 18 Mar 2024 05:32:53 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 15 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:32:53 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example, the following SAIL code returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the month&amp;#39;s abbreviation:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Using this with the the concat() function will allow you to concatenate the day, month and year into a date with a month that is strictly abbreviated to 3 letters.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/14</link><pubDate>Mon, 18 Mar 2024 05:32:37 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 14 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:32:37 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example,&amp;nbsp;&amp;nbsp;returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;:&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyy&amp;quot;)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the month&amp;#39;s abbreviation:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Using this with the the concat() function will allow you to concatenate the day, month and year into a date with a month that is strictly abbreviated to 3 letters.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/13</link><pubDate>Mon, 18 Mar 2024 05:30:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 13 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:30:08 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example,&amp;nbsp;&amp;nbsp;&lt;code&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyy&amp;quot;)&lt;/code&gt;&amp;nbsp;returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;.&lt;/span&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the month&amp;#39;s abbreviation:&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;p&gt;Using this with the the concat() function will allow you to concatenate the day, month and year into a date with a month that is strictly abbreviated to 3 letters.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/12</link><pubDate>Mon, 18 Mar 2024 05:26:50 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 12 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:26:50 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example,&amp;nbsp;&amp;nbsp;&lt;code&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyy&amp;quot;)&lt;/code&gt;&amp;nbsp;returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;.&lt;/span&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For example, the following code snippet will extract only the first 3 letters of the abbreviated month:&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;pre&gt;left(text(&amp;quot;01/09/2023&amp;quot;, &amp;quot;mmm&amp;quot;,3)&lt;/pre&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/11</link><pubDate>Mon, 18 Mar 2024 05:19:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 11 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:19:01 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using &amp;quot;English (United Kingdom)&amp;quot; as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example,&amp;nbsp;&amp;nbsp;&lt;code&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyy&amp;quot;)&lt;/code&gt;&amp;nbsp;returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;.&lt;/span&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for &amp;quot;English (United Kingdom)&amp;quot;.&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/10</link><pubDate>Mon, 18 Mar 2024 05:18:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 10 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 5:18:24 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using English (United Kingdom) as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example,&amp;nbsp;&amp;nbsp;&lt;code&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyy&amp;quot;)&lt;/code&gt;&amp;nbsp;returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;.&lt;/span&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for English (United Kingdom).&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/9</link><pubDate>Mon, 18 Mar 2024 04:29:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 9 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 4:29:24 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to&amp;nbsp;&amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot;&amp;nbsp;when using the text() function for Appian environments using English (United Kingdom) as their locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example,&amp;nbsp;&amp;nbsp;&lt;code&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyy&amp;quot;)&lt;/code&gt;&amp;nbsp;returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;.&lt;/span&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for English (United Kingdom).&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;. Designing validations to accept &amp;quot;Sept&amp;quot; date formats is also recommended.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/8</link><pubDate>Mon, 18 Mar 2024 04:27:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 8 posted to Appian Knowledge Base by Adam Walker on 3/18/2024 4:27:32 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;September is shortened to &lt;em&gt;Sept&lt;/em&gt; instead of &lt;em&gt;Sep&lt;/em&gt; when using the text() function with &lt;em&gt;English (United Kingdom)&lt;/em&gt; set as the locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example,&amp;nbsp;&amp;nbsp;&lt;code&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyy&amp;quot;)&lt;/code&gt;&amp;nbsp;returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;.&lt;/span&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for English (United Kingdom).&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;. Designing validations to accept &amp;quot;Sept&amp;quot; date formats is also recommended.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This section includes any relevant version information for Appian or other third/party configurations. Some examples of valid affected versions are as follows:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item><item><title>[DRAFT SP-9717] "Sept" returned instead of "Sep" from text() when specifying the "mmm" month format for the "English (United Kingdom)" locale</title><link>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format/revision/7</link><pubDate>Fri, 15 Mar 2024 05:29:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:31429686-1ea0-4ba7-bd6a-8f125f75ab1f</guid><dc:creator>Adam Walker</dc:creator><comments>https://community.appian.com/support/w/kb/3503/kb-2303-september-abbreviated-to-sept-instead-of-sep-when-calling-text-with-a-mmm-month-format#comments</comments><description>Revision 7 posted to Appian Knowledge Base by Adam Walker on 3/15/2024 5:29:39 AM&lt;br /&gt;
&lt;h2 id="mcetoc_1ho3t5cin0"&gt;&lt;span&gt;Symptoms&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;Calling the function&amp;nbsp;&lt;code&gt;text()&lt;/code&gt;&amp;nbsp;for a date with&amp;nbsp;&lt;code&gt;mmm&lt;/code&gt;&amp;nbsp;chosen as the month format returns &amp;quot;Sept&amp;quot; instead of &amp;quot;Sep&amp;quot; when using the&amp;nbsp;English (UK) locale.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;For example,&amp;nbsp;&amp;nbsp;&lt;code&gt;text(&amp;quot;01/09/2024&amp;quot;,&amp;quot;dd-mmm-yyy&amp;quot;)&lt;/code&gt;&amp;nbsp;returns &amp;quot;&lt;span class="CollapsibleOutputNode---print_value"&gt;01-Sept-2024&lt;/span&gt;&amp;quot; instead of &amp;quot;01-Sep-2024&amp;quot;.&lt;/span&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin2"&gt;&lt;span&gt;Cause&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian uses International Components for Unicode (ICU) for internalization; specifically, the ICU4J library. ICU4J obtains its data from the Common Locale Data Repository (CLDR). In version 38 of the CLDR, the abbreviation for September was changed from &amp;quot;Sep&amp;quot; to &amp;quot;Sept&amp;quot; for the en_GB locale that Appian uses for English (United Kingdom).&amp;nbsp;This change was picked up in version 68 of ICU4J. The latest Appian releases use a version of the ICU4J library that includes these changes to the CLDR.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin3"&gt;&lt;span&gt;Workaround&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Appian&amp;nbsp;functions such as&amp;nbsp;&lt;a title="left() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_left.html"&gt;left()&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a title="concat() Function" href="https://docs.appian.com/suite/help/latest/fnc_text_concat.html"&gt;concat()&lt;/a&gt;&amp;nbsp;can be used to design expression rules that convert &amp;quot;Sept&amp;quot; dates to &amp;quot;Sep&amp;quot;. Designing validations to accept &amp;quot;Sept&amp;quot; date formats is also recommended.&amp;nbsp;&lt;/p&gt;
&lt;h2 id="mcetoc_1ho3t5cin4"&gt;&lt;span&gt;Affected Versions&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;This section includes any relevant version information for Appian or other third/party configurations. Some examples of valid affected versions are as follows:&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;This article applies to&amp;nbsp;Appian 22.4 and later.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span&gt;Last Reviewed:&amp;nbsp;March 2024&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: expression rules, internationalization&lt;/div&gt;
</description></item></channel></rss>