How to access historic identity links

It seems like ACT_RU_IDENTY_LINK has no historic pendant … any idea how I can display candidate groups of completed tasks?

Hi Jan,

Historic identity links are available in 7.5 with “ACT_HI_IDENTITYLINK”.

Cheers,
Deivarayan

Nice one, thanks. I totally missed that.

Additional question: ACT_HI_IDENTITYLINK is a log … how can I select the latest values a task had when it was completed ?

Hi Jan,

What values of a task do you like to retrieve from history?

Cheers,
Deivarayan

I need to display the candidate groups of a task, no matter if the task is still active or not.
So I query ACT_HI_IDENTITYLINK. but: if I do

addCandidateGroup(“foo”)
addCandidateGroup(“bar”)
deleteCandidateGroup(“foo”)

I still get [“foo”,“bar”]

Hi Jan,

I hope you need the candidate group that is active (In your example, you need to have only “bar” displayed).
To do that, i see there is only one option i.e, To write a code to traverse the historic identity link log list and retrieve the active one (candidate group that was added but not deleted).

Cheers,
Deivarayan

Hi Deivarayan,

thanks, thats exactly what I did. I was just wondering (and hoping) there would be an existing implementation to use

jan