Click HERE to see how Saviynt Intelligence is transforming the industry. |
07/17/2024 02:52 AM
Hi,
We have a rest based application deployed in saviynt. when the firstname or lastname of the user changes from Jorgen to Jörgen (the o is the special character here having 2 dots above).
The Update Account task is failing. It works for normal updates but not for special characters.
Any suggestions please ? The issue is in Production system.
Thanks In Advance.
07/17/2024 03:37 AM
Hi @NishkalaPuli you can use .replace function and replace accented character with O
07/17/2024 05:47 AM
Hi,
Issue is there are too many such characters and replace wouldnt be a feasible solution. anything we can do globally ?
07/17/2024 05:48 AM
Also, they want the french characters in the target and not being translated to english
07/17/2024 08:47 PM
Use database functions from preprocessor .
07/17/2024 07:29 AM
@NishkalaPuli add backslash before the special character.
07/18/2024 05:57 AM
Issue is not with adding a backslash, In httpParams its ${user.firstname}.
Now, firstname has special characters, how to address this ? add backslash where in "${user.firstname}" ?
07/18/2024 09:40 AM
using replace all
${user.firstname.replaceAll("([\\\\\\[\\]^$.|?*+(){}])", "\\\\$1")}
07/26/2024 12:05 AM