DBA Data[Home] [Help]

APPS.WF_STANDARD dependencies on WF_DIRECTORY

Line 1694: usertab wf_directory.UserTable;

1690:
1691: -- loop thru all out-transiations of role resolution activity
1692: for trans_rec in out_transitions loop
1693: declare
1694: usertab wf_directory.UserTable;
1695: min_assigned_activities number := -1;
1696: min_begin_date date;
1697: assigned_performer varchar2(320);
1698: begin

Line 1709: wf_directory.GetRoleUsers(prole,usertab);

1705: else
1706: prole := Wf_Engine.GetItemAttrText(itemtype, itemkey,
1707: trans_rec.perform_role);
1708: end if;
1709: wf_directory.GetRoleUsers(prole,usertab);
1710: if ( cmd = 'LOAD_BALANCE' ) then
1711: declare
1712: assigned_activities number := 0;
1713: indx number := 1;

Line 1723: wf_directory.UserActive(usertab(indx))) then

1719: close load_balance;
1720:
1721: if ((assigned_activities < min_assigned_activities or
1722: min_assigned_activities = -1) and
1723: wf_directory.UserActive(usertab(indx))) then
1724: min_assigned_activities := assigned_activities;
1725: assigned_performer := usertab(indx);
1726: end if;
1727:

Line 1751: wf_directory.UserActive(usertab(indx))) then

1747: end if;
1748:
1749: if ((begin_date < min_begin_date or
1750: min_begin_date is null) and
1751: wf_directory.UserActive(usertab(indx))) then
1752: min_begin_date := begin_date;
1753: assigned_performer := usertab(indx);
1754: end if;
1755:

Line 3801: l_responder_dispname := WF_DIRECTORY.GetRoleDisplayName(l_responder);

3797: into l_messageType, l_messageName, l_subject, l_recipient, l_responder
3798: from wf_notifications
3799: where notification_id = l_nid;
3800:
3801: l_responder_dispname := WF_DIRECTORY.GetRoleDisplayName(l_responder);
3802: l_recipient_dispname := WF_DIRECTORY.GetRoleDisplayName(l_recipient);
3803:
3804: wf_engine.SetItemAttrText(itemtype, itemkey, 'PARENT_NTF_ID', l_nid);
3805: wf_engine.SetItemAttrText(itemtype, itemkey, 'PARENT_NTF_SUBJECT', l_subject);

Line 3802: l_recipient_dispname := WF_DIRECTORY.GetRoleDisplayName(l_recipient);

3798: from wf_notifications
3799: where notification_id = l_nid;
3800:
3801: l_responder_dispname := WF_DIRECTORY.GetRoleDisplayName(l_responder);
3802: l_recipient_dispname := WF_DIRECTORY.GetRoleDisplayName(l_recipient);
3803:
3804: wf_engine.SetItemAttrText(itemtype, itemkey, 'PARENT_NTF_ID', l_nid);
3805: wf_engine.SetItemAttrText(itemtype, itemkey, 'PARENT_NTF_SUBJECT', l_subject);
3806: wf_engine.SetItemAttrText(itemtype, itemkey, 'PARENT_NTF_MSG_TYPE', l_messageType);