<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: trans code error while reading an xml file in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934486#M44924</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/76331"&gt;@alepage&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Yes, I have look at obs 160740 but I don't think that there is a column 109. I am able to open the file in Excel and I dont see nothing particular. Is there an option or a way to solve that issue.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Not sure how opening a TEXT file with Excel is going to help you look at what is in like 160,740.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try looking at the file in a text editor.&amp;nbsp; Or just use a SAS data step and see if you see anything strange in column 109 on that line.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  infile datafile firstobs=160739 obs=160741 ;
  input;
  list;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Is your SAS session running with ENCODING option set to UTF-8?&lt;/P&gt;
&lt;P&gt;If not try running the same program in a SAS session that is.&lt;/P&gt;</description>
    <pubDate>Wed, 03 Jul 2024 02:12:59 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2024-07-03T02:12:59Z</dc:date>
    <item>
      <title>trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934473#M44918</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using a macro funtion to download an xml file from a web site. It was working properly but since few days, we have the following errors. How do we solve that kind of issue?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ORDERDATE=20240701&lt;BR /&gt;ORDERTIME=080000&lt;BR /&gt;SURVEYNAME=BROKERS_QUEBEC_SURVEYS_RESPONSES&lt;BR /&gt;" BROKERS_QUEBEC_SURVEYS_RESPONSES"&lt;BR /&gt;'you are an authorized user in stha8n09z'&lt;BR /&gt;SYS_PROCHTTP_STATUS_CODE=200&lt;BR /&gt;{&lt;BR /&gt;"access_token": "51ebfa1c-7c45-4305-9658-9fa0008d91b3",&lt;BR /&gt;"token_type": "Bearer",&lt;BR /&gt;"expires_in": 3599,&lt;BR /&gt;"scope": "manage:all"&lt;BR /&gt;}&lt;BR /&gt;BEARERTOKEN=...0008d91b3 BTEXPIN= 3599 BEARERTIMER_START=2035560918.51997&lt;BR /&gt;"==================================================================="&lt;BR /&gt;SURVEYID=SV_0vnXEeLgN8B46bA&lt;BR /&gt;ZNAME=Zfile13&lt;BR /&gt;"===========WE ARE STARTING TO PROCESS SURVEY SV_0vnXEeLgN8B46bA ==========="&lt;BR /&gt;"========================== PROGRESSID=ES_aVJxgqv3peSjDkG =========================="&lt;BR /&gt;PSTATUS=inProgress&lt;BR /&gt;PSTATUS=inProgress&lt;BR /&gt;PSTATUS=inProgress&lt;BR /&gt;PSTATUS=complete&lt;BR /&gt;FILEID=c33612d3-e2dd-45d1-bef4-aeee06e12397-def&lt;BR /&gt;Archive: /finsys/.../data/Zfile13.zip&lt;BR /&gt;inflating: /finsys/.../data/Virage Survey.xml &lt;BR /&gt;XMLFILE=Virage Survey.xml&lt;BR /&gt;XMLFILE2=VirageSurvey.xml&lt;BR /&gt;XMLMAP2=VirageSurvey.map&lt;BR /&gt;FILE_PATH=/finsys/.../data&lt;BR /&gt;ERROR: Some code points did not transcode.&lt;BR /&gt;occurred at or near line 160740, column 109&lt;BR /&gt;ERROR: XML parsing error. Please verify that the XML content is well-formed.&lt;BR /&gt;ERROR: File WORK.Response.DATA has not been saved because copy could not be completed.&lt;BR /&gt;ERROR: Some code points did not transcode.&lt;BR /&gt;occurred at or near line 160740, column 109&lt;BR /&gt;ERROR: XML parsing error. Please verify that the XML content is well-formed.&lt;BR /&gt;ERROR: File WORK.Responses.DATA has not been saved because copy could not be completed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Partial code inside a macro function:

filename oscmd pipe "unzip -d &amp;amp;file_path. -jo &amp;amp;file_path./&amp;amp;Zname..zip";
     
data _null_;
	infile oscmd;
    input;
    put _infile_;
run;

/******* Get the xml file name********/

Filename adb_xml pipe "ls -Art &amp;amp;file_path./*.xml | tail -n 1 ";
 
DATA xml_filelist;
Infile adb_xml truncover;
Input 	infile_name $100.;
Filename=scan(infile_name,-1,"/","b");
call symput ('xmlFile',strip(Filename));
call symput ('cn_xmlFile1',strip(infile_name));
RUN;
  
/** Declaring other macro variables
    Please don't move those macro. They need the value of xmlFile from the
    above call symput statement                                           ***/


