Delete selected objects from a page

0
I have the following scenario for an online store: I have a page with products, called “Product_Overview”. If I want to buy some products, I have to select them and press a button called “Add to cart”. After this action, the selected products will be sent in a Cart (in a page called “Cart_Overview”). Inside the Cart page, I have a button for deleting the selected products from the cart. But when I use this button, those selected products from the cart are deletd from the Product page, too.  How could I fix this problem? I mean, I want to delete only the selected products from the cart and not from the Product page. I will attach some screenshots with the Domain Model, the Product page and the Cart page.     
asked
1 answers
1

Hey Valentin,

On the delete button, call a microflow,

and in the microflow, use a change activity,

in the change activity, select the Product and then, 

Set the Product_Cart to empty,

You can refer to the image below,

Let me know if it helps!

Hope it helps!

answered