Posting a single update via Fusion | Adobe Higher Education
Skip to main content
TravisGrogan1
Level 3
February 20, 2025
해결됨

Posting a single update via Fusion

  • February 20, 2025
  • 3 답변들
  • 665 조회

I have a Fusion workflow that iterates through a bunch of information. Once it's fully complete, I need a single update posted to the project that the actions were taken. I can't seem to figure out how to do this correctly. I'm getting multiple updates, 1 for each document I'm iterating through.

 

Any ideas?

최고의 답변: Sven-iX

Hi @travisgrogan1 

 

Here's a dummied up example of something I am using: I create an array variable, and then use get/setVariable to add an element

You can also use a text variable and keep adding to it. 

 

It's key to always do a GET before you update the variable, especially after an iterator (since you're in a loop now)

Let me know if that makes sense

 

 

3 답변

_Manish_Singh
Level 9
February 20, 2025

Hi @travisgrogan1 - you would need to use an aggregator to close the iterator and then post an update. I have a similar scenario where I use a dummy aggregator and send an email to the mailbox.

Here is an example:

 

TravisGrogan1
TravisGrogan1작성자
Level 3
February 21, 2025

Unfortunately, this does not seem to be working for me. Not sure what I'm doing wrong.

_Manish_Singh
Level 9
February 24, 2025

Alright, your iterator has more than one operation. So, you'll need a second aggregator as shown in the image below with arrows. The first aggregator is in the box. Essentially, the final aggregator should only perform one operation for your case to work.

Here is an example:

ChrisStephens
Community Advisor
Community Advisor
February 24, 2025

If you are still struggling with this, another option is to add a router right before your iterator, and put after thing you want to run once after your iteration is complete on a new leg coming off of the router.

Sven-iX
Community Advisor
Sven-iXCommunity Advisor답변
Community Advisor
March 1, 2025

Hi @travisgrogan1 

 

Here's a dummied up example of something I am using: I create an array variable, and then use get/setVariable to add an element

You can also use a text variable and keep adding to it. 

 

It's key to always do a GET before you update the variable, especially after an iterator (since you're in a loop now)

Let me know if that makes sense