<?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: how to start the compose manually? in CRM and CX Q&amp;A</title>
    <link>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009383#M373400</link>
    <description>&lt;P&gt;See the attached logs. I didn't find any error in the logs. The post working fine but when I try get it is not returning any data. You can see the screen shot of GET..&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1720061-10546-get-request.png" /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 13 Mar 2018 17:51:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2018-03-13T17:51:23Z</dc:date>
    <item>
      <title>how to start the compose manually?</title>
      <link>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaq-p/12009377</link>
      <description>&lt;P&gt;Could any one help how to start the compose and publish manually?&lt;/P&gt;
&lt;P&gt;My items are in "PENDING" status in rawitem. I want to start manually compose and then publish.
I tried the below and it is showing .&lt;/P&gt;
&lt;P&gt;Here is the url that I am trying..
http:/localhost:8080/datahub-webapp/v1/pools/SAPCONSUMER_INBOUND_POOL/compositions/&lt;/P&gt;
&lt;P&gt;Thanks in advance.
&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2024 04:47:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaq-p/12009377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2024-02-04T04:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to start the compose manually?</title>
      <link>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009378#M373395</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You should send POST request to &lt;CODE&gt;http:/localhost:8080/datahub-webapp/v1/pools/SAPCONSUMER_INBOUND_POOL/compositions&lt;/CODE&gt;. In the log file you should find information if the composition started or not (or send GET request to &lt;CODE&gt;http:/localhost:8080/datahub-webapp/v1/pools/SAPCONSUMER_INBOUND_POOL/compositions&lt;/CODE&gt; to see the list of compositions)
&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 07:04:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009378#M373395</guid>
      <dc:creator>cieslo</dc:creator>
      <dc:date>2018-03-08T07:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to start the compose manually?</title>
      <link>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009379#M373396</link>
      <description>&lt;P&gt;Hi Sasi,&lt;/P&gt;
&lt;P&gt;This is covered in &lt;A href="https://wiki.hybris.com/display/release5/Testing+Composition+in+the+Data+Hub"&gt;Testing Composition in the Data Hub&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Please review the &lt;A href="https://help.hybris.com/6.6.0/api/datahub/DataHubAPI.html#"&gt;Data Hub REST API&lt;/A&gt;, the &lt;CODE&gt;/pools/{poolName}/compositions&lt;/CODE&gt; endpoint supports GET and POST.&lt;/P&gt;
 &lt;OL&gt;
  &lt;LI&gt;&lt;P&gt; Send a GET Request to the endpoint, as we need the Response Body.
&lt;/P&gt;

  &lt;/LI&gt;
  &lt;LI&gt;&lt;P&gt; In the Response Body change the &lt;CODE&gt;status&lt;/CODE&gt; key's value to &lt;CODE&gt;IN_PROGRESS&lt;/CODE&gt;, and Copy the &lt;CODE&gt;actionId&lt;/CODE&gt; element.
&lt;/P&gt;

  &lt;/LI&gt;
  &lt;LI&gt;&lt;P&gt; Send a POST request to the endpoint with the Request Body containing the &lt;CODE&gt;status&lt;/CODE&gt; value &lt;CODE&gt;IN_PROGRESS&lt;/CODE&gt; and the &lt;CODE&gt;actionId&lt;/CODE&gt;.&lt;/P&gt;

  &lt;/LI&gt;

 &lt;/OL&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt; POST:
 &lt;A href="http://localhost:8080/datahub-webapp/v1/pools/GLOBAL/compositions" target="test_blank"&gt;http://localhost:8080/datahub-webapp/v1/pools/GLOBAL/compositions&lt;/A&gt;

 Request Body:
 &amp;lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&amp;gt;
 &amp;lt;compositionActionData&amp;gt;
   &amp;lt;actionId&amp;gt;1&amp;lt;/actionId&amp;gt;
   &amp;lt;status&amp;gt;IN_PROGRESS&amp;lt;/status&amp;gt;
 &amp;lt;/compositionActionData&amp;gt;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Luke&lt;/P&gt;</description>
      <pubDate>Thu, 08 Mar 2018 17:22:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009379#M373396</guid>
      <dc:creator>former_member387866</dc:creator>
      <dc:date>2018-03-08T17:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to start the compose manually?</title>
      <link>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009380#M373397</link>
      <description>&lt;P&gt;Thanks for your response Luke.&lt;/P&gt;
