DBA Data[Home] [Help]

APPS.FPA_MAIN_PROCESS_PVT dependencies on WF_DIRECTORY

Line 772: wf_directory.AddUsersToAdHocRole(role_name => p_notify_role,

768: end if;
769:
770: if(l_flag = FND_API.G_TRUE) then
771: -- Add users to the role.
772: wf_directory.AddUsersToAdHocRole(role_name => p_notify_role,
773: role_users => l_user);
774: IF l_user_exists ='N' then
775: l_user_exists := 'Y';
776: END If;

Line 811: wf_directory.AddUsersToAdHocRole(role_name => p_notify_role,

807: l_flag := FND_API.G_TRUE;
808: end if;
809: if(l_flag = FND_API.G_TRUE) then
810: -- Add users to the role.
811: wf_directory.AddUsersToAdHocRole(role_name => p_notify_role,
812: role_users => l_user);
813: IF l_user_exists ='N' then
814: l_user_exists := 'Y';
815: END If;

Line 835: wf_directory.AddUsersToAdHocRole(role_name => p_notify_role,

831: LOOP
832: FETCH c_get_projmg_users INTO l_user;
833: EXIT WHEN c_get_projmg_users%NOTFOUND;
834: -- Add users to the role.
835: wf_directory.AddUsersToAdHocRole(role_name => p_notify_role,
836: role_users => l_user);
837: IF l_user_exists ='N' then
838: l_user_exists := 'Y';
839: END If;

Line 936: wf_directory.CreateAdHocRole(role_name => l_notify_role,

932:
933: -- Create adhoc role. This will be used to send the notifications
934: -- to members of this role.
935: BEGIN
936: wf_directory.CreateAdHocRole(role_name => l_notify_role,
937: role_display_name => l_notify_role,
938: role_users => null,
939: email_address => null);
940: EXCEPTION

Line 951: wf_directory.RemoveUsersFromAdhocRole(role_name => l_notify_role);

947:
948: END;
949:
950: -- Delete the users if already existing from the above role :
951: wf_directory.RemoveUsersFromAdhocRole(role_name => l_notify_role);
952:
953: -- Need to notify Project Managers
954: wf_engine.SetItemAttrText(itemtype => p_item_type,
955: itemkey => p_item_key,