A sales order contains a list of product lines. Build a decision model that identifies which product lines within an order are duplicates of each other, where “duplicate” is defined by a user-configurable similarity rule — for example, two product lines might be considered duplicates if they share the same SKU and price.
The interesting part is representing this kind of set/collection-level reasoning (comparing every item in a collection against every other item) in a decision model, rather than just in imperative code.
Send your solutions to DecisionManagementCommunity@gmail.com, or open a pull request to add yours here.