%let xmlFile2=%sysfunc(compress(&amp;amp;xmlFile));
%let xmlMap2=%substr(&amp;amp;xmlFile2.,1,%length(&amp;amp;xmlFile2.)-4).map;
%put &amp;amp;=xmlFile;
%put &amp;amp;=xmlFile2;
%put &amp;amp;=xmlMap2;
%put &amp;amp;=file_path.;

/** Renaming the XML File with SAS standard (no space in the file name) ***/

filename oscmd pipe "mv ""&amp;amp;file_path./&amp;amp;xmlFile."" ""&amp;amp;file_path./&amp;amp;xmlFile2."" 2&amp;gt;&amp;amp;1";

data _null_;
infile oscmd;
input;
put _infile_;
run;
  
/********** Creating the map file ***************/

filename datafile "&amp;amp;file_path./&amp;amp;xmlFile2.";
filename mapfile "&amp;amp;file_path./&amp;amp;xmlMap2.";

libname datafile xmlv2 xmlmap=mapfile automap=replace;



proc copy in=datafile out=work;
run;

%goto exit;

Errors appears when the proc copy is executed&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 Jul 2024 21:41:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934473#M44918</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2024-07-02T21:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934476#M44919</link>
      <description>&lt;P&gt;The message is clear:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ERROR: XML parsing error. Please verify that the XML content is well-formed.&lt;/STRONG&gt;&lt;BR /&gt;The file is not as expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you look at the data near line 160740, column 109 ?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2024 22:35:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934476#M44919</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-07-02T22:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934478#M44920</link>
      <description>Yes, I have look at obs 160740 but I don't think that there is a column 109.  I am able to open the file in Excel and I dont see nothing particular. Is there an option or a way to solve that issue.</description>
      <pubDate>Tue, 02 Jul 2024 23:09:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934478#M44920</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2024-07-02T23:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934479#M44921</link>
      <description>&lt;P&gt;If the XML file is malformed, you need to tell the provider to correct it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The other option is to correct it manually (by hand or by program, add a column or remove the record), but you shouldn't have to do that. Fix the process rather than the error.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2024 23:14:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934479#M44921</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-07-02T23:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934483#M44923</link>
      <description>Make sure the encoding of XML file is the same with your sas session.&lt;BR /&gt;Open this XML file by NOTEPAD++ and check its encoding. and specify the right encoding in your code . like :&lt;BR /&gt;&lt;BR /&gt;filename datafile "&amp;amp;file_path./&amp;amp;xmlFile2."   encoding='utf8'   ;</description>
      <pubDate>Wed, 03 Jul 2024 01:26:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934483#M44923</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-07-03T01:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934486#M44924</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/76331"&gt;@alepage&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Yes, I have look at obs 160740 but I don't think that there is a column 109. I am able to open the file in Excel and I dont see nothing particular. Is there an option or a way to solve that issue.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Not sure how opening a TEXT file with Excel is going to help you look at what is in like 160,740.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try looking at the file in a text editor.&amp;nbsp; Or just use a SAS data step and see if you see anything strange in column 109 on that line.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  infile datafile firstobs=160739 obs=160741 ;
  input;
  list;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Is your SAS session running with ENCODING option set to UTF-8?&lt;/P&gt;
&lt;P&gt;If not try running the same program in a SAS session that is.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 02:12:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934486#M44924</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-07-03T02:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934534#M44925</link>
      <description>&lt;P&gt;Tom,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You were right about using Notepad ++ instead of Excel. Here's what I have into observations 160739 and 160740&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;QID2_TEXT&amp;gt;La dame a été très patience et gentille et que ça fait longtemps que je suis assurée avec vous. &lt;BR /&gt;Si c’était possible, je me demandais s’il n’y aurais pas possibilité de diminuer le coût de l’assurance? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;lt;/QID2_TEXT&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, we see the we have an Emoji into the XML file. How can we handle that issue?&lt;/P&gt;
&lt;P&gt;Second, As you can see, the language used is French and we have accentued characters .&amp;nbsp; Which encoding will be more appropriate for that?&amp;nbsp;&lt;SPAN&gt;UTF-8 or another one&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 11:50:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934534#M44925</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2024-07-03T11:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934538#M44926</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have used notepad++ to look at the xml file and I found that I have emoji into the xml file.&lt;/P&gt;
&lt;P&gt;ex:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;QID2_TEXT&amp;gt;La dame a été très patience et gentille et que ça fait longtemps que je suis assurée avec vous. &lt;BR /&gt;Si c’était possible, je me demandais s’il n’y aurais pas possibilité de diminuer le coût de l’assurance? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;lt;/QID2_TEXT&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe that the mapping step is failing due to those emoji into the xml file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/********** Creating the map file ***************/

filename datafile "&amp;amp;file_path./&amp;amp;xmlFile2.";
filename mapfile "&amp;amp;file_path./&amp;amp;xmlMap2.";

