Clone object is getting updated when original object is changed

0
I have made a duplicate of an object with clone java action including associations. When I change the original object,the changes a reflected in the clone object as well. I don’t want this to happen. Is this possible? And if yes, then how?    
asked
1 answers
2

Are you sure you are changing the original object? Or did you change an associated object. Because indeed due to the fact that the associations are also copied it means that when changing the referenced object that change will be visible from both objects.

Try otherwise to clone without associations and manually set the references that needs to be set.

Regards,

Ronald

 

answered