Hi everyone, How to check all of the document if exist. I query all of the data have Document Id and I want to check all of that using in the single query
Discussion posts and replies are publicly visible
The content tools plugin has a function getcontentobjectdetailsbyid() which might help you.
if( find( "Document", extract( getcontentobjectdetailsbyid(id: ri!DocId), "Type:", "]" ) ) > 0, true, false)
Amaan Shekh, you can use this to insert the code. Makes it clean and more readable.
sure... thank you