The Admin can can build own report based on STATUSER table.
For example,
Go to Tools | Dump Table Utility and execute the following query then export it to Excel format with the headers:
select userid, last_name, first_name
, decode(license_type,1,'Technical',2,'Functional') License
from STATUSER
where status_cd = 'A'