Enumeration

1
Hi    I am using Enumeration concept in my project. In My project two Enumeration are there same values  how to set one value of enumaration to an other enumaration. Pls tell me
asked
2 answers
1

In a microflow use the change object to set the value of your attribute (second enumeration) like this:

if $object/enumeration1 = 'value 1' then

 enumeration2 = "value 1" else if

$object/enumeration1 = 'value 2' then

 enumeration2 = "value 2" else

enumeration2

 

answered
0

Create a microflow with a custom retrieve on the enumeration you want to kill. Loop over the list and change these objects to set those to the other enumeration. Then afterwards you can delete that enumeration so you do not create more data problems.

Regards,

Ronald

 

answered