PL/SQL产生XML的encoding的值

当我们用PL/SQL产生XML文件,在xml的头信息中,字符编码的解决方案:

使用ORACALE EBS标准的做法:
根据fnd_profile.value('ICX_CLIENT_IANA_ENCODING')来指定xml文件的encoding值。

如下所示:

fnd_file.put_line(fnd_file.output, '<?xml version="1.0" encoding="' || fnd_profile.value('ICX_CLIENT_IANA_ENCODING') || '"?>'); fnd_file.put_line(fnd_file.output, '<ForeCastTable>'); fnd_file.put_line(fnd_file.output, '</ForeCastTable>');

你可能感兴趣的:(xml,encoding)