Skip to main content
Solved

How to extract all attributeValueMapper source and destination values?

  • October 16, 2020
  • 4 replies
  • 38 views

bilal
Contributor
Forum|alt.badge.img+4
  • Contributor
  • 14 replies

I need to export all source and destination values from an attributeValueMapper transformer. How can I do that?

Best answer by nielsgerrits

Thank you for the suggestion. Unfortunately I have 100 rows so that solution will not work in my case.

Copy paste the transformer to an empty workspace, use another workspace and a FeatureReader FME Workspace (FMW) featuretype TransformerParameters to read the one transformer workspace. Look for transformer_parameter_name LUT, transformer_parameter_value has the values you are looking for.

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.

4 replies

nielsgerrits
VIP
Forum|alt.badge.img+60
  • 2938 replies
  • October 16, 2020

Right click the transformer and choose "Show Summary Annotation". Copy paste the table.


bilal
Contributor
Forum|alt.badge.img+4
  • Author
  • Contributor
  • 14 replies
  • October 19, 2020

Thank you for the suggestion. Unfortunately I have 100 rows so that solution will not work in my case.


nielsgerrits
VIP
Forum|alt.badge.img+60
  • 2938 replies
  • Best Answer
  • October 19, 2020

Thank you for the suggestion. Unfortunately I have 100 rows so that solution will not work in my case.

Copy paste the transformer to an empty workspace, use another workspace and a FeatureReader FME Workspace (FMW) featuretype TransformerParameters to read the one transformer workspace. Look for transformer_parameter_name LUT, transformer_parameter_value has the values you are looking for.


bilal
Contributor
Forum|alt.badge.img+4
  • Author
  • Contributor
  • 14 replies
  • October 19, 2020

Copy paste the transformer to an empty workspace, use another workspace and a FeatureReader FME Workspace (FMW) featuretype TransformerParameters to read the one transformer workspace. Look for transformer_parameter_name LUT, transformer_parameter_value has the values you are looking for.

Thank you. That is exactly what I needed. I really appreciate you providing the solution