RE: Show kit items on a item fulfilment search
I have a item fulfillment saved search that I want to list of the item on. However if there is a Kit/Package it lists the Kit SKU and all the member items SKU’s. I have used the following formula
Case when {item.type} = ‘Kit/Package’ then {appliedtotransaction.item} ELSE {item} end
and this worked to show only the Kit SKU however as we have a mix of Inventory Items & Kits I then changed it to
Case when {item.type} = ‘Kit/Package’ then {appliedtotransaction.item} ELSE {item} end
and now it is showing all the member items again.
Any ideas
The member items of a kit item will have the Applied To Link Type
column set to Kit Shipment
. You can exclude those lines by adding a filter on the Applied To Link Type
.
Thanks that worked