Hello All, An Order exists with 3 Order Products with Product Families (Hardware, Software, and Training). The requirement is to split this order into further orders according to the product families with each order having its own order product (1 order per product family). How can I achieve this via flow. Thanks, Fahad
Hi @Fahad Khan
- You can have your triggering condition and based on the product family you can iterate through and have create records (If you don't have much difference you can try creating all 3 as a single create element using record collection).
Then based on product family, you can iterate over created record and add the values to collection variable as required.
Then the same collection variable can be used to insert order product.
Thanks