I have a macro that adds a comment to a field in PeopleSoft. It works great for users who’s machine is set to English.
However for users, who’s machine is set to French Canada, any letters with “accents” gets replaced by a backwards question mark (refer to the screenshots below).
Any idea what causes this and how I can fix it?
The user’s can manually type the same words (wth accents) in the comment field and this behavior does not occur.
Any help or suggestions would be greatly appreciated. Thanks in advance to taking the time to look at this issue for me…
Thanks for the reply. This is on Windows. Below is the line of code I’m using to enter the French language in the comments field. Thanks for your help. Let me know if you need anything else…
{
“Command”: “type”,
“Target”: “id=CUST_CONVER_DESCRLONG$0”,
“Value”: “${MyCSV[${vCounter}][3]}”,
“Targets”: [
“id=CUST_CONVER_DESCRLONG$0”,
“name=CUST_CONVER_DESCRLONG$0”,
“xpath=//*[@id="CUST_CONVER_DESCRLONG$0"]”,
“xpath=//textarea[@id=‘CUST_CONVER_DESCRLONG$0’]”,
“xpath=//textarea”,
“css=#CUST_CONVER_DESCRLONG$0”
],
“Description”: “Entering data from the csv file the COMMENTS field”
},
I’ve provide some additional information. If you could look at that when you have a few minutes and let me know your thoughts, I would appreciate it very much…Thank you for your help…
@admin…Thanks but that did not work. When we create the csv data source file, we changed the format to UTF-8. That resolved the issue and we no longer get the question marks. Thanks for your help…