Skip to main content
Solved

Using a Flow app as the trigger for a Flow automation

  • June 18, 2025
  • 3 replies
  • 63 views

hlynur
Supporter
Forum|alt.badge.img+10

Hello, my question is quite simple and probably idiotic but I haven’t found a clear solution to this anywhere, so here we go…

I have a very simple Flow App where the user drags and drops a DWG file that then gets split up into separate layer entities and written to our SDE. So what I want, and again quite simple, is that that after running that App the user gets an email notifying him/her if the process succeeded.  

Meaning the running of the Flow app is the trigger for the Flow automation that then sends out an email based on a attribute value from the Flow app (the user basically fills out their email in the Flow app that gets assigned to a attribute in that process).

I cant for the life of me figure out how to use a ran Flow app as the trigger and the other things that comes after that is just bonus question material if anyone wants.

How do I do this?

-Hlynur

 

Best answer by nielsgerrits

How I do this:

  • FeatureWriter to do the writing.
  • Emailer to send the email, triggered by the summary output feature of the FeatureWriter.

The other way I can think of is to let the triggered job sumbit to a topic and use that as a trigger for an email automation, but I have not enough experience with automations to tell you how to set that up.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

3 replies

nielsgerrits
VIP
Forum|alt.badge.img+60
  • 2940 replies
  • Best Answer
  • June 18, 2025

How I do this:

  • FeatureWriter to do the writing.
  • Emailer to send the email, triggered by the summary output feature of the FeatureWriter.

The other way I can think of is to let the triggered job sumbit to a topic and use that as a trigger for an email automation, but I have not enough experience with automations to tell you how to set that up.


alexbiz
Influencer
Forum|alt.badge.img+28
  • Influencer
  • 161 replies
  • June 18, 2025

Hey Hlynur,

The cleanest way to fire off an automation from an FME Flow App would normally be to use an Automation App
But Automation Apps don’t support file uploads yet, so that’s a non-starter for your DWG drag-and-drop use-case.

The approach Niels suggested here is the simplest and works well.


hlynur
Supporter
Forum|alt.badge.img+10
  • Author
  • Supporter
  • 36 replies
  • June 19, 2025

Thanks ​@nielsgerrits  i’ll have a look at FeatureWriter since workspace cant be a trigger.