Skip to main content
Solved

Does AttributeValueMapper support searches in the Source Value (i.e., using LIKE or Ends With)?

  • March 28, 2018
  • 2 replies
  • 19 views

FME People,

I'm trying to limit the number of source values I use in the AttributeValueMapper by using the following statement as my Source Value: @Value(LAYERTYPE) Ends With _Wd, In other words I have many different attribute values ending with "_Wd" and I want to reassign all of the those to one new value. The destination attribute ends up being an empty value. I moving data from SDE (oracle) to a file geodatabase.

Gary

Best answer by redgeographics

No, the AttributeValueMapper only works with specific values. However, you can use the AttributeManager and set conditional values there, for which you can use all of the TestFilter's options.

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

redgeographics
Celebrity
Forum|alt.badge.img+60
  • Celebrity
  • 3703 replies
  • Best Answer
  • March 28, 2018

No, the AttributeValueMapper only works with specific values. However, you can use the AttributeManager and set conditional values there, for which you can use all of the TestFilter's options.


  • Author
  • 5 replies
  • March 28, 2018

No, the AttributeValueMapper only works with specific values. However, you can use the AttributeManager and set conditional values there, for which you can use all of the TestFilter's options.

Exactly what I needed. Thanks for your help.