<?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: Creating a Waterfall Report in ACC v7 in Adobe Campaign Classic Questions</title>
    <link>https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/creating-a-waterfall-report-in-acc-v7/m-p/463112#M15792</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;LI-USER uid="17429058"&gt;&lt;/LI-USER&gt;,&lt;/P&gt;
&lt;P&gt;Were you able to resolve this query with the help of the given solutions or do you still need more help here? Do let us know. In case the given solutions were helpful, then kindly choose the one that helped you the most as the 'Correct Reply'.&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Thu, 28 Jul 2022 10:52:40 GMT</pubDate>
    <dc:creator>Sukrity_Wadhwa</dc:creator>
    <dc:date>2022-07-28T10:52:40Z</dc:date>
    <item>
      <title>Creating a Waterfall Report in ACC v7</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/creating-a-waterfall-report-in-acc-v7/m-p/460425#M15655</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does Adobe have the OOTB feature or capabilities to create a Waterfall report from Workflow activities?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In a previous CRM system, I could easily create a Waterfall that would list all the activities and the quantities associated with them.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Asking because I don't want to go down the route of creating Instance Variables for each activity and writing them out in an Alert.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2022 19:17:30 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/creating-a-waterfall-report-in-acc-v7/m-p/460425#M15655</guid>
      <dc:creator>montezh2001</dc:creator>
      <dc:date>2022-07-11T19:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Waterfall Report in ACC v7</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/creating-a-waterfall-report-in-acc-v7/m-p/460961#M15700</link>
      <description>&lt;P&gt;Hello &lt;LI-USER uid="17429058"&gt;&lt;/LI-USER&gt;,&lt;/P&gt;&lt;P&gt;you might try to read logs from workflow journal where you get lists of all activities and then simply query those lines to see the waterfall in separate technical workflow and send alert with waterfall data parsed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Marcel_Szimonisz_0-1657806317409.png" style="width: 400px;"&gt;&lt;img src="https://experienceleaguecommunities.adobe.com/t5/image/serverpage/image-id/43067iA2DA04E28633301F/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Marcel_Szimonisz_0-1657806317409.png" alt="Marcel_Szimonisz_0-1657806317409.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or store the counts in a same variable and pass it as object down the stream and process it at the end.&lt;/P&gt;&lt;P&gt;With use of instance.vars. and JSON.stringify and JSON.parse&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;var vaterfall = JSON.parse(instance.vars.waterfall);
vaterfall.push({activityName:"activity", count:vars.recCount});
instance.vars.waterfall = JSON.stringify(vaterfall);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Marcel Szimonisz&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MarTech Consultant&lt;/STRONG&gt;&lt;BR /&gt;for more tips visit my blog&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;&lt;A href="https://www.martechnotes.com/" target="_blank" rel="noopener"&gt;https://www.martechnotes.com/&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2022 13:47:06 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/creating-a-waterfall-report-in-acc-v7/m-p/460961#M15700</guid>
      <dc:creator>Marcel_Szimonisz</dc:creator>
      <dc:date>2022-07-14T13:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Waterfall Report in ACC v7</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/creating-a-waterfall-report-in-acc-v7/m-p/460970#M15703</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;LI-USER uid="17429058"&gt;&lt;/LI-USER&gt;&amp;nbsp;and&amp;nbsp;&lt;LI-USER uid="6970553"&gt;&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Be aware that using the logs, you might not have the exact waterfall as in the workflow editor because as there is no true start and true end in the logs and the logs don't have always the count associated to it&lt;/P&gt;&lt;P&gt;The current Workflow Editor is your waterfall representation of a workflow, I agree with the latest execution and not the past execution.&lt;/P&gt;&lt;P&gt;What is the use case to see the workflow execution for past execution as opposed the current?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Denis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2022 14:25:45 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/creating-a-waterfall-report-in-acc-v7/m-p/460970#M15703</guid>
      <dc:creator>Denis_Bozonnet</dc:creator>
      <dc:date>2022-07-14T14:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Waterfall Report in ACC v7</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/creating-a-waterfall-report-in-acc-v7/m-p/463112#M15792</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;LI-USER uid="17429058"&gt;&lt;/LI-USER&gt;,&lt;/P&gt;
&lt;P&gt;Were you able to resolve this query with the help of the given solutions or do you still need more help here? Do let us know. In case the given solutions were helpful, then kindly choose the one that helped you the most as the 'Correct Reply'.&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 10:52:40 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/creating-a-waterfall-report-in-acc-v7/m-p/463112#M15792</guid>
      <dc:creator>Sukrity_Wadhwa</dc:creator>
      <dc:date>2022-07-28T10:52:40Z</dc:date>
    </item>
  </channel>
</rss>

