<?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 [resolved] How to create a new Metadata Component for SWIFT? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362183#M126366</link>
    <description>Hi,
&lt;BR /&gt;I need to parse the SWIFT messages to our readable format, and similarly generate the SWIFT messages from the existing data we have.
&lt;BR /&gt;I guess, as of now Talend does not support the SWIFT message parsing.
&lt;BR /&gt;So, If we have to create a new component for parsing the SWIFT message what would be the best approach?
&lt;BR /&gt;I think under "Repository" we can have an additional component called "File SWIFT" which would do the above job.
&lt;BR /&gt;Could you please help me in creating a new component "File SWIFT".
&lt;BR /&gt;Any guidance regarding this is highly appreciated.
&lt;BR /&gt;
&lt;BR /&gt;SWIFT - Society for Worldwide Interbank Financial Telecommunication
&lt;BR /&gt;Thank you
&lt;BR /&gt;Achyuth</description>
    <pubDate>Sat, 16 Nov 2024 12:46:58 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T12:46:58Z</dc:date>
    <item>
      <title>[resolved] How to create a new Metadata Component for SWIFT?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362183#M126366</link>
      <description>Hi,
&lt;BR /&gt;I need to parse the SWIFT messages to our readable format, and similarly generate the SWIFT messages from the existing data we have.
&lt;BR /&gt;I guess, as of now Talend does not support the SWIFT message parsing.
&lt;BR /&gt;So, If we have to create a new component for parsing the SWIFT message what would be the best approach?
&lt;BR /&gt;I think under "Repository" we can have an additional component called "File SWIFT" which would do the above job.
&lt;BR /&gt;Could you please help me in creating a new component "File SWIFT".
&lt;BR /&gt;Any guidance regarding this is highly appreciated.
&lt;BR /&gt;
&lt;BR /&gt;SWIFT - Society for Worldwide Interbank Financial Telecommunication
&lt;BR /&gt;Thank you
&lt;BR /&gt;Achyuth</description>
      <pubDate>Sat, 16 Nov 2024 12:46:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362183#M126366</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] How to create a new Metadata Component for SWIFT?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362184#M126367</link>
      <description>Hi
&lt;BR /&gt;I know you have parsed the SWIFT file by creating custom routine. Would you like to share the routine or component on Talend exchange?
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Sun, 31 Jul 2011 08:21:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362184#M126367</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-07-31T08:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] How to create a new Metadata Component for SWIFT?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362185#M126368</link>
      <description>Hi Shong, 
&lt;BR /&gt;Sure with pleasure. 
&lt;BR /&gt;This is what i tried. This might look a bit confusing, but it is really not. Please reply to the post if you face any difficulty. 
&lt;BR /&gt;STEPS 
&lt;BR /&gt;1) Get the API for swift message parsing (WIFE) 
&lt;BR /&gt;Download the required APIs for parsing SWIFT message 
&lt;A href="http://www.prowidesoftware.com/en/download.html" rel="nofollow noopener noreferrer"&gt;http://www.prowidesoftware.com/en/download.html&lt;/A&gt; 
&lt;BR /&gt;2) Configure External Routine in Talend using WIFE API 
&lt;BR /&gt;2.1) Create the Routine 
&lt;BR /&gt;2.2) Attach the WIFE API Library files to the Routine (Refer image-1) 
&lt;BR /&gt;2.3) Write the custom routine code by calling the API methods as per the requirement (Sample code below) 
&lt;BR /&gt;Sample custom routine code 
&lt;BR /&gt;----------------------------------------------------------------------------------------------------------- 
&lt;BR /&gt; public static Map&amp;lt;String, Object&amp;gt; fieldParser(String fin){ 
&lt;BR /&gt; Map&amp;lt;String, Object&amp;gt; fieldMappings = new HashMap&amp;lt;String, Object&amp;gt;(); 
&lt;BR /&gt; try { 
&lt;BR /&gt; SwiftMessage m = (new ConversionService()).getMessageFromFIN(fin); 
&lt;BR /&gt; Field32A f = new Field32A(m.getBlock4().getTagValue("32A")); 
&lt;BR /&gt; fieldMappings.put("Field32A", f.getComponent1()); 
&lt;BR /&gt; fieldMappings.put("BlockCount", m.getBlockCount()); 
&lt;BR /&gt; 
&lt;BR /&gt; } catch (Exception e) { 
&lt;BR /&gt; e.printStackTrace(); 
&lt;BR /&gt; } 
&lt;BR /&gt; return fieldMappings; 
&lt;BR /&gt; } 
&lt;BR /&gt;----------------------------------------------------------------------------------------------------------- 
&lt;BR /&gt;3) Create job (Refer Image-2) 
&lt;BR /&gt;3.1) Parse the SWIFT message file 
&lt;BR /&gt;3.2) Call the java routine code for parsing the messages 
&lt;BR /&gt;3.3) Perform the required mappings 
&lt;BR /&gt;3.4) Save the parsed attribute values to Database/File 
&lt;BR /&gt; 
&lt;BR /&gt;Sample SWIFT Message 
&lt;BR /&gt;----------------------------------------------------------------------------------------------------------- 
&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;-}"; 
&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------</description>
      <pubDate>Tue, 02 Aug 2011 07:33:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362185#M126368</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-02T07:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] How to create a new Metadata Component for SWIFT?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362186#M126369</link>
      <description>Hi 
