Replacement for Deprecated Kinds
Hi,
The 'Checkbox Multi-Select List' kind is not supported anymore in RTC.We have an Attribute called 'DataStore' of type smallString and kind is 'Checkbox Multi-Select List' but that kind is not supported anymore.
Which is the best way to change the kind and make sure that the already existing attributes are not hampered and inherit the new kind?
Accepted answer
Hi,
You would have to introduce a new attribute of the List[your_old_type]. If your type is based on an enumeration, you can create such an attribute. Your old data would still be in the old attribute.
Using https://www.google.de/search?q=multiselect+upgrade+site:jazz.net I was able to find this https://jazz.net/library/article/1458 work around that might be helpful.
You would have to introduce a new attribute of the List[your_old_type]. If your type is based on an enumeration, you can create such an attribute. Your old data would still be in the old attribute.
Using https://www.google.de/search?q=multiselect+upgrade+site:jazz.net I was able to find this https://jazz.net/library/article/1458 work around that might be helpful.
Comments
One other answer
In the old version, the enumeration values were stored as a comma separated list.
If you export the new format with values (default settings), you will notice, that the enumeration list values are separated by a line break.
I would suggest to
If you export the new format with values (default settings), you will notice, that the enumeration list values are separated by a line break.
I would suggest to
- Export the values
- Rename the column
- Replace the comma (,) by a line break - all values need to be enclosed in quotes
- Start the importer, generate a default mapping file
- Import using the mapping file
I tried to export an enumerationList that way and imported into a new work item and it worked for me.