![]() |
Showing posts with label Roles. Show all posts
Showing posts with label Roles. Show all posts
Tuesday, February 2, 2021
Wednesday, January 20, 2021
SailPoint IIQ - Role Request Flow - Account v/s No-Account
When a business role is requested:
Add the requested business role to the Identity Cube.
-
Determine from the business role being requested what IT roles are required by this role.
-
From the IT role, determine what entitlements are needed.
-
Does the user have an application account for the application? If yes, provision the entitlement to grant the user the appropriate access that was requested. If no, expand the request to also request an account to be created.
Tuesday, May 2, 2017
OIM Query: List of roles without access policy attached
SELECT
ugp1.ugp_name AS "Role Name",
ugp1.UGP_DISPLAY_NAME AS "Role Display Name",
ugp1.UGP_DESCRIPTION AS "Description",
ugp1.UGP_CREATE AS "Create Date"
FROM ugp ugp1
WHERE ugp1.ugp_name not in (select ugp.ugp_name
from pol
left join pog on pog.pol_key=pol.pol_key
join ugp on ugp.ugp_key = pog.ugp_key)
;
ugp1.ugp_name AS "Role Name",
ugp1.UGP_DISPLAY_NAME AS "Role Display Name",
ugp1.UGP_DESCRIPTION AS "Description",
ugp1.UGP_CREATE AS "Create Date"
FROM ugp ugp1
WHERE ugp1.ugp_name not in (select ugp.ugp_name
from pol
left join pog on pog.pol_key=pol.pol_key
join ugp on ugp.ugp_key = pog.ugp_key)
;
Subscribe to:
Posts (Atom)
-
import java.util.Date; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.Stateme...
-
Query the 'spt_work_item' table. Pay attention to 'id' column(used for deleting the workitem) and 'owner' column (us...
-
The following posts covers all aspects of developing and deploying a scheduled task in OIM and creating a scheduled job. The post will...
