Skip to main content
Question

simple summary report

  • April 27, 2020
  • 3 replies
  • 56 views

Forum|alt.badge.img

Hello

I am looking to write a simple execution report in a file with the name of the writer / table name and the number of records written. I don't want to use summaryReporter or FME_END_PYTHON.

 

How to do this simply?

 

Thanks in advance

 

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

erik_jan
Contributor
Forum|alt.badge.img+22
  • Contributor
  • 2179 replies
  • April 27, 2020

Instead of using a writer, try using the FeatureWriter transformer.

That transformer acts as the writer, but has output ports, one of which will get you the summary.

Hope this helps.


Forum|alt.badge.img
  • Author
  • 27 replies
  • April 27, 2020

Instead of using a writer, try using the FeatureWriter transformer.

That transformer acts as the writer, but has output ports, one of which will get you the summary.

Hope this helps.

Thanks . you're right . I just read some posts on this transformer and I can retrieve the number of records but not the name of the table. I would like to find an fme or python object which contains all this information


david_r
Celebrity
  • 8392 replies
  • April 28, 2020

Thanks . you're right . I just read some posts on this transformer and I can retrieve the number of records but not the name of the table. I would like to find an fme or python object which contains all this information

You should normally find the table name in the _feature_type{}.name list attribute.

Use a ListExploder on the _feature_type{} list to access all the information if you have multiple output feature types.