You are viewing limited content. For full access, please sign in.

Question

Question

Is it possible to retrieve a list of all tags assigned to a document?

asked on June 26, 2017

In a workflow, is it possible to retrieve a list of all tags assigned to the current entry?

1 0

Replies

replied on June 26, 2017

You could retrieve a list of annotation IDs with a SQL query.  

SELECT ann_id
  FROM [Repository].[dbo].[ann]
  where page_id in (SELECT page_id
  FROM [Repository].[dbo].[doc]
  where tocid=@EntryID)

 

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.