Only certain Enumeration values in a drop down, Not the complete list

0
Hi There Is there a way to only show certain enum values in a drop down list. I want to limit the amount of enum's used, but the system has been running for a while and all of the enum's have been used in the past. I dont want to write a script to change all the used ones and the delete the ones we dont need right now. Is there a way like an X-path to only show the enums I need without creating a new attribute. Regards, Patrick
asked
1 answers
1

No, that is not available for enums.

You can either:

  1. Create an selectable entity with the enum as attribute and use an xpath to filter, this also requires a conversion script.
  2. Write a script to change old values, which is in my opinion easier
answered