<?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 FM/BAPI to Generate IBAN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776848#M1585019</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one suggest any FM/BAPI to generate IBAN using Bank Country(BANKS), Bank Key (BANKL) &amp;amp; Bank Account (BANKN)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We tried using IBAN_CREATE, BAPI_IBAN_CREATE which failed to resolve our query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suggest if the above FMs work by passing proper parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Mar 2011 11:25:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-11T11:25:36Z</dc:date>
    <item>
      <title>FM/BAPI to Generate IBAN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776848#M1585019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one suggest any FM/BAPI to generate IBAN using Bank Country(BANKS), Bank Key (BANKL) &amp;amp; Bank Account (BANKN)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We tried using IBAN_CREATE, BAPI_IBAN_CREATE which failed to resolve our query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suggest if the above FMs work by passing proper parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Mar 2011 11:25:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776848#M1585019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-11T11:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: FM/BAPI to Generate IBAN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776849#M1585020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at FM CONVERT_BANK_ACCOUNT_2_IBAN (look for parameters in report RFIBAN00)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some remarks :&lt;/P&gt;&lt;P&gt;- Remember this is only a default value, some countries and some banks can not be generated automatically.&lt;/P&gt;&lt;P&gt;(Look at [International Bank Account Number (IBAN)|http://www.ecbs.org/iban.htm] and [ Note 1012293 - IBAN and maintenance of bank master data|https://service.sap.com/sap/support/notes/1447761])&lt;/P&gt;&lt;P&gt;- You may need to check Customizing of Country and have a recent level of SP.&lt;/P&gt;&lt;P&gt;(Start with [Note 503396 - IBAN mass generation|https://service.sap.com/sap/support/notes/503396])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Mar 2011 11:54:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776849#M1585020</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2011-03-11T11:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: FM/BAPI to Generate IBAN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776850#M1585021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can look at function module CHECK_IBAN and then write a function module yourself with reverse engineering.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did that myself for french bank account numbers and it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
METHOD get_iban.

  DATA:
        lv_str1(60) TYPE c,
        lv_str2(60) TYPE c,
        lv_ref1     TYPE p LENGTH 16,
        ls_converse TYPE ty_converse.

  CALL METHOD zcl_scramble=&amp;gt;fill_convers_table.

  CONCATENATE i_bankl i_bankn i_bkont i_banks
    INTO lv_str1.

  WHILE lv_str1(1) NE space.
    IF lv_str1(1) CO sy-abcde.
      READ TABLE gt_converse WITH KEY letter = lv_str1(1)
        INTO ls_converse.
      CONCATENATE: lv_str2 ls_converse-number INTO lv_str2.
    ELSE.
      CONCATENATE: lv_str2 lv_str1(1) INTO lv_str2.
    ENDIF.
    SHIFT lv_str1.
  ENDWHILE.

  lv_ref1 = lv_str2 * 100 - 1.
  lv_ref1 = lv_ref1 MOD 97.
  lv_ref1 = 97 - lv_ref1.
  lv_str1 = lv_ref1.
  CONDENSE lv_str1.

  CONCATENATE i_banks lv_str1 i_bankl i_bankn i_bkont
    INTO e_iban.

ENDMETHOD.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bruno&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2012 17:10:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776850#M1585021</guid>
      <dc:creator>bruno_esperanca</dc:creator>
      <dc:date>2012-02-09T17:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: FM/BAPI to Generate IBAN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776851#M1585022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've tried the above code for different countries and it has worked for all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bruno&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Feb 15, 2012 11:42 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2012 16:32:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776851#M1585022</guid>
      <dc:creator>bruno_esperanca</dc:creator>
      <dc:date>2012-02-15T16:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: FM/BAPI to Generate IBAN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776852#M1585023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BAPI &lt;STRONG&gt;BAPI_IBAN_CREATE&lt;/STRONG&gt; is the correct one for creating IBAN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the Business Object BUS1013, it also used the same BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the parameters that needs to be passed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2012 15:39:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776852#M1585023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-17T15:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: FM/BAPI to Generate IBAN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776853#M1585024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Correct Answer: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;CONVERT_IBAN_2_BANK_ACCOUNT&amp;nbsp; function module - IBAN to Bank Account&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;CONVERT_BANK_ACCOUNT_2_IBAN_NL - Bank to IBAN&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Feb 2014 19:03:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-bapi-to-generate-iban/m-p/7776853#M1585024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-02-25T19:03:13Z</dc:date>
    </item>
  </channel>
</rss>

