Using NOT
From Business Process Management, BPM and Workflow Automation Wiki | BizAgi BPMS
<keywords content="keywords"> not, GetDataTable, GetEntityList, GetDataTableFromList </keywords>
Using NOT
When using the functions:
GetDataTable, GetEntityList and GetDataTableFromList
IT IS WRONG to use expressions such as
IDUSER NOT IN (1,2,4)
It is necessary to use the expression:
NOT (idUser IN (1,2,4))
<comments />