In reply to: Andreia Correia
HI Daniel,
I have the 2023.1.3.202 version.
I was trying to use your SDK plugin but it's complaining that some files extensions are missing.
´
I can't use the remove action. I don't want to delete rows that got deleted in the data source but rather delete rows that will have 0 value in one column (value defined by the user).
Hi Andreia,
in your case I would use this sql statement:
select DET_ID
from WFElementDetails
where DET_WFFID = {WFD_ID}
and DET_WFCONID = ItemListId
-- Condition to define which rows should be deleted.
and FIELDDatabaseName > 0
If you use the DET_ID for the unique value, all rows will be deleted from it, which don't fulfil your requirements. In this case the rows with value 0 would not be returned and therefore deleted.
At least this is how I understood your response.
Best regards,
Daniel