<?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: transactionID does not appear in Analytics when set in XDM using WebSDK in Adobe Experience Platform Launch Questions</title>
    <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/transactionid-does-not-appear-in-analytics-when-set-in-xdm-using/m-p/431081#M3613</link>
    <description>&lt;P&gt;&lt;LI-USER uid="6046135"&gt;&lt;/LI-USER&gt;I hereby nominate you a genius! &lt;img class="lia-deferred-image lia-image-emoji" src="https://experienceleaguecommunities.adobe.com/html/@31B4D6D7B3510763F3CBB2AAB7997408/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&amp;nbsp;&amp;nbsp; For some reason I completely missed that transactionID was not one of the auto-mapped variables...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And sure enough when I started poking around in Processing Rules just now, I spot this item in the list:&amp;nbsp; a.x.commerce.order.payments.0.transactionid(Context Data)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So... I'm going to map this to TransactionID and see what happens. But I have a feeling that this is it. Either way, thank you for your help. I'm pretty certain this will be the answer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Nov 2021 23:10:08 GMT</pubDate>
    <dc:creator>jgrubbs</dc:creator>
    <dc:date>2021-11-11T23:10:08Z</dc:date>
    <item>
      <title>transactionID does not appear in Analytics when set in XDM using WebSDK</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/transactionid-does-not-appear-in-analytics-when-set-in-xdm-using/m-p/430899#M3607</link>
      <description>&lt;P&gt;Hi gang,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm working through the final details in our transition to the WebSDK for data collection and I have encountered a snag... It seems that when transactionID is specified in the XDM JSON, that value never seems to get forwarded to Analytics. I know this because 1) Our TransactionID processing offline doesn't work, and 2) For debugging, I copy the inbound transactionID into an eVar, and that shows that nothing is coming through.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bear in mind that in our non-WebSDK implementation, transactionID is set in the AppMeasurement instance and can be seen in the "xact" query string parameter. It shows up in Analytics just fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the XDM, I'm setting it in the commerce.order.payments[] array, roughly as:&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; commerce: {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; order: {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; payments: [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; transactionID: 'something',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/P&gt;&lt;P&gt;&amp;nbsp; },&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems that no matter what combination of other properties I include in the commerce or commerce.order object make any kind of difference. I can track purchases, so I know that at least something from commerce is getting forwarded to Analytics. productListItems seems to work as well, as I can see Product Names in Workspace.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone encountered this? Is there some undocumented combination of required properties that must be set in order for transactionID to be seen in Analytics?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Nov 2021 01:21:54 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/transactionid-does-not-appear-in-analytics-when-set-in-xdm-using/m-p/430899#M3607</guid>
      <dc:creator>jgrubbs</dc:creator>
      <dc:date>2021-11-11T01:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: transactionID does not appear in Analytics when set in XDM using WebSDK</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/transactionid-does-not-appear-in-analytics-when-set-in-xdm-using/m-p/431041#M3609</link>
      <description>&lt;P&gt;Shouldn't it be set at&amp;nbsp;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; commerce: {&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; order: {&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; purchaseID: "..." // here&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or if that doesn't work, then it could be that there is no automatic mapping from Web SDK to AA for transactionID. If&amp;nbsp;&lt;EM&gt;that&lt;/EM&gt; is the case, then you might need to set your own field in the XDM object, and then use AA's Processing Rules to map that field to Transaction ID.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Nov 2021 15:56:15 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/transactionid-does-not-appear-in-analytics-when-set-in-xdm-using/m-p/431041#M3609</guid>
      <dc:creator>yuhuisg</dc:creator>
      <dc:date>2021-11-11T15:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: transactionID does not appear in Analytics when set in XDM using WebSDK</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/transactionid-does-not-appear-in-analytics-when-set-in-xdm-using/m-p/431047#M3610</link>
      <description>&lt;P&gt;That is perhaps correct for purchaseID, but not transactionID. purchaseID and transactionID are not the same&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Nov 2021 16:13:37 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/transactionid-does-not-appear-in-analytics-when-set-in-xdm-using/m-p/431047#M3610</guid>
      <dc:creator>jgrubbs</dc:creator>
      <dc:date>2021-11-11T16:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: transactionID does not appear in Analytics when set in XDM using WebSDK</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/transactionid-does-not-appear-in-analytics-when-set-in-xdm-using/m-p/431078#M3612</link>
      <description>&lt;P&gt;&lt;LI-USER uid="15196799"&gt;&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I don't see transactionID on the list of automatically mapped variables. Have you tried mapping your xdm property to transactionID in your processing rule for XDM data?&lt;/P&gt;&lt;P&gt;&lt;A href="https://experienceleague.adobe.com/docs/experience-platform/edge/data-collection/adobe-analytics/automatically-mapped-vars.html" target="_blank"&gt;https://experienceleague.adobe.com/docs/experience-platform/edge/data-collection/adobe-analytics/automatically-mapped-vars.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Nov 2021 22:18:14 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/transactionid-does-not-appear-in-analytics-when-set-in-xdm-using/m-p/431078#M3612</guid>
      <dc:creator>dwright</dc:creator>
      <dc:date>2021-11-11T22:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: transactionID does not appear in Analytics when set in XDM using WebSDK</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/transactionid-does-not-appear-in-analytics-when-set-in-xdm-using/m-p/431081#M3613</link>
      <description>&lt;P&gt;&lt;LI-USER uid="6046135"&gt;&lt;/LI-USER&gt;I hereby nominate you a genius! &lt;img class="lia-deferred-image lia-image-emoji" src="https://experienceleaguecommunities.adobe.com/html/@31B4D6D7B3510763F3CBB2AAB7997408/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&amp;nbsp;&amp;nbsp; For some reason I completely missed that transactionID was not one of the auto-mapped variables...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And sure enough when I started poking around in Processing Rules just now, I spot this item in the list:&amp;nbsp; a.x.commerce.order.payments.0.transactionid(Context Data)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So... I'm going to map this to TransactionID and see what happens. But I have a feeling that this is it. Either way, thank you for your help. I'm pretty certain this will be the answer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Nov 2021 23:10:08 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/transactionid-does-not-appear-in-analytics-when-set-in-xdm-using/m-p/431081#M3613</guid>
      <dc:creator>jgrubbs</dc:creator>
      <dc:date>2021-11-11T23:10:08Z</dc:date>
    </item>
  </channel>
</rss>

