<?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: [resolved] Processing SWIFT Message in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2364999#M128667</link>
    <description>Hi,
&lt;BR /&gt;For more details please refer the below post
&lt;BR /&gt;
&lt;A href="http://www.talendforge.org/forum/viewtopic.php?pid=62105#p62105" rel="nofollow noopener noreferrer"&gt;http://www.talendforge.org/forum/viewtopic.php?pid=62105#p62105&lt;/A&gt;</description>
    <pubDate>Tue, 02 Aug 2011 07:53:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-08-02T07:53:36Z</dc:date>
    <item>
      <title>[resolved] Processing SWIFT Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2364995#M128663</link>
      <description>Hi,
&lt;BR /&gt;I am trying to process the swift message. Please find the image attached.
&lt;BR /&gt;I have added one routine called "SwiftParser" with the method "fieldParser(String fin)", which i am calling from the tJava component. 
&lt;BR /&gt;The swift message is hard-coded as of now.
&lt;BR /&gt;My issue is that i want to read and pass the swift data to the tJava component from the file (instead of hard-coding). 
&lt;BR /&gt;I tried few way, but i am not able to do that.
&lt;BR /&gt;Can you please help me in getting this done.</description>
      <pubDate>Sat, 16 Nov 2024 12:46:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2364995#M128663</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Processing SWIFT Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2364996#M128664</link>
      <description>Hi, 
&lt;BR /&gt;Right now i am doing to following to achieve this. Not sure whether this is the right way. Please correct me if there is a better approach. 
&lt;BR /&gt;1) I used tFileInputPositional to read the file. I specified only one pattern, which is from the beginning of the record to end of the record. 
&lt;BR /&gt;2) Then use the tFlowToIterator to get each line one by one 
&lt;BR /&gt;3) Use tJava component to concatenate each line to one string and store it in the globalMap. 
&lt;BR /&gt;4) onSubJobOk user another tJava component to get the complete file content from the globalMap and process the record. 
&lt;BR /&gt; 
&lt;BR /&gt;Sample Swift data 
&lt;BR /&gt;{1:F01BANKDEFMAXXX2039063581}{2 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA5A.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/143082iB236712184B767DA/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA5A.png" alt="0683p000009MA5A.png" /&gt;&lt;/span&gt;1031609050901BANKDEFXAXXX89549829458949811609N}{3:{108:00750532785315}}{4: 
&lt;BR /&gt;:20:007505327853 
&lt;BR /&gt;:23B:CRED 
&lt;BR /&gt;:32A:050902JPY3520000, 
&lt;BR /&gt;:33B:JPY3520000, 
&lt;BR /&gt;:50K:EUROXXXEI 
&lt;BR /&gt;:52A:FEBXXXM1 
&lt;BR /&gt;:53A:MHCXXXJT 
&lt;BR /&gt;:54A:FOOBICXX 
&lt;BR /&gt;:59:/13212312 
&lt;BR /&gt;RECEIVER NAME S.A 
&lt;BR /&gt;:70:FUTURES 
&lt;BR /&gt;:71A 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M9p6.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134116iFBD5D7F21624A744/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M9p6.png" alt="0683p000009M9p6.png" /&gt;&lt;/span&gt;HA 
&lt;BR /&gt;:71F:EUR12,00 
&lt;BR /&gt;:71F:EUR2,34 
&lt;BR /&gt;-}";</description>
      <pubDate>Wed, 27 Jul 2011 11:27:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2364996#M128664</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-07-27T11:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Processing SWIFT Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2364997#M128665</link>
      <description>Hi
&lt;BR /&gt;tFileInputFullRow is better than tFileInputPositional to read row one by one, concatenate each line in tJavaFlex and store it into a globalMap, for example:
&lt;BR /&gt;tFileInputFullRow--main--tJavaFlex
&lt;BR /&gt; |
&lt;BR /&gt;onsubjobok
&lt;BR /&gt; |
&lt;BR /&gt; tJava
&lt;BR /&gt; 
&lt;BR /&gt;on begin part of tJavaFlex:
&lt;BR /&gt;String line="";
&lt;BR /&gt;on main part of tJavaFlex:
&lt;BR /&gt;line=line+row1.line+"\n";
&lt;BR /&gt;on end part of tJavaFlex:
&lt;BR /&gt;globalMap.put("line", line);
&lt;BR /&gt;on tJava:
&lt;BR /&gt;String line=(String)globalMap.get("line");
&lt;BR /&gt;and then, call your routine;
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Wed, 27 Jul 2011 11:34:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2364997#M128665</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-07-27T11:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Processing SWIFT Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2364998#M128666</link>
      <description>Hi Shong, 
&lt;BR /&gt;This was better. Thank you..!! 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Wed, 27 Jul 2011 11:48:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2364998#M128666</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-07-27T11:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Processing SWIFT Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2364999#M128667</link>
      <description>Hi,
&lt;BR /&gt;For more details please refer the below post
&lt;BR /&gt;
&lt;A href="http://www.talendforge.org/forum/viewtopic.php?pid=62105#p62105" rel="nofollow noopener noreferrer"&gt;http://www.talendforge.org/forum/viewtopic.php?pid=62105#p62105&lt;/A&gt;</description>
      <pubDate>Tue, 02 Aug 2011 07:53:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2364999#M128667</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-02T07:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Processing SWIFT Message</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2365000#M128668</link>
      <description>I'm thinking of a SWIFT connector that will work with SAA via mqseries. Do you have any experience on this? Also, do you reconciliate with ack/nack's?&lt;BR /&gt;thanks</description>
      <pubDate>Sat, 26 Nov 2011 15:06:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Processing-SWIFT-Message/m-p/2365000#M128668</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-26T15:06:06Z</dc:date>
    </item>
  </channel>
</rss>

