Hello!
I have met an issue when I try run a dql query with IN value_list like this:
select count(*) from dm_document where object_name IN(?)
Instead of placeholder '?' I use a process parameter with value (without apostrophe): 'doc1, doc2'. I am sure that documents with these names are exists in the repository. If I try to use just one parameter (for example, doc1), I got the the count of the documents.
I know I can use the 'getValue' function in Data Mapping tab but I want to run a single query.
It seems to me it is not possible. Or I am doing something wrong?
PS. I try a few combinations with and without apostrophe:
'doc1', 'doc2'
doc1', 'doc2
but it doesn't help.
Thanks in advance!
~ Konstantin