Hi @Trisha S!
This query will give you a list of security groups that have active users who are not in MAXADMIN group. Then, from those groups, it will look for applications with INSERT, SAVE, and DELETE sigoptions.
What you should do is look in those Maximo security groups, in those applications and eliminate the check marks that are not READ.
select groupname, app, optionname from maximo.applicationauth where optionname in ('SAVE', 'INSERT', 'DELETE')
and groupname in (select groupname from maximo.groupuser where groupname not in ('MAXADMIN') and userid in (select userid from maximo.maxuser where status = 'ACTIVE')) order by groupname, app, optionname
Regards!
------------------------------
Martin Fabra
ARSAT S.A. - Actively seeking employment
------------------------------