Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I’m facing an issue with a script that has sections stored as .qvs in SharePoint. These sections are retrieved using a MUST_INCLUDE command. The script works perfectly on-premises, but in the cloud, I’m encountering a problem where certain umlauts (ä, ü, ö) are not interpreted correctly.
Does anyone have a idea how to fix this problem?
Best regards Son
Try this.
Verify that your .qvs
files are saved with UTF-8 encoding (preferably without BOM).(You can verify this using a Notepad++ or other code editors)
and add this to your Global Variables
SET ScriptCollationLocale='utf8';
Mark the solution as accepted that solved your problem and if you found it useful, press the like button! Check out my YouTube Channel | Follow me on LinkedIn
Hi,
Thank you, it worked! I changed the encoding to UTF-8 in Notepad. In the process, every "ä" was converted to "r4X". I manually corrected them back to "ä" and saved the file. That solved the issue.
Best regards Son
Have you tried putting this around those?
IE [ and ]
like [POS_Ländercode]
Regards - Jandre
Mark the solution as accepted that solved your problem and if you found it useful, press the like button! Check out my YouTube Channel | Follow me on LinkedIn
Hi,
good point, i have test it but it doesnt work...
Best regards Son
Hi @SonPhanHumanIT
This works on my side > Qlik Cloud.
This is a QVD though... Don't know if that is where the error comes from. Just tried to replicate the issue on my side.
Mark the solution as accepted that solved your problem and if you found it useful, press the like button! Check out my YouTube Channel | Follow me on LinkedIn
Yes, this works for me as well, but i think, we're currently experiencing an issue with the SharePoint connector.
Best regards Son
Try this.
Verify that your .qvs
files are saved with UTF-8 encoding (preferably without BOM).(You can verify this using a Notepad++ or other code editors)
and add this to your Global Variables
SET ScriptCollationLocale='utf8';
Mark the solution as accepted that solved your problem and if you found it useful, press the like button! Check out my YouTube Channel | Follow me on LinkedIn
Hi @SonPhanHumanIT : do you also have the issue if you put the script files somewhere else (dropbox, etc.)? Just to rule out that it's not a problem specific to the Sharepoint connector.
Hi,
Thank you, it worked! I changed the encoding to UTF-8 in Notepad. In the process, every "ä" was converted to "r4X". I manually corrected them back to "ä" and saved the file. That solved the issue.
Best regards Son
Awesome news!!!
Happy Qlikking!
Mark the solution as accepted that solved your problem and if you found it useful, press the like button! Check out my YouTube Channel | Follow me on LinkedIn