everyone! I am starting with Documentum this month and here is my problem. There is multi-select drop-down list with cabinets. I have to choose some of them to get list of inner folders in my result list below. This query:
select * from dm_folder where folder(id($param$))
or
select * from dm_folder where folder($param$)
where param is object_name
works with single drop-down select. I've tried to insert "in"
select * from dm_folder where folder in($param$)
results with
[DM_QUERY_E_SYNTAX]error: "A Parser Error (syntax error) has occurred in the vicinity of: select * from dm_folder where folder in"
or
select * from dm_folder where folder(id in($param$))
results with
select * from dm_folder where folder(id in ('0c0511d48000105',' 0c0511d48000106'))
[DM_QUERY_E_SYNTAX]error: "A Parser Error (syntax error) has occurred in the vicinity of: select * from dm_folder where folder(id in"
and return multivalue flag in queries above but it doesn't work. Can someone help, please? Thank you!
Try with this one:
I think it's clear where you made an error. Keyword FOLDER you used is function that accepts single value as parameter.
From DQL guide:
Edit 1:
With this query you are looking for folder type objects whose parent is any of the folders specified as the parameter.
Edit 1:
This will return you all folder objects under cabinet