&lt;P&gt;My items are not yet in the composition action. The items are in "PENDING" status in rawitem table. I am not getting any response body when I try to send the GET request (see the attachment).
&lt;A href="http://localhost:8080/datahub-webapp/v1/pools/SAPCONSUMER_OUTBOUND_POOL/compositions"&gt;http://localhost:8080/datahub-webapp/v1/pools/SAPCONSUMER_OUTBOUND_POOL/compositions&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://localhost:8080/datahub-webapp/v1/raw-items/1"&gt;http://localhost:8080/datahub-webapp/v1/raw-items/1&lt;/A&gt;  -&amp;gt; This url returning raw item that is in PENDING status in SAPCONSUMER_OUTBOUND_POOL .
&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/10514-composition.png" /&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1719714-10515-composition.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 04:14:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009380#M373397</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-03-09T04:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: how to start the compose manually?</title>
      <link>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009381#M373398</link>
      <description>&lt;P&gt;Hi Marcin,&lt;/P&gt;
&lt;P&gt;Thanks for your response. My post request working but when I try send GET request not getting any information.. see the screen shot what I am getting with GET request.
What am I missing here?&lt;/P&gt;
&lt;P&gt;Thanks in advance.
&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 15:55:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009381#M373398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-03-09T15:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to start the compose manually?</title>
      <link>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009382#M373399</link>
      <description>&lt;P&gt;Without log files it's hard to say what is going on.
&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 06:35:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009382#M373399</guid>
      <dc:creator>cieslo</dc:creator>
      <dc:date>2018-03-12T06:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to start the compose manually?</title>
      <link>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009383#M373400</link>
      <description>&lt;P&gt;See the attached logs. I didn't find any error in the logs. The post working fine but when I try get it is not returning any data. You can see the screen shot of GET..&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1720061-10546-get-request.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Mar 2018 17:51:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009383#M373400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-03-13T17:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to start the compose manually?</title>
      <link>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009384#M373401</link>
      <description>&lt;P&gt;Hi Narapu ,
As above mentioned pool name is : SAPCONSUMER_OUTBOUND_POOL&lt;/P&gt;
&lt;P&gt;Have u tried to get the data for raw item for feed.:SAPCONSUMER_OUTBOUND_FEED&lt;/P&gt;
&lt;P&gt;curl -k -u admin:nimda --request GET &lt;A href="http://localhost:8080/datahub-webapp/v1/data-feeds/SAPCONSUMER_OUTBOUND_FEED/items/{rawproductName"&gt;http://localhost:8080/datahub-webapp/v1/data-feeds/SAPCONSUMER_OUTBOUND_FEED/items/{rawproductName&lt;/A&gt;}&lt;/P&gt;
&lt;P&gt;As  per feed details ,this feed is getting used for SAP Consumer replication from hybris core to SAP ERP.&lt;/P&gt;
&lt;P&gt;9304
SAPCONSUMER_OUTBOUND_FEED&lt;/P&gt;
&lt;P&gt;Feed for SAP Consumer replication from hybris core to SAP ERP&lt;/P&gt;
&lt;P&gt;Do you have proper configuration  from hybris core to SAP ERP ?.
I assume then only it is going to give proper response .
&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2018 11:27:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/crm-and-cx-q-a/how-to-start-the-compose-manually/qaa-p/12009384#M373401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-04-12T11:27:02Z</dc:date>
    </item>
  </channel>
</rss>

