<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>how to pass a cdt through an interface</title><link>https://community.appian.com/discussions/f/general/19455/how-to-pass-a-cdt-through-an-interface</link><description>Happy Friday Appian Community , 
 
 
 I cannot figure out how to pass data though an interface a second time. 
 
 I have tried to copy how it was done in the first write to data store. 
 
 maybe I am trying to save it in to many different places? 
 
</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76117?ContentTypeID=1</link><pubDate>Mon, 24 Aug 2020 17:12:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c3a9ac3c-e5f0-4908-a255-ae81ff34137d</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;Great! &lt;span class="emoticon" data-url="https://community.appian.com/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76116?ContentTypeID=1</link><pubDate>Mon, 24 Aug 2020 16:26:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:03a2cb07-9a19-45a0-a5ce-f6a9d6386a68</guid><dc:creator>kevinr0001</dc:creator><description>&lt;p&gt;it works! thank you guys so much!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;for anyone checking on this later the bug was solved by making sure that there were no duplicate saves.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;here the code that works for anyone that is checking later&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt; buttons: a!buttonLayout(
    primaryButtons: {
      a!buttonWidget(
        label: &amp;quot;Approve&amp;quot;,
        icon: &amp;quot;check&amp;quot;,
        value: true,
        saveInto: {ri!userInformation.supervisorDecision,
        a!save(ri!userInformation.supervisorsDecisionDate,now())
          },
        submit: true,
        style: &amp;quot;PRIMARY&amp;quot;
      )
    },
    secondaryButtons: {
      a!buttonWidget(
        label: &amp;quot;reject&amp;quot;,
        icon: &amp;quot;exclamation-triangle&amp;quot;,
        value: false,
        saveInto: {
          ri!userInformation.supervisorDecision,
          a!save(ri!userInformation.supervisorsDecisionDate,now())
        },
        submit: true,
        style: &amp;quot;DESTRUCTIVE&amp;quot;,
        validate: false
      )
    },
    showWhen: or(
      isnull(
        ri!readOnly
      ),
      not(
        ri!readOnly
      )
    )
  )&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76104?ContentTypeID=1</link><pubDate>Sat, 22 Aug 2020 15:55:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:051efb40-a2a9-43c1-9ea7-6f8daf65b98b</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="2401" url="~/discussions/f/general/19455/how-to-pass-a-cdt-through-an-interface/76103"]Additionally, remove the &amp;quot;a!save(ri!userInformation,ri!userInformation)&amp;quot; in both submit buttons.&amp;nbsp; [/quote]
