Hello all!
I have a process where the user will be entering Addresses and I'm saving the new entries in a Dictionary.
I have the subworkflow set up and it's working but I need to add some rules in order to not create duplicates neither empty rows.
For my case, the information to be checked will be Customer Name and Address (because a customer name can have more than one address).
I was trying to follow the query below but I'm not sure on how to add the dictionary there (in the database documentation I have, I don't find alias for a dictionary=)
if exists (
select 1 from WFElementDetails
where DET_WFDID={WFD_ID} and DET_WFCONID={WFCON:1726}
and isnull({DCNCOL:121}, '') = ''
)
select 1 else
select 0
Does anyone set up something like this?
Thank you!