Create and change object

0
Hi Team, I am facing an issue . the issue is “While creating an object i am copying the data in the explicitely and creating the object and after creation i want to modify the old object with an Attribute *notTobeDisplay*, but the problem is new object and the old object both having the same data except the field which i have changed explicitely using the *CHANGE OBJECT* . Please Help me on this issue how I can create an new data with copying all the fields and explicitely changing the selected attributes in both of the data i.e OLD object and current object?
asked
2 answers
0

In a microflow you do a create object, after that you can use the clone action (which is available in the community commons module) and after the clone you can do a change object action for the old object.

answered
0

You can also use the CopyAttributes action from community commons. It’s ignoring associations. This can help to avoid unexpected behavior. After the copy of the attributes, you can use a change object action as described by Hans.

answered