Reject Function
Hi,
Im new to using reject function.
Now im using the reject function in a process model in a script task
In the input : I am calculating a map which looks like this :
{
id : <>,
account : <account_cdt(id, name, hold_code)>
}
Now in the output tab I want to use reject function to reject all those accounts who have hold codes null ... but then my requirement is that the ID should remain in the output
I am using reject function like this :
reject(
fn!isnull(_),
a!forEach(
items : ac!map,
expression : {
id : fv!item.id,
holdCodes : index(index(fv!item, "account"), "hold_code")
}
)
)
Now I know this wont work, but can anyone suggest me how to make it work ?