libname datafile xmlv2 xmlmap=mapfile automap=replace;



proc copy in=datafile out=work;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;How to solve that issue? how to remove the emoji from the xml file?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 12:58:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934538#M44926</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2024-07-03T12:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934558#M44928</link>
      <description>&lt;P&gt;Running you SAS session with ENCODING='UTF-8' should work.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run this line to see what encoding you are using:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put %sysfunc(getoption(encoding));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The system encoding is set when the SAS session starts.&amp;nbsp; So if your SAS session is not using it now you will need to start SAS in a different way to get it set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The only reason it would not would be if the actual byte string in the file is not really a valid UTF-8 character.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If running with UTF-8 does not work then you should add an extra step in your process to preprocess the file (using encoding=ANY or RECFM=F so that no transcoding is attempted) and replace that set of bytes with something that is valid.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So you need to know the bytes that are in the file at the place that Notepad++ is showing the smiley face.&amp;nbsp;&amp;nbsp;Which is hard to tell since you posted the value as glyphs instead of the hexcodes.&amp;nbsp; &amp;nbsp;And since you pasted it into the body of your message the forum editor has replaced it with html code for the smiling face.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did you try running the data step to see what SAS reads?&amp;nbsp; Can you see the hexcode(s) for that character?&amp;nbsp; If the LIST command did not display the hex codes then try reading the line into a character variable and printing it with $HEX format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 14:20:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934558#M44928</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-07-03T14:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934637#M44931</link>
      <description>Firstly check your encoding of XML file by Notepad++.&lt;BR /&gt;&lt;BR /&gt;If it was utf-8 ,Try the option encoding= I mentioned before.&lt;BR /&gt;And better change your sas session encoding to be utf-8 too.&lt;BR /&gt;&lt;BR /&gt;filename datafile "&amp;amp;file_path./&amp;amp;xmlFile2."   encoding='utf8'  ;&lt;BR /&gt;filename mapfile "&amp;amp;file_path./&amp;amp;xmlMap2."  encoding='utf8' ;&lt;BR /&gt;&lt;BR /&gt;libname datafile xmlv2 xmlmap=mapfile automap=replace;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;proc copy in=datafile out=work noclone;&lt;BR /&gt;run;</description>
      <pubDate>Thu, 04 Jul 2024 00:28:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934637#M44931</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-07-04T00:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934638#M44932</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename datafile "&amp;amp;file_path2./&amp;amp;xmlFile3." encoding='utf-8';
filename mapfile "&amp;amp;file_path2./&amp;amp;xmlMap2." encoding='utf-8';

libname datafile xmlv2 xmlmap=mapfile automap=replace;

proc copy in=datafile out=work noclone;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;ERROR: The creation of the XML Mapper file failed.&lt;BR /&gt;ERROR: Error in the LIBNAME statement.&lt;BR /&gt;ERROR: Libref DATAFILE is not assigned.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2024 00:38:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934638#M44932</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2024-07-04T00:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934641#M44933</link>
      <description>Remove the encoding= option from XML Mapper file ?&lt;BR /&gt;&lt;BR /&gt;filename datafile "&amp;amp;file_path2./&amp;amp;xmlFile3." encoding='utf-8';&lt;BR /&gt;filename mapfile "&amp;amp;file_path2./&amp;amp;xmlMap2." ;&lt;BR /&gt;&lt;BR /&gt;libname datafile xmlv2 xmlmap=mapfile automap=replace;&lt;BR /&gt;&lt;BR /&gt;proc copy in=datafile out=work noclone;&lt;BR /&gt;run;</description>
      <pubDate>Thu, 04 Jul 2024 01:05:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934641#M44933</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-07-04T01:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: trans code error while reading an xml file</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934666#M44936</link>
      <description>&lt;P&gt;ERROR: Some code points did not transcode.&lt;BR /&gt;occurred at or near line 160740, column 109&lt;BR /&gt;ERROR: XML parsing error. Please verify that the XML content is well-formed.&lt;BR /&gt;ERROR: File WORK.Response.DATA has not been saved because copy could not be completed.&lt;BR /&gt;ERROR: Some code points did not transcode.&lt;BR /&gt;occurred at or near line 160740, column 109&lt;BR /&gt;ERROR: XML parsing error. Please verify that the XML content is well-formed.&lt;BR /&gt;ERROR: File WORK.Responses.DATA has not been saved because copy could not be completed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Those errors are due to the presence of emoji into the xml file&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2024 09:25:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/trans-code-error-while-reading-an-xml-file/m-p/934666#M44936</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2024-07-04T09:25:21Z</dc:date>
    </item>
  </channel>
</rss>

