<?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>Question Re: 【sap public cloud】BUSINESS_PARTNER POST ERROR in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/sap-public-cloud-business-partner-post-error/qaa-p/14151500#M4919887</link>
    <description>&lt;P&gt;Hello , We helped you to accept the answer, since there were no updates . You can unaccept it anytime if you have further questions. Best Regards, Jahnavi&lt;/P&gt;</description>
    <pubDate>Mon, 14 Jul 2025 07:49:26 GMT</pubDate>
    <dc:creator>saddala_jahnavi</dc:creator>
    <dc:date>2025-07-14T07:49:26Z</dc:date>
    <item>
      <title>【sap public cloud】BUSINESS_PARTNER POST ERROR</title>
      <link>https://community.sap.com/t5/technology-q-a/sap-public-cloud-business-partner-post-error/qaq-p/14146659</link>
      <description>&lt;P&gt;Nice to meet you.&lt;/P&gt;&lt;P&gt;I am trying to add supplier master data to "BusinessPartner" in "SAP S/4HANA Public Cloud" using tRestClient in "Talend8 Cloud".&lt;/P&gt;&lt;P&gt;The JSON format data to be passed to tRestClient can be registered successfully in POSTMAN, but the following error occurs in Talend. It would be appreciated if you could tell me what the cause is.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Error while parsing an XML stream: 'BOM / charset detection failed'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝&lt;/P&gt;&lt;P&gt;はじめまして&lt;/P&gt;&lt;P&gt;「Talend8 cloud」で「sap s/4hana public cloud」の「&lt;SPAN&gt;API_BUSINESS_PARTNER」&lt;/SPAN&gt;&lt;SPAN&gt;へtRestclientを使い、サプライヤマスタの追加を試しています。&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;tRestclientへ渡す&lt;/SPAN&gt;JSON形式のデータは、POSTMANでは正常に登録可能なのですが、Talendだと以下のエラーが発生しております。何が原因かご教示頂けると助かります。&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Error while parsing an XML stream: 'BOM / charset detection failed'.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 04:52:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sap-public-cloud-business-partner-post-error/qaq-p/14146659</guid>
      <dc:creator>masayoshi_tanaka</dc:creator>
      <dc:date>2025-07-08T04:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: 【sap public cloud】BUSINESS_PARTNER POST ERROR</title>
      <link>https://community.sap.com/t5/technology-q-a/sap-public-cloud-business-partner-post-error/qaa-p/14147894#M4919427</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Thank you very much for your question.&lt;/P&gt;&lt;P&gt;Can you please check whether the following information solves your error?&lt;/P&gt;&lt;H3&gt;Possible Causes and Solutions for the Error&lt;/H3&gt;&lt;P&gt;The error message ‘Error while parsing an XML stream: BOM / charset detection failed’ suggests that there might be an issue with the character encoding or the presence of a Byte Order Mark (BOM) in the data being sent from Talend to the SAP S/4HANA Cloud API.&lt;/P&gt;&lt;H4&gt;Causes:&lt;/H4&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Character Encoding:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The data might be encoded in a format that is not expected by the API, such as UTF-16 instead of UTF-8.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Byte Order Mark (BOM):&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;A BOM might be present at the beginning of the JSON data, which can cause issues during parsing.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;H4&gt;Solutions:&lt;/H4&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Check Encoding Settings:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Ensure that the JSON data is encoded in UTF-8, which is typically expected by APIs.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Remove BOM:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If a BOM is present, remove it from the JSON data before sending it to the API.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Validate JSON Format:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Double-check the JSON format to ensure it is correctly structured and matches the expected payload format for the API.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Use Postman as a Reference:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Since the data works in Postman, compare the headers and body format used in Postman with those in Talend to identify any discrepancies.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;H3&gt;Additional Tips&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Debugging:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Use logging or debugging tools in Talend to inspect the exact payload being sent and ensure it matches the successful request made in Postman.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Consult Documentation:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Refer to the SAP API documentation for any specific requirements regarding data format and encoding.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;By addressing these potential issues, you should be able to resolve the error and successfully add supplier master data using Talend.&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Henrike&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 05:57:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sap-public-cloud-business-partner-post-error/qaa-p/14147894#M4919427</guid>
      <dc:creator>HenrikeGrtecke</dc:creator>
      <dc:date>2025-07-09T05:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: 【sap public cloud】BUSINESS_PARTNER POST ERROR</title>
      <link>https://community.sap.com/t5/technology-q-a/sap-public-cloud-business-partner-post-error/qaa-p/14148981#M4919552</link>
      <description>Thank you for answering my question. I'll try using the hints you gave me.</description>
      <pubDate>Thu, 10 Jul 2025 05:13:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sap-public-cloud-business-partner-post-error/qaa-p/14148981#M4919552</guid>
      <dc:creator>masayoshi_tanaka</dc:creator>
      <dc:date>2025-07-10T05:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: 【sap public cloud】BUSINESS_PARTNER POST ERROR</title>
      <link>https://community.sap.com/t5/technology-q-a/sap-public-cloud-business-partner-post-error/qaa-p/14151500#M4919887</link>
      <description>&lt;P&gt;Hello , We helped you to accept the answer, since there were no updates . You can unaccept it anytime if you have further questions. Best Regards, Jahnavi&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2025 07:49:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sap-public-cloud-business-partner-post-error/qaa-p/14151500#M4919887</guid>
      <dc:creator>saddala_jahnavi</dc:creator>
      <dc:date>2025-07-14T07:49:26Z</dc:date>
    </item>
  </channel>
</rss>

