Solved
if duplicate data exists in the list then display a message indicating that duplicate data is present.
local!data: {
a!map(SAPNumber: "1111111", Qty: "1", Spare: "0"),
a!map(SAPNumber: "1111111", Qty: "2", Spare: "1"),
a!map(SAPNumber: "1111111", Qty: "3", Spare: "0"),
a!map(SAPNumber: "2222222", Qty: "1", Spare: "0")
},
In the above list, If a duplicate combination of 'SAPNumber' and 'Spare' exists in the list, display a message indicating that duplicate data is present.
Example :
a!map(SAPNumber: "1111111", Qty: "1", Spare: "0"),
a!map(SAPNumber: "1111111", Qty: "3", Spare: "0"),
here, 'SAPNumber' and 'Spare' are same so it must shows a message.
