Hi,
We have recently upgraded our SAS from 9.4M5 to 9.4M7.
I have for a few years now created Stored Processes, and some of them creates PDF output. After upgrading I have got problem with encoding, such as Æ, Ø and Å (Norwegian characters). This was not a problem with 9.4M5.
So my question is: How do I solve this?
I have enclosed the PDF-file which has errors and the Stored Process Code.
Regards
Morten Fredrik
Then this is solved.
I had to include these statements in the StP code:
Data _Null_;
File _Webout encoding = "utf-8";
Run;
Regards Morten Fredrik
Hi @AMUMOR_SAS
You will have to check with SAS Admin team if the encoding was changed in SASv9.cfg file in the old platform. During upgrade some settings are overridden and updated to default and have to be reverted back.
If for any reason they want the default SAS Session encoding to be default then there are different options that you can choose to override it at your individual session level. You can use the encoding= system option to override the default session value.
Some reference links below:
Then this is solved.
I had to include these statements in the StP code:
Data _Null_;
File _Webout encoding = "utf-8";
Run;
Regards Morten Fredrik
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.