&lt;BR /&gt;Very cool! Thanks for your sharing!
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Tue, 02 Aug 2011 08:10:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362186#M126369</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-02T08:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] How to create a new Metadata Component for SWIFT?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362187#M126370</link>
      <description>Hi Achyuth, 
&lt;BR /&gt;this is really cool, i have been trying to do the same thing when i came across your post, but i still cant get it to work; please can you send me some more detail (cant see the pictures on the site) or even an export file would be most appreciated. 
&lt;BR /&gt;regards AvO</description>
      <pubDate>Sat, 21 Mar 2015 15:41:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362187#M126370</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2015-03-21T15:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] How to create a new Metadata Component for SWIFT?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362188#M126371</link>
      <description>Hi 
&lt;B&gt;AchyuthB,&lt;/B&gt;
&lt;BR /&gt;Could you please share images in your post. I also seem not to get it work.
&lt;BR /&gt;regards
&lt;BR /&gt;xsiyez</description>
      <pubDate>Wed, 29 Apr 2015 11:31:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362188#M126371</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-29T11:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] How to create a new Metadata Component for SWIFT?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362189#M126372</link>
      <description>Hi there&lt;BR /&gt;does anyone implemented this solution? I can't find those images ...&lt;BR /&gt;thanks</description>
      <pubDate>Mon, 22 Jun 2015 16:14:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362189#M126372</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-22T16:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] How to create a new Metadata Component for SWIFT?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362190#M126373</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If Anyone implemented this please guide .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ganesh Taware&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Oct 2019 07:27:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362190#M126373</guid>
      <dc:creator>gtaware</dc:creator>
      <dc:date>2019-10-19T07:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] How to create a new Metadata Component for SWIFT?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362191#M126374</link>
      <description>&lt;P&gt;Hi All ,&lt;/P&gt;&lt;P&gt;We have similar requirement in which we have to read MT940 files and pass it to oracle database . Can you please help me on that ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ganesh Taware&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Oct 2019 07:29:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362191#M126374</guid>
      <dc:creator>gtaware</dc:creator>
      <dc:date>2019-10-19T07:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] How to create a new Metadata Component for SWIFT?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362192#M126375</link>
      <description>&lt;P&gt;if anyone implement a transformation of a swift file?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 09:54:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-How-to-create-a-new-Metadata-Component-for-SWIFT/m-p/2362192#M126375</guid>
      <dc:creator>KhalilAmk</dc:creator>
      <dc:date>2021-12-09T09:54:39Z</dc:date>
    </item>
  </channel>
</rss>

