Skip to main content
Solved

IFS User License Report

  • July 6, 2023
  • 3 replies
  • 195 views

Forum|alt.badge.img+10
  • Sidekick (Customer)
  • 48 replies

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.

Best answer by JohanLindstrom

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

3 replies

Link
Superhero (Customer)
Forum|alt.badge.img+23
  • Superhero (Customer)
  • 1265 replies
  • July 7, 2023

Hi @dmoore 

yes, try this screen:

 

And then to this with rmb:

 


Forum|alt.badge.img+8
  • Hero (Customer)
  • 54 replies
  • Answer
  • July 7, 2023

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


Forum|alt.badge.img+10
  • Author
  • Sidekick (Customer)
  • 48 replies
  • July 7, 2023

Thank you very much for your assistance,