Solved

IFS User License Report

  • 6 July 2023
  • 3 replies
  • 94 views

Userlevel 4
Badge +10

Good Morning - Is there a way to generate a report within IFS 9 to create a list of employees and what IFS License they have been assigned ie. either Full or Limited? Many thanks for your help.

icon

Best answer by JohanLindstrom 7 July 2023, 11:10

View original

3 replies

Userlevel 7
Badge +22

Hi @dmoore 

yes, try this screen:

 

And then to this with rmb:

 

Userlevel 4
Badge +8

And here is some example sql code if you want to make it into a quick report or similar:

select 
t.identity "Identity",
t.description "User Name",
t2.role_scope "Licence Type"
from IFSAPP.FND_USER t
left outer join IFSAPP.FND_LICENSED_ROLE_USER t2 on t.identity = t2.identity
where t.active = 'TRUE'
order by t.identity

BR

Johan

Userlevel 4
Badge +10

Thank you very much for your assistance,

Reply