<?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: Post Code formatting for BAPI_BUPA_CREATE_FROM_DATA in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/post-code-formatting-for-bapi-bupa-create-from-data/m-p/4922965#M1148701</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello baljit ..You will get the postal code lenghts for vairous countires in config table T005.&lt;/P&gt;&lt;P&gt;Hope this helps .&lt;/P&gt;&lt;P&gt;Sampada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Dec 2008 06:25:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-10T06:25:32Z</dc:date>
    <item>
      <title>Post Code formatting for BAPI_BUPA_CREATE_FROM_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/post-code-formatting-for-bapi-bupa-create-from-data/m-p/4922961#M1148697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends, &lt;/P&gt;&lt;P&gt;I have made a program which uses the bapi BAPI_BUPA_CREATE_FROM_DATA to create a business partner. The program reads data from a file and creates a BP from this data. My problem is that the post code isn't always in the correct format, (when creating a BP through the Bapi, the bapi returns an error on the length of the post code) and the only way to format it, is in the program. i.e a norwegian post code 0435 might look like this 00435. And for other countries theres different lengths.. does anybody know where I can get the required length of the post code, so I can make this completely dynamic?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards Ballo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 05:53:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/post-code-formatting-for-bapi-bupa-create-from-data/m-p/4922961#M1148697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-10T05:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: Post Code formatting for BAPI_BUPA_CREATE_FROM_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/post-code-formatting-for-bapi-bupa-create-from-data/m-p/4922962#M1148698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data:tp type BAPIBUS1006_ADDRESS.&lt;/P&gt;&lt;P&gt;loop at gt_record into gs_record.&lt;/P&gt;&lt;P&gt;move gs_record-CITY1 to tp-CITY.&lt;/P&gt;&lt;P&gt;move gs_record-POST_CODE1 to tp-POSTL_COD1.&lt;/P&gt;&lt;P&gt;move gs_record-STREET to tp-STREET.&lt;/P&gt;&lt;P&gt;move gs_record-house_num1 to tp-HOUSE_NO.&lt;/P&gt;&lt;P&gt;move gs_record-COUNTRY to tp-COUNTRY.&lt;/P&gt;&lt;P&gt;move gs_record-REGION to tp-REGION.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_BUPA_CREATE_FROM_DATA'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;PARTNERCATEGORY = GC_TYPE_ORGAN&lt;/P&gt;&lt;P&gt;CENTRALDATA = v_test&lt;/P&gt;&lt;P&gt;ADDRESSDATA = tp&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;BUSINESSPARTNER = V_parnum.&lt;/P&gt;&lt;P&gt;Commit work.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 06:03:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/post-code-formatting-for-bapi-bupa-create-from-data/m-p/4922962#M1148698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-10T06:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Post Code formatting for BAPI_BUPA_CREATE_FROM_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/post-code-formatting-for-bapi-bupa-create-from-data/m-p/4922963#M1148699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I get the BAPI to work, thats not the problem, the problem is the data I send in. the file I read from gets data from an old system which has additional fields in the post code, which creates problems. I have to format the post code to the correct format before sending it through the bapi. Any idea how to check the correct format for each country?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 06:09:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/post-code-formatting-for-bapi-bupa-create-from-data/m-p/4922963#M1148699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-10T06:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Post Code formatting for BAPI_BUPA_CREATE_FROM_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/post-code-formatting-for-bapi-bupa-create-from-data/m-p/4922964#M1148700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can pass postcode  to this format  &lt;STRONG&gt;wa_addressdata-postl_cod1 = '82822'.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Addressdata&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;wa_addressdata-standardaddress = 'x'.&lt;/P&gt;&lt;P&gt;wa_addressdata-city = 'munich'.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;wa_addressdata-postl_cod1 = '82822'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;wa_addressdata-countryiso = 'DE'.&lt;/P&gt;&lt;P&gt;wa_addressdata-street = 'exStreet'.&lt;/P&gt;&lt;P&gt;wa_addressdata-house_no = '123'. &lt;/P&gt;&lt;P&gt;wa_addressdata-langu = 'DE'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 06:16:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/post-code-formatting-for-bapi-bupa-create-from-data/m-p/4922964#M1148700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-10T06:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: Post Code formatting for BAPI_BUPA_CREATE_FROM_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/post-code-formatting-for-bapi-bupa-create-from-data/m-p/4922965#M1148701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello baljit ..You will get the postal code lenghts for vairous countires in config table T005.&lt;/P&gt;&lt;P&gt;Hope this helps .&lt;/P&gt;&lt;P&gt;Sampada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 06:25:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/post-code-formatting-for-bapi-bupa-create-from-data/m-p/4922965#M1148701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-10T06:25:32Z</dc:date>
    </item>
  </channel>
</rss>

