DBA Data[Home] [Help]

APPS.ZPB_WF_NTF dependencies on WF_DIRECTORY

Line 17: wf_directory.CreateAdHocRole(role_name => roleName,

13: if RoleDisplay is not NULL then
14: roleDisplayName := RoleDisplay;
15: end if;
16:
17: wf_directory.CreateAdHocRole(role_name => roleName,
18: role_display_name => roleDisplayName,
19: language => NULL,
20: territory => NULL,
21: role_description => NULL,

Line 131: wf_directory.RemoveUsersFromAdHocRole(roleName, UserList);

127: UserList in varchar2)
128: IS
129: roleName varchar2(320) :=AdHocRole;
130: BEGIN
131: wf_directory.RemoveUsersFromAdHocRole(roleName, UserList);
132: end RemUser;
133:
134:
135: --

Line 146: wf_directory.RemoveUsersFromAdHocRole(roleName);

142: PROCEDURE RemALL (AdHocRole in varchar2)
143: IS
144: roleName varchar2(320) :=AdHocRole;
145: BEGIN
146: wf_directory.RemoveUsersFromAdHocRole(roleName);
147:
148: delete wf_local_roles
149: where name = roleName;
150:

Line 499: -- Create AdHoc Roles when needed and set user lists for WF Directory

495: aname => 'DEADLINEDISP',
496: avalue => l_deadDate);
497: end if;
498:
499: -- Create AdHoc Roles when needed and set user lists for WF Directory
500: -- sets wf_local_roles, wf_local_user_roles for views wf_users, wf_roles
501: -- and wf_user_roles.
502:
503: if UserToNotifyP = 'Y' then

Line 1473: l_retbool := wf_directory.useractive(l_thisRecipient);

1469: end if;
1470:
1471: -- just tells us this is a vaid single user not group role
1472: -- so look for and set shadows
1473: l_retbool := wf_directory.useractive(l_thisRecipient);
1474:
1475: if l_retbool = TRUE then
1476:
1477:

Line 1675: if wf_directory.useractive(l_thisRecipient) = TRUE then

1671:
1672:
1673: zpb_wf_ntf.SetRole(l_RoleName, 7, l_NewDispName);
1674:
1675: if wf_directory.useractive(l_thisRecipient) = TRUE then
1676: if zpb_wf_ntf.user_in_role(l_rolename, l_thisRecipient) = 'N' then
1677: ZPB_UTIL_PVT.AddUsersToAdHocRole(l_RoleName, l_thisRecipient);
1678: end if;
1679: end if;

Line 1685: if wf_directory.useractive(l_thisRecipient) = TRUE then

1681: zpb_wf_ntf.add_Shadow(l_RoleName, p_BPOwnerID);
1682:
1683: else
1684:
1685: if wf_directory.useractive(l_thisRecipient) = TRUE then
1686: l_RoleName := l_thisRecipient;
1687: else
1688:
1689: -- there are no shadows and the owner is expired so

Line 1745: if wf_directory.useractive(l_thisRecipient) = TRUE then

1741: for v_SecAdmin in c_SecAdmins loop
1742: l_thisUserID := v_SecAdmin.user_id;
1743: l_thisRecipient := ID_to_FNDuser(l_thisUserID);
1744:
1745: if wf_directory.useractive(l_thisRecipient) = TRUE then
1746: if zpb_wf_ntf.user_in_role(p_RoleName, l_thisRecipient) = 'N' then
1747: ZPB_UTIL_PVT.AddUsersToAdHocRole(p_RoleName, l_thisRecipient);
1748: l_status := 'Y';
1749: end if;