How can i Copy the customer information from one entity to another entity

0
Hi, I have to copy the created data from one entity to another entity.can you please help us how we can copy. Ex:I have a ticket entity it contains the ticket details page once the user submit the ticket the entered data should be copy into another entity Task Entity.
asked
1 answers
0

In a microflow,

  • use a retrieve action to get the object you want to copy from (ticket)
  • use a separate retrieve action to get the object you want to copy to (task) (alternatively, you could create a new copy to object with a create action)
  • finally, use a change object action to set the values of attributes of the copy to entity (task) with attributes from the copy from entity (ticket). Make sure you commit the copy to entity.
answered