Expand my Community achievements bar.

Our latest Cookbook on Adobe Workfront Fusion is here!
SOLVED

Is there any way to see all users associated with a particular job role? Or better yet, a report of all job roles with their associated users? I'm not seeing an easy way to do this, but maybe there's a sneaky text mode way I don't know about...

Avatar

Level 1
 
Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

yep.

displayname=Assigned Active Users

listdelimiter=<br>

listmethod=nested(userRoles).lists

textmode=true

type=iterate

valueexpression=IF({user}.{isActive},{user}.{name},"")

valueformat=HTML

2 Replies

Avatar

Community Advisor

In a Job Role report/view:

displayname=Assigned Users

listdelimiter=<br>

listmethod=nested(userRoles).lists

textmode=true

type=iterate

valuefield=user:name

valueformat=HTML

Avatar

Level 1

Thank you so much!! One further question: is there a way to limit this to active users?

Avatar

Correct answer by
Community Advisor

yep.

displayname=Assigned Active Users

listdelimiter=<br>

listmethod=nested(userRoles).lists

textmode=true

type=iterate

valueexpression=IF({user}.{isActive},{user}.{name},"")

valueformat=HTML