Hello,
based on the RMP delegation process you downloaded, I prepared a loop process to list all the existing user delegations.
Unfortunately, I got some incorrect info:
1) a delegation that should be ended (inactive) appears still as active (!!!)
2) the end variable is empty !
Here below the variables/code I used.
Could you, please, help ?
Thank you,
Luigi
********************************************************************************
<#if P_result.feed.entry?exists>
<#assign start = P_result.feed.entry.category[1].@label>
<#if P_result.feed.entry.category[3]?exists>
<#assign end = P_result.feed.entry.category[3].@label>
<#else>
<#assign end = "">
</#if>
<#assign status = P_result.feed.entry.category[0].@label>
<#assign author = P_initiator.login>
</#if>
********************************************************************************