&lt;p&gt;Shoot, I missed the fact that that was still there - it was the first save previously i think, so wasn&amp;#39;t looking at the end of the save list.&amp;nbsp; luckily i think in this case it wouldn&amp;#39;t be causing anyhing to get lost since the a!save()s are executed in order, so it would just be (redundantly) saving its current value back into itself.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76103?ContentTypeID=1</link><pubDate>Sat, 22 Aug 2020 15:29:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4550b8b0-376b-4b8c-a008-b70cdb921c48</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;As Mike notes, please expand the userInformation variable in the Rule Inputs area to verify data is saving on the form, when you click your buttons in /design.&amp;nbsp; Additionally, remove the &amp;quot;a!save(ri!userInformation,ri!userInformation)&amp;quot; in both submit buttons.&amp;nbsp; Once we can confirm data is saving on the form we can move to monitoring the process instance to review variable updates in Process History.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76101?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 21:44:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f9fd2982-c1f1-44d4-8eee-868787c0e716</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;So in the Rule Inputs section (which you&amp;#39;ve pictured the left half of in your second screenshot), what is the value contained in ri!userInformaton after you click either button?&amp;nbsp; That&amp;#39;s where you should be looking first to make sure the saveIntos are working.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76100?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 20:58:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b4e5550b-3bfb-4066-98c9-30107537e625</guid><dc:creator>kevinr0001</dc:creator><description>&lt;p&gt;so: &lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1598043375151v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;and &lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1598043498792v2.png" alt=" " /&gt;?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;thanks for looking at this with me &amp;nbsp;&lt;span class="emoticon" data-url="https://community.appian.com/cfs-file/__key/system/emoji/1f600.svg" title="Grinning"&gt;&amp;#x1f600;&lt;/span&gt; Have a great&amp;nbsp; weekend! talk to you Monday&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76099?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 20:51:21 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:62283ad7-6d24-42c7-a24e-5796e138bdf1</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;That should be the first place you test/troubleshoot.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76097?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 20:50:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4895ebae-710a-445f-aa59-43bb9be56a4e</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;I&amp;#39;m specifically asking you to confirm the values you see in the rule inputs panel when in the interface designer, though.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76096?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 20:49:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b0a3f2a7-eea3-452d-b8d3-a3cc7137e525</guid><dc:creator>kevinr0001</dc:creator><description>&lt;p&gt;my whole problem is that clicking the submit/ reject does not affect the PV&amp;#39;s . I cannot understand why&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76095?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 20:45:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5b952e1e-2398-47ba-937e-eda266b70b60</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;This all looks basically right unless I&amp;#39;m missing a subtle detail again.&amp;nbsp; When on the form designer, can you confirm that clicking &amp;quot;approve&amp;quot; and &amp;quot;reject&amp;quot; sets the value of ri!userInformation as you&amp;#39;re expecting?&amp;nbsp; What does the value end up being when you view the PVs in the running instance after submitting?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76094?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 20:45:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8009c6ca-d550-475b-aa91-b69c0dc2d21f</guid><dc:creator>kevinr0001</dc:creator><description>&lt;p&gt;I hope my screen shots answered your questions,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;yes I am saving into that pv either if I approved or rejected&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks guys!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;it&amp;nbsp; is late Friday... Have a great weekend &lt;span class="emoticon" data-url="https://community.appian.com/cfs-file/__key/system/emoji/1f609.svg" title="Wink"&gt;&amp;#x1f609;&lt;/span&gt;,&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76093?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 20:38:48 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fa5b8be7-956c-43eb-bca9-31fe5b17df77</guid><dc:creator>kevinr0001</dc:creator><description>&lt;p&gt;here is the output tab&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1598042124063v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1598042171809v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1598042230654v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;here are my a!saves&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1598042386833v5.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76092?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 20:29:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4fcc1979-620d-48fd-84cb-59d60be88c8d</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;Can you confirm what your interface a!save()&amp;#39;s are now, and a screen shot of the node&amp;#39;s Output tab?&lt;/p&gt;
&lt;p&gt;In the first screen shot, the input variable is ri!User_Data, however the a!save()&amp;#39;s are using ri!GFIM_User_Access_User_Information.&lt;/p&gt;
&lt;p&gt;In the second screen shot the variable name has changed to &amp;quot;userInformation&amp;quot;.&lt;/p&gt;
&lt;p&gt;Is this input being saved into within any other interface fields, or only on the Approval button save?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76091?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 20:26:43 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0b16a1c3-aa36-4dca-a3be-ca32ac6c417d</guid><dc:creator>kevinr0001</dc:creator><description>&lt;p&gt;thanks for sticking with me Mike, I am still not seeing any changes to my PV&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76090?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 20:24:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:06c418b4-dd91-4735-a041-fa55d0f11900</guid><dc:creator>kevinr0001</dc:creator><description>&lt;p&gt;thanks I removed it and the other&amp;nbsp; redundant things but it still does not save anything.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;like there is no difference to the variables before and after&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;here is my process now&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1598037915195v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1598038001527v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/11/pastedimage1598037961292v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76088?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 19:42:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d9fe1fc3-c6ac-468a-990e-cda9c55f10a2</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;The first thing you should do is resolve the issue Chris pointed out below.&amp;nbsp; After that, let us know whether you&amp;#39;re still not seeing changes within the PV - i&amp;#39;m guessing this was the primary issue.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76087?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 19:19:00 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c2a9b14f-82f2-40e1-b912-cea2a3033192</guid><dc:creator>kevinr0001</dc:creator><description>&lt;p&gt;I am unable to see any of the variables in the process that I was changing in the form.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Specifically it is an approval form and it does not change the boolean to true. when I hit the submit button&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76083?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 16:50:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7c4c2094-6528-488f-8505-e0a0c8c59fe4</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;Yep!&amp;nbsp; From overwriting my own data on a few occasions, I can confirm the Output expressions fire last and will essentially reset any of the Inputs if there is a conflict.&amp;nbsp; Been there, done that! :)&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76081?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 16:27:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c829faf0-ea46-4ef3-996f-756395f5237d</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;Oh yeah, good catch - I didn&amp;#39;t even notice the interface output node was referencing the PV in saving the PV back into itself.&amp;nbsp; That said I&amp;#39;m not clear (without testing) whether the save-out to the PV from the Input tab would happen before or after the Output save executes... but in any case there&amp;#39;s no need for such confusion since there&amp;#39;s a potential overwrite and/or race condition.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76080?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 16:20:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7e4ed99b-2694-4140-9301-b74eb63d2101</guid><dc:creator>Mike Schmitt</dc:creator><description>[quote userid="49829" url="~/discussions/f/general/19455/how-to-pass-a-cdt-through-an-interface/76077"]I am unable to see any of the values that I was populating in that form.[/quote]
&lt;p&gt;Can you expand on this?&amp;nbsp; Under what circumstances are you trying / expecting to see values that you populated in that form?&amp;nbsp; Are you saying you don&amp;#39;t see the values getting written to the DB table after the process completes, or something else?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76079?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 16:18:54 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3af7df84-9032-480c-b648-94b7bb9fbb01</guid><dc:creator>Chris</dc:creator><description>&lt;p&gt;In this case your Interface &lt;strong&gt;&lt;em&gt;Output&lt;/em&gt; &lt;/strong&gt;save for pv!User_Data is overwriting your interface updates.&amp;nbsp; Only the Save Into from the Input tab is correct, you will want to delete the Output Save Into, as this is overwriting with the pv! value (what the variable was set at prior to the form save).&amp;nbsp; If you had used &lt;em&gt;&lt;strong&gt;ac&lt;/strong&gt;&lt;/em&gt;!User_Data in the output this would function correctly but be redundant.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76077?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 15:57:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:85840624-ccdf-43ee-8e4d-0dafa3f8047b</guid><dc:creator>kevinr0001</dc:creator><description>&lt;p&gt;Thanks for the reply Mike,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I am unable to see any of the values that I was populating in that form.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;It seems like the write to data store is not functioning at all.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to pass a cdt through an interface</title><link>https://community.appian.com/thread/76076?ContentTypeID=1</link><pubDate>Fri, 21 Aug 2020 15:48:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:69ed3372-c259-4032-9994-48135134f5db</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;A few redundancies here.&lt;/p&gt;
&lt;p&gt;The first line of your saveInto does literally nothing.&amp;nbsp; It saves the current RI value back into itself - which will have net zero effect.&amp;nbsp; You can remove this as far as I can tell.&amp;nbsp; Keep lines 2 and 3, these should work correctly for what you&amp;#39;re seemingly trying to do.&lt;/p&gt;
&lt;p&gt;You save the value from the node Inputs tab into a PV, and then you save it into a PV in the Outputs tab.&amp;nbsp; This is also unnecessary - you only need to do it in one place or the other.&amp;nbsp; Usually in cases like this it&amp;#39;s easiest to just do it from the Inputs tab, unless you need to do some sort of transformation to the CDT upon form submission, in which case you should only use the Outputs tab (i don&amp;#39;t think this applies to you though).&amp;nbsp; &lt;strong&gt;NOTE:&lt;/strong&gt; per what Chris pointed out below, even if you &lt;em&gt;&lt;strong&gt;did&lt;/strong&gt;&lt;/em&gt; want to save the CDT value in the Output tab, the data output should reference &lt;strong&gt;ac&lt;em&gt;!User_Data&lt;/em&gt;&lt;/strong&gt; instead of &lt;em&gt;&lt;strong&gt;pv&lt;/strong&gt;!User_Data&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Your Write to Data Store is configured correctly.&lt;/p&gt;
&lt;p&gt;What exactly is the issue you&amp;#39;re having?&amp;nbsp; Despite the redundancies I noted, I don&amp;#39;t spot any errors that would (necessarily) prevent proper function.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>