Display Unique Attribute from list using Microflow

0
How can I display only Unique Fulfilment order in datagrid 2 and also display count of unique Fulfilment order using Microflow
asked
2 answers
1

Hi Raviprakash,

Retrieve the list from the database and Create a list with the same entity and return the list 
Then Iterate the retrieved list and use the find by expression list operation activity (Named FulfillmentOrder),
In that check the condition,
$Iterater/fulfillmentorder = $currentobjectfulfillmentorder
then check the FulfillmentOrder = empty in Decision,
if it is true the add to createdList else continue the loop.
After the Loop add an aggrigate list to count the Created list to get the unique fulfillment order count

answered
0

Hi Dinesh, can you please help me where I’m going wrong 

answered