DBA Data[Home] [Help]

APPS.PER_CHECKLIST_EVENTS dependencies on WF_DIRECTORY

Line 140: wf_directory.RemoveUsersFromAdHocRole

136: IF l_approver_table.COUNT <> 0 then
137: -- Check if the ADHOC role already exists
138: IF l_role_exists = 'Y' THEN
139: -- If the role exists, then empty the existing role list
140: wf_directory.RemoveUsersFromAdHocRole
141: (role_name => l_role_name,
142: role_users => NULL);
143:
144: -- Add the users we have identified to the role list.

Line 145: wf_directory.AddUsersToAdHocRole

141: (role_name => l_role_name,
142: role_users => NULL);
143:
144: -- Add the users we have identified to the role list.
145: wf_directory.AddUsersToAdHocRole
146: (role_name => l_role_name,
147: role_users => l_users);
148: ELSE
149: -- Create an ADHOC role for the approver list and add the

Line 151: wf_directory.CreateAdHocRole

147: role_users => l_users);
148: ELSE
149: -- Create an ADHOC role for the approver list and add the
150: -- users.
151: wf_directory.CreateAdHocRole
152: (role_name => l_role_name,
153: role_display_name => l_role_display,
154: role_users => l_users,
155: expiration_date => NULL);