<?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 Extract data from XML field in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Extract-data-from-XML-field/m-p/2281761#M56190</link>
    <description>Any ideas please?&lt;BR /&gt;I have an ESB returning result in xml format &lt;BR /&gt;I would add my xml here but the forum doesn't seem to like it so here's a link to it&lt;BR /&gt;&amp;nbsp;gist.github.com/cAstraea/398add89c5afc2d42ce1&lt;BR /&gt;How can I extract each code value from this? Like 484816,484817&lt;BR /&gt;&amp;nbsp;I would add an image of my talend job but it seems the forum doesn't like it&lt;BR /&gt;&lt;A href="http://prntscr.com/94i2un" target="_blank" rel="nofollow noopener noreferrer"&gt;http://prntscr.com/94i2un&lt;/A&gt;&lt;BR /&gt;&amp;nbsp;</description>
    <pubDate>Thu, 19 Nov 2015 13:15:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-11-19T13:15:53Z</dc:date>
    <item>
      <title>Extract data from XML field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-data-from-XML-field/m-p/2281761#M56190</link>
      <description>Any ideas please?&lt;BR /&gt;I have an ESB returning result in xml format &lt;BR /&gt;I would add my xml here but the forum doesn't seem to like it so here's a link to it&lt;BR /&gt;&amp;nbsp;gist.github.com/cAstraea/398add89c5afc2d42ce1&lt;BR /&gt;How can I extract each code value from this? Like 484816,484817&lt;BR /&gt;&amp;nbsp;I would add an image of my talend job but it seems the forum doesn't like it&lt;BR /&gt;&lt;A href="http://prntscr.com/94i2un" target="_blank" rel="nofollow noopener noreferrer"&gt;http://prntscr.com/94i2un&lt;/A&gt;&lt;BR /&gt;&amp;nbsp;</description>
      <pubDate>Thu, 19 Nov 2015 13:15:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-data-from-XML-field/m-p/2281761#M56190</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-19T13:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Extract data from XML field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-data-from-XML-field/m-p/2281762#M56191</link>
      <description>I think I'm making some progress , just need to find a way to transform the tFileOutputXML_1 into an input ... tried to make on componentOk link it to an tFileInputXML_1 but don't know how to get it in the file name/stream -&amp;gt; globalMap.get( ??? 
&lt;BR /&gt;The tFileoutputXML_1 file name is generated like "./data/" + context.execution_date_format + ".LogicarCreateSuccess.xml" 
&lt;BR /&gt;Anyone have any idea how I can transform an xml output into an input ?</description>
      <pubDate>Fri, 20 Nov 2015 09:21:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-data-from-XML-field/m-p/2281762#M56191</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-20T09:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Extract data from XML field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-data-from-XML-field/m-p/2281763#M56192</link>
      <description>Basically:
&lt;BR /&gt;* create variable (global map or context variable) for directory+filename
&lt;BR /&gt;* use variable in tFileOutputXML to create xml
&lt;BR /&gt;* use same variable in tFileInputXML to call created xml in previous step</description>
      <pubDate>Fri, 20 Nov 2015 09:27:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-data-from-XML-field/m-p/2281763#M56192</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-20T09:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Extract data from XML field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Extract-data-from-XML-field/m-p/2281764#M56193</link>
      <description>Hello 
&lt;B&gt;junmilsso,&lt;/B&gt; I managed to get the data with textractxmlfields , what I'm missing now is a way to aggregate the data from either tfileoutpoutdelimited_1 or tfileoutputxml_3 to the data from tExtractXMLField2 
&lt;BR /&gt;For example the first 2 return a list of ids
&lt;BR /&gt;8fcd5bfb-3f06-8472-4fa9-564c36342706
&lt;BR /&gt;bc04e42c-2af0-dd6c-2ee4-564c35cd4e52
&lt;BR /&gt;while the 2nd tExtractXMLField returns a list of codes 
&lt;BR /&gt;484851
&lt;BR /&gt;484852
&lt;BR /&gt;See this image for the job
&lt;FONT color="#66cc33"&gt;&lt;B&gt; prntscr.com/94vzq5&lt;/B&gt;&lt;/FONT&gt;
&lt;BR /&gt;How can I join the 2 together ? 
&lt;BR /&gt;I want to use the ids too look up in an accounts table and after use the codes from tExtractXMLField to update each account with that id with the code returned in the same order presented so for the id 8fcd5bfb-3f06-8472-4fa9-564c36342706 I would update a field in accounts with 484851, for bc04e42c-2af0-dd6c-2ee4-564c35cd4e52 with&amp;nbsp; 484852 and so on . I'm thinking iterate and tMysqlRow might be involved but not sure how to tie it all up. 
&lt;BR /&gt;Any help would be much appreciated.
&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 20 Nov 2015 14:04:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Extract-data-from-XML-field/m-p/2281764#M56193</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-20T14:04:02Z</dc:date>
    </item>
  </channel>
</rss>

