Skip to main content
Solved

IFS User License Report


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

View original
Did this topic help you find an answer to your question?

3 replies

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

Hi @dmoore 

yes, try this screen:

 

And then to this with rmb:

 


Forum|alt.badge.img+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


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

Thank you very much for your assistance,


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings