Skip to main content
Solved

Is a NULL Writer the best way to cause my workbench to complete when certain conditions are met and I do not need anything written. Or is there a better way to gracefully terminate the workbench.

  • October 13, 2021
  • 2 replies
  • 43 views

Forum|alt.badge.img+1

I am running workbench an FME Server automation that is fired from a SQL Server insert trigger for a ArcGIS feature class that has editor tracking enabled. On the workbench I check previous records for the feature and only want the workbench to complete under specific conditions - it is writing an HTML file. I was considering using the NULL writer but the documentation indicates this should only be used for testing. Looking for the best way to accomplish this. I considered modifying the trigger but this is so involved and much easier and cleaner to do in FME... Any tips would be appreciated.

Thanks!

Best answer by drc43

You could use a Terminator transformer. I will often use that to end a translation when the conditions I want are not met.

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.

2 replies

drc43
Contributor
Forum|alt.badge.img+11
  • Contributor
  • 83 replies
  • Best Answer
  • October 13, 2021

You could use a Terminator transformer. I will often use that to end a translation when the conditions I want are not met.


Forum|alt.badge.img+1
  • Author
  • 14 replies
  • October 13, 2021

You could use a Terminator transformer. I will often use that to end a translation when the conditions I want are not met.

It works perfectly! Thanks!