<?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: BAPI_BANK_CREATE Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bank-create-problem/m-p/2715584#M629758</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijayanand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Country-specific check digit procedures are carried out if the field 'Bank data' (in 'Additional checks' in table T005) is marked.The function module checks, whether the bank key or the bank number contain valid characters and whether they contain the necessary check digit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tru debugging the FM FI_CHECK_BANK_NUMBER_US.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Amandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Aug 2007 18:06:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-16T18:06:57Z</dc:date>
    <item>
      <title>BAPI_BANK_CREATE Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bank-create-problem/m-p/2715581#M629755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am testing BAPI_BANK_CREATE function module.&lt;/P&gt;&lt;P&gt;I am getting an error called "No check digit procedure is planned for bank numbers with &amp;lt;n&amp;gt; digits", only for bank country key(BANKS)  = 'US'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone figure out the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijayanand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 16:26:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bank-create-problem/m-p/2715581#M629755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T16:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_BANK_CREATE Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bank-create-problem/m-p/2715582#M629756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Error appears in this FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FI_CHECK_BANK_NUMBER_US&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It checks the length of the BANK key and if its not equal to 9. Message class is AR and message number is 206&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is the code which checks it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;------ Einzelfelder --------------------------------------------------&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  DATA:  FAKTOR         TYPE I,&lt;/P&gt;&lt;P&gt;         REFE1          TYPE I,        " Rechenfeld&lt;/P&gt;&lt;P&gt;         REFE2          TYPE I,        " Rechenfeld&lt;/P&gt;&lt;P&gt;         SAVE_BANKN     LIKE KNBK_BF-BANKL,         " Save-Feld BLZ&lt;/P&gt;&lt;P&gt;         STRLN          TYPE I,        " Stringlänge&lt;/P&gt;&lt;P&gt;         WEIGHT(8)      TYPE C VALUE '37137137'.&lt;/P&gt;&lt;P&gt;  " Gewicht. der Stellen 1 bis 8 der BLZ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CHECK I_BANK_NUMBER NE SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;------ Formalia ------------------------------------------------------&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  SAVE_BANKN = I_BANK_NUMBER.&lt;/P&gt;&lt;P&gt;  STRLN = STRLEN( SAVE_BANKN ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SAVE_BANKN(9) CN ' 1234567890'.&lt;/P&gt;&lt;P&gt;    MESSAGE E125 RAISING NOT_VALID.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  IF STRLN NE 9.
    MESSAGE W206 WITH STRLN.
    EXIT.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;------ Prüfziffer ermitteln ------------------------------------------&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  REFE1 = 0.&lt;/P&gt;&lt;P&gt;  REFE2 = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DO 8 TIMES.&lt;/P&gt;&lt;P&gt;    FAKTOR = WEIGHT(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 16:31:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bank-create-problem/m-p/2715582#M629756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T16:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_BANK_CREATE Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bank-create-problem/m-p/2715583#M629757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amandeep,&lt;/P&gt;&lt;P&gt;I agree with you, if your BANKS length is not equal to 9, then you get the error message number 206, When it is 9, then I am getting error message saying "Invalid Bank key".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem, is how to figure out the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijayanand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 17:57:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bank-create-problem/m-p/2715583#M629757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T17:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_BANK_CREATE Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bank-create-problem/m-p/2715584#M629758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijayanand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Country-specific check digit procedures are carried out if the field 'Bank data' (in 'Additional checks' in table T005) is marked.The function module checks, whether the bank key or the bank number contain valid characters and whether they contain the necessary check digit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tru debugging the FM FI_CHECK_BANK_NUMBER_US.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Amandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 18:06:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bank-create-problem/m-p/2715584#M629758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T18:06:57Z</dc:date>
    </item>
  </channel>
</rss>

