| Re: Country Codes Hi ,
All locations are mapped with 3 letter country codes. So if you want it to be displayed in 2 characters then either u need to create new country codes with 2 letters or ...u can modify the 'Picklist' template to drop down in XSL (JSPx) and using 'options' you can display it as 2 letters which is actually mapped with 3 letter codes.
<options>
<option name='FR' value='FRA'>FR</option>
<option name='US' value='FRA'>US</option>
</options>
you can customise ur XSL with above code. |