Ihave an Enum ItemItype with following values
0 - Item (in en-us) and Article in (fr)
i am using en-us version of Axapta
now,
i have an excel sheet from which am reading values for ItemType
the excel is in french. so the value of ItemType is “Article”
i want to compare this value with enum
am using following code
str s1 = “Article”; // = “Item”;
if(str2enum(ItemType::Item,s1) == itemType::Item)
{
info(“Equal”);
}
it works only when am in french version of axapta , since value of s1 = “Article” (fr)
how can i make this comparison language independent
Any hep is Most appreciated 
Thanks & Regards,
